From 4f9ff733020daba6316c6bfdd4bfb3ac352ed579 Mon Sep 17 00:00:00 2001 From: Pelochus <49835792+Pelochus@users.noreply.github.com> Date: Tue, 19 Sep 2023 11:36:23 +0200 Subject: [PATCH 001/121] Fix spanish translation for lightning infill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Substituted "iluminación" (lighting) for "rayos" (lightning) --- resources/i18n/es_ES/fdmprinter.def.json.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 855a5a38390..d7a54bbff80 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -694,11 +694,11 @@ msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de msgctxt "lightning_infill_support_angle description" msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina cuándo una capa de iluminación tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." msgctxt "lightning_infill_overhang_angle description" msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina cuándo una capa de relleno de iluminación tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." msgctxt "material_diameter label" msgid "Diameter" @@ -1782,23 +1782,23 @@ msgstr "Levantar el cabezal" msgctxt "infill_pattern option lightning" msgid "Lightning" -msgstr "Iluminación" +msgstr "Rayos" msgctxt "lightning_infill_overhang_angle label" msgid "Lightning Infill Overhang Angle" -msgstr "Ángulo del voladizo de relleno de iluminación" +msgstr "Ángulo del voladizo de relleno de rayos" msgctxt "lightning_infill_prune_angle label" msgid "Lightning Infill Prune Angle" -msgstr "Ángulo de recorte de relleno de iluminación" +msgstr "Ángulo de recorte de relleno de rayos" msgctxt "lightning_infill_straightening_angle label" msgid "Lightning Infill Straightening Angle" -msgstr "Ángulo de enderezamiento de iluminación" +msgstr "Ángulo de enderezamiento de rayos" msgctxt "lightning_infill_support_angle label" msgid "Lightning Infill Support Angle" -msgstr "Ángulo de sujeción de relleno de iluminación" +msgstr "Ángulo de sujeción de relleno de rayos" msgctxt "support_tree_limit_branch_reach label" msgid "Limit Branch Reach" @@ -4294,7 +4294,7 @@ msgstr "Diámetro exterior de la punta de la tobera." msgctxt "infill_pattern description" msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de iluminación intenta minimizar el relleno apoyando solo la parte superior del objeto." +msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." msgctxt "support_pattern description" msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." From c3f3a863859ea25e92ddba50ae2fed8b81778135 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 12 Oct 2023 16:53:39 +0200 Subject: [PATCH 002/121] Extend start/end gcode templates feature with support for formula's CURA-11155 --- plugins/CuraEngineBackend/StartSliceJob.py | 74 ++++++++++------------ 1 file changed, 34 insertions(+), 40 deletions(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 4d924ac337b..06859aef556 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021-2022 Ultimaker B.V. +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import os @@ -24,6 +24,7 @@ from UM.Scene.Scene import Scene #For typing. from UM.Settings.Validator import ValidatorState from UM.Settings.SettingRelation import RelationType +from UM.Settings.SettingFunction import SettingFunction from cura.CuraApplication import CuraApplication from cura.Scene.CuraSceneNode import CuraSceneNode @@ -46,44 +47,44 @@ class StartJobResult(IntEnum): class GcodeStartEndFormatter(Formatter): - """Formatter class that handles token expansion in start/end gcode""" + # Formatter class that handles token expansion in start/end gcode + # Example of a start/end gcode string: + # ``` + # M104 S{material_print_temperature_layer_0, 0} ;pre-heat + # M140 S{material_bed_temperature_layer_0} ;heat bed + # M204 P{acceleration_print, 0} T{acceleration_travel, 0} + # M205 X{jerk_print, 0} + # ``` + # Any expression between curly braces will be evaluated and replaced with the result, using the + # context of the provided default extruder. If no default extruder is provided, the global stack + # will be used. Alternatively, if the expression is formatted as "{[expression], [extruder_nr]}", + # then the expression will be evaluated with the extruder stack of the specified extruder_nr. + + _extruder_regex = re.compile(r"^\s*(?P.*)\s*,\s*(?P\d+)\s*$") def __init__(self, default_extruder_nr: int = -1) -> None: super().__init__() self._default_extruder_nr = default_extruder_nr - def get_value(self, key: str, args: str, kwargs: dict) -> str: #type: ignore # [CodeStyle: get_value is an overridden function from the Formatter class] - # The kwargs dictionary contains a dictionary for each stack (with a string of the extruder_nr as their key), - # and a default_extruder_nr to use when no extruder_nr is specified - + def get_value(self, expression: str, args: str, kwargs: dict) -> str: extruder_nr = self._default_extruder_nr - key_fragments = [fragment.strip() for fragment in key.split(",")] - if len(key_fragments) == 2: - try: - extruder_nr = int(key_fragments[1]) - except ValueError: - try: - extruder_nr = int(kwargs["-1"][key_fragments[1]]) # get extruder_nr values from the global stack #TODO: How can you ever provide the '-1' kwarg? - except (KeyError, ValueError): - # either the key does not exist, or the value is not an int - Logger.log("w", "Unable to determine stack nr '%s' for key '%s' in start/end g-code, using global stack", key_fragments[1], key_fragments[0]) - elif len(key_fragments) != 1: - Logger.log("w", "Incorrectly formatted placeholder '%s' in start/end g-code", key) - return "{" + key + "}" - - key = key_fragments[0] - - default_value_str = "{" + key + "}" - value = default_value_str - # "-1" is global stack, and if the setting value exists in the global stack, use it as the fallback value. - if key in kwargs["-1"]: - value = kwargs["-1"][key] - if str(extruder_nr) in kwargs and key in kwargs[str(extruder_nr)]: - value = kwargs[str(extruder_nr)][key] - - if value == default_value_str: - Logger.log("w", "Unable to replace '%s' placeholder in start/end g-code", key) + # The settings may specify a specific extruder to use. This is done by + # formatting the expression as "{expression}, {extruder_nr}". If the + # expression is formatted like this, we extract the extruder_nr and use + # it to get the value from the correct extruder stack. + match = self._extruder_regex.match(expression) + if match: + expression = match.group("expression") + extruder_nr = int(match.group("extruder_nr")) + + if extruder_nr == -1: + container_stack = CuraApplication.getInstance().getGlobalContainerStack() + else: + container_stack = ExtruderManager.getInstance().getExtruderStack(extruder_nr) + + setting_function = SettingFunction(expression) + value = setting_function(container_stack) return value @@ -422,17 +423,10 @@ def _expandGcodeTokens(self, value: str, default_extruder_nr: int = -1) -> str: :param value: A piece of g-code to replace tokens in. :param default_extruder_nr: Stack nr to use when no stack nr is specified, defaults to the global stack """ - if not self._all_extruders_settings: - self._cacheAllExtruderSettings() - try: # any setting can be used as a token fmt = GcodeStartEndFormatter(default_extruder_nr = default_extruder_nr) - if self._all_extruders_settings is None: - return "" - settings = self._all_extruders_settings.copy() - settings["default_extruder_nr"] = default_extruder_nr - return str(fmt.format(value, **settings)) + return str(fmt.format(value)) except: Logger.logException("w", "Unable to do token replacement on start/end g-code") return str(value) From 14afd73c19b369a97da6c39c1af2d3e58f1e3ac6 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 12 Oct 2023 21:09:10 +0200 Subject: [PATCH 003/121] Make sure default variables are available in start/end code The following properties are not settings-names, but could previously be used as template variables - material_id - time - date - day - initial_extruder_nr - material_id - material_name - material_type - material_brand - time - date - day - initial_extruder_nr These properties are _awkwardly_ propogated through the kwargs of the `get_value` method of `GcodeStartEndFormatter`. I don't quite like implementing it like this, but to avoid API breaks I couldn't change abusing the kwargs arg for this purpose. CURA-11155 --- plugins/CuraEngineBackend/StartSliceJob.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 06859aef556..4d9afd31bc0 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -84,7 +84,7 @@ def get_value(self, expression: str, args: str, kwargs: dict) -> str: container_stack = ExtruderManager.getInstance().getExtruderStack(extruder_nr) setting_function = SettingFunction(expression) - value = setting_function(container_stack) + value = setting_function(container_stack, additional_variables=kwargs[str(extruder_nr)]) return value @@ -423,10 +423,17 @@ def _expandGcodeTokens(self, value: str, default_extruder_nr: int = -1) -> str: :param value: A piece of g-code to replace tokens in. :param default_extruder_nr: Stack nr to use when no stack nr is specified, defaults to the global stack """ + if not self._all_extruders_settings: + self._cacheAllExtruderSettings() + try: # any setting can be used as a token fmt = GcodeStartEndFormatter(default_extruder_nr = default_extruder_nr) - return str(fmt.format(value)) + if self._all_extruders_settings is None: + return "" + settings = self._all_extruders_settings.copy() + settings["default_extruder_nr"] = default_extruder_nr + return str(fmt.format(value, **settings)) except: Logger.logException("w", "Unable to do token replacement on start/end g-code") return str(value) From e98240fb2cdaf77d7d4bc9da84734ef29ce177b4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 13 Oct 2023 07:36:45 +0200 Subject: [PATCH 004/121] Cleanup code in `GcodeStartEndFormatter` CURA-11155 --- plugins/CuraEngineBackend/StartSliceJob.py | 39 ++++++++++++++++------ 1 file changed, 28 insertions(+), 11 deletions(-) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 4d9afd31bc0..2887743b4fe 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -62,11 +62,13 @@ class GcodeStartEndFormatter(Formatter): _extruder_regex = re.compile(r"^\s*(?P.*)\s*,\s*(?P\d+)\s*$") - def __init__(self, default_extruder_nr: int = -1) -> None: + def __init__(self, default_extruder_nr: int = -1, *, + additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = None) -> None: super().__init__() - self._default_extruder_nr = default_extruder_nr + self._default_extruder_nr: int = default_extruder_nr + self._additional_per_extruder_settings: Optional[Dict[str, Dict[str, any]]] = additional_per_extruder_settings - def get_value(self, expression: str, args: str, kwargs: dict) -> str: + def get_value(self, expression: str, args: [str], kwargs: dict) -> str: extruder_nr = self._default_extruder_nr # The settings may specify a specific extruder to use. This is done by @@ -78,13 +80,27 @@ def get_value(self, expression: str, args: str, kwargs: dict) -> str: expression = match.group("expression") extruder_nr = int(match.group("extruder_nr")) + if self._additional_per_extruder_settings is not None and str( + extruder_nr) in self._additional_per_extruder_settings: + additional_variables = self._additional_per_extruder_settings[str(extruder_nr)] + else: + additional_variables = dict() + + # Add the arguments and keyword arguments to the additional settings. These + # are currently _not_ used, but they are added for consistency with the + # base Formatter class. + for key, value in enumerate(args): + additional_variables[key] = value + for key, value in kwargs.items(): + additional_variables[key] = value + if extruder_nr == -1: container_stack = CuraApplication.getInstance().getGlobalContainerStack() else: container_stack = ExtruderManager.getInstance().getExtruderStack(extruder_nr) setting_function = SettingFunction(expression) - value = setting_function(container_stack, additional_variables=kwargs[str(extruder_nr)]) + value = setting_function(container_stack, additional_variables=additional_variables) return value @@ -427,13 +443,14 @@ def _expandGcodeTokens(self, value: str, default_extruder_nr: int = -1) -> str: self._cacheAllExtruderSettings() try: - # any setting can be used as a token - fmt = GcodeStartEndFormatter(default_extruder_nr = default_extruder_nr) - if self._all_extruders_settings is None: - return "" - settings = self._all_extruders_settings.copy() - settings["default_extruder_nr"] = default_extruder_nr - return str(fmt.format(value, **settings)) + # Get "replacement-keys" for the extruders. In the formatter the settings stack is used to get the + # replacement values for the setting-keys. However, the values for `material_id`, `material_type`, + # etc are not in the settings stack. + additional_per_extruder_settings = self._all_extruders_settings.copy() + additional_per_extruder_settings["default_extruder_nr"] = default_extruder_nr + fmt = GcodeStartEndFormatter(default_extruder_nr=default_extruder_nr, + additional_per_extruder_settings=additional_per_extruder_settings) + return str(fmt.format(value)) except: Logger.logException("w", "Unable to do token replacement on start/end g-code") return str(value) From 1d8de818edab999a197c0d99cea53be0e2db8869 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 13 Oct 2023 07:47:22 +0200 Subject: [PATCH 005/121] Remove dependancy to prime tower brim CURA-10783 --- resources/definitions/fdmprinter.def.json | 57 +++++++++++++++++++---- 1 file changed, 48 insertions(+), 9 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 863cd07183f..c108b6b058f 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5895,7 +5895,7 @@ "type": "optional_extruder", "default_value": "-1", "value": "int(defaultExtruderPosition()) if resolveOrValue('adhesion_type') == 'raft' else -1", - "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') != 'none' or resolveOrValue('prime_tower_brim_enable'))", + "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') != 'none')", "resolve": "max(extruderValues('adhesion_extruder_nr'))", "settable_per_mesh": false, "settable_per_extruder": false, @@ -5908,7 +5908,7 @@ "type": "optional_extruder", "default_value": "-1", "value": "adhesion_extruder_nr", - "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') in ['skirt', 'brim'] or resolveOrValue('prime_tower_brim_enable'))", + "enabled": "extruders_enabled_count > 1 and (resolveOrValue('adhesion_type') in ['skirt', 'brim'])", "resolve": "max(extruderValues('skirt_brim_extruder_nr'))", "settable_per_mesh": false, "settable_per_extruder": false @@ -6005,7 +6005,7 @@ "minimum_value": "0", "minimum_value_warning": "25", "maximum_value_warning": "2500", - "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", + "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true @@ -6019,7 +6019,7 @@ "default_value": 8.0, "minimum_value": "0.0", "maximum_value_warning": "50.0", - "enabled": "resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", + "enabled": "resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true, @@ -6034,7 +6034,7 @@ "minimum_value": "0", "maximum_value_warning": "50 / skirt_brim_line_width", "value": "math.ceil(brim_width / (skirt_brim_line_width * initial_layer_line_width_factor / 100.0))", - "enabled": "resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable')", + "enabled": "resolveOrValue('adhesion_type') == 'brim'", "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": true @@ -6673,15 +6673,54 @@ }, "prime_tower_brim_enable": { - "label": "Prime Tower Brim", - "description": "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type.", + "value": "resolveOrValue('adhesion_type') in ('skirt', 'brim', 'raft')", + "label": "Prime Tower Base", + "description": "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') != 'raft')", - "resolve": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') in ('none', 'skirt', 'brim'))", + "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') not in ('none', 'raft'))", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false }, + "prime_tower_base_size": + { + "value": "resolveOrValue('brim_width')", + "label": "Prime Tower Base Size", + "description": "The width of the prime tower base.", + "type": "float", + "unit": "mm", + "enabled": "resolveOrValue('prime_tower_brim_enable')", + "default_value": "resolveOrValue('brim_width')", + "minimum_value": "0", + "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "prime_tower_base_height": + { + "label": "Prime Tower Base Height", + "description": "The height of the prime tower base.", + "type": "float", + "unit": "mm", + "enabled": "resolveOrValue('prime_tower_brim_enable')", + "default_value": 0, + "minimum_value": "0", + "maximum_value": "machine_height", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "prime_tower_base_curve_magnitude": + { + "label": "Prime Tower Base Curve Magnitude", + "description": "The magnitude factor used for the curve of the prime tower foot.", + "type": "int", + "enabled": "resolveOrValue('prime_tower_brim_enable')", + "default_value": 4, + "minimum_value": "0", + "maximum_value": "10", + "settable_per_mesh": false, + "settable_per_extruder": false + }, "ooze_shield_enabled": { "label": "Enable Ooze Shield", From 0a2ee541e3f3d8ca62e6f3d0fb88eb5fab914fac Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 13 Oct 2023 09:14:41 +0200 Subject: [PATCH 006/121] Include prime tower base size into footprint CURA-10783 --- cura/BuildVolume.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 045156dcce6..35407d465ff 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -860,13 +860,23 @@ def _computeDisallowedAreasPrinted(self, used_extruders): machine_depth = self._global_container_stack.getProperty("machine_depth", "value") prime_tower_x = self._global_container_stack.getProperty("prime_tower_position_x", "value") prime_tower_y = - self._global_container_stack.getProperty("prime_tower_position_y", "value") + prime_tower_brim_enable = self._global_container_stack.getProperty("prime_tower_brim_enable", "value") + prime_tower_base_size = self._global_container_stack.getProperty("prime_tower_base_size", "value") + prime_tower_base_height = self._global_container_stack.getProperty("prime_tower_base_height", "value") + if not self._global_container_stack.getProperty("machine_center_is_zero", "value"): prime_tower_x = prime_tower_x - machine_width / 2 #Offset by half machine_width and _depth to put the origin in the front-left. prime_tower_y = prime_tower_y + machine_depth / 2 radius = prime_tower_size / 2 - prime_tower_area = Polygon.approximatedCircle(radius, num_segments = 24) - prime_tower_area = prime_tower_area.translate(prime_tower_x - radius, prime_tower_y - radius) + delta_x = -radius + delta_y = -radius + + if prime_tower_brim_enable and prime_tower_base_size > 0 and prime_tower_base_height > 0: + radius += prime_tower_base_size + + prime_tower_area = Polygon.approximatedCircle(radius, num_segments = 32) + prime_tower_area = prime_tower_area.translate(prime_tower_x + delta_x, prime_tower_y + delta_y) prime_tower_area = prime_tower_area.getMinkowskiHull(Polygon.approximatedCircle(0)) for extruder in used_extruders: @@ -1171,7 +1181,7 @@ def _clamp(self, value, min_value, max_value): _raft_settings = ["adhesion_type", "raft_base_thickness", "raft_interface_layers", "raft_interface_thickness", "raft_surface_layers", "raft_surface_thickness", "raft_airgap", "layer_0_z_overlap"] _extra_z_settings = ["retraction_hop_enabled", "retraction_hop"] _prime_settings = ["extruder_prime_pos_x", "extruder_prime_pos_y", "prime_blob_enable"] - _tower_settings = ["prime_tower_enable", "prime_tower_size", "prime_tower_position_x", "prime_tower_position_y", "prime_tower_brim_enable"] + _tower_settings = ["prime_tower_enable", "prime_tower_size", "prime_tower_position_x", "prime_tower_position_y", "prime_tower_brim_enable", "prime_tower_base_size", "prime_tower_base_height"] _ooze_shield_settings = ["ooze_shield_enabled", "ooze_shield_dist"] _distance_settings = ["infill_wipe_dist", "travel_avoid_distance", "support_offset", "support_enable", "travel_avoid_other_parts", "travel_avoid_supports", "wall_line_count", "wall_line_width_0", "wall_line_width_x"] _extruder_settings = ["support_enable", "support_bottom_enable", "support_roof_enable", "support_infill_extruder_nr", "support_extruder_nr_layer_0", "support_bottom_extruder_nr", "support_roof_extruder_nr", "brim_line_count", "skirt_brim_extruder_nr", "raft_base_extruder_nr", "raft_interface_extruder_nr", "raft_surface_extruder_nr", "adhesion_type"] #Settings that can affect which extruders are used. From 277d48bd510dbbe48d9ced2ef7b40b83a2c7ee5c Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 13 Oct 2023 09:27:57 +0200 Subject: [PATCH 007/121] 3mf Meshes load in correct location CURA-9755 --- plugins/3MFReader/ThreeMFReader.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index e06e9dcf4e4..7675a3f040d 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -186,6 +186,14 @@ def _convertSavitarNodeToUMNode(savitar_node: Savitar.SceneNode, file_name: str if len(um_node.getAllChildren()) == 1: # We don't want groups of one, so move the node up one "level" child_node = um_node.getChildren()[0] + # Move all the meshes of children so that toolhandles are shown in the correct place. + if child_node.getMeshData(): + print("child name: ", child_node.getId()) + extents = child_node.getMeshData().getExtents() + m = Matrix() + m.translate(-extents.center) + child_node.setMeshData(child_node.getMeshData().getTransformed(m)) + child_node.translate(extents.center) parent_transformation = um_node.getLocalTransformation() child_transformation = child_node.getLocalTransformation() child_node.setTransformation(parent_transformation.multiply(child_transformation)) From b5bebdbbb160c938b422a6d5fa1cab97ac311054 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 13 Oct 2023 09:29:05 +0200 Subject: [PATCH 008/121] Fine-tune prime tower base settings CURA-10783 --- resources/definitions/fdmprinter.def.json | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index c108b6b058f..924b2646558 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6698,6 +6698,7 @@ }, "prime_tower_base_height": { + "value": "resolveOrValue('layer_height')", "label": "Prime Tower Base Height", "description": "The height of the prime tower base.", "type": "float", From 7880cb5bdeb6e0c5b494b245fe3703866bd524b5 Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Fri, 13 Oct 2023 11:29:44 +0200 Subject: [PATCH 009/121] remove debug statement CURA-9755 --- plugins/3MFReader/ThreeMFReader.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 7675a3f040d..13a97d5a893 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -188,11 +188,10 @@ def _convertSavitarNodeToUMNode(savitar_node: Savitar.SceneNode, file_name: str child_node = um_node.getChildren()[0] # Move all the meshes of children so that toolhandles are shown in the correct place. if child_node.getMeshData(): - print("child name: ", child_node.getId()) extents = child_node.getMeshData().getExtents() - m = Matrix() - m.translate(-extents.center) - child_node.setMeshData(child_node.getMeshData().getTransformed(m)) + move_matrix = Matrix() + move_matrix.translate(-extents.center) + child_node.setMeshData(child_node.getMeshData().getTransformed(move_matrix)) child_node.translate(extents.center) parent_transformation = um_node.getLocalTransformation() child_transformation = child_node.getLocalTransformation() From a91032f62e1ce7366bc6fcd3c68eef05b371a26d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 13 Oct 2023 11:37:50 +0200 Subject: [PATCH 010/121] Fixed prime tower placement warning issue CURA-10783 --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 35407d465ff..6d95e645d4f 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -813,7 +813,7 @@ def _updateDisallowedAreas(self) -> None: prime_tower_areas = self._computeDisallowedAreasPrinted(used_extruders) for extruder_id in prime_tower_areas: for area_index, prime_tower_area in enumerate(prime_tower_areas[extruder_id]): - for area in result_areas[extruder_id]: + for area in result_areas_no_brim[extruder_id]: if prime_tower_area.intersectsPolygon(area) is not None: prime_tower_collision = True break From acb0406e8e3518701c16f1cb4fe5a3e0e4d1d1f6 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 13 Oct 2023 14:40:49 +0200 Subject: [PATCH 011/121] Better handling of prime tower base with raft CURA-10783 --- cura/BuildVolume.py | 3 ++- resources/definitions/fdmprinter.def.json | 11 +++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 6d95e645d4f..2bfa654d4fe 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -863,6 +863,7 @@ def _computeDisallowedAreasPrinted(self, used_extruders): prime_tower_brim_enable = self._global_container_stack.getProperty("prime_tower_brim_enable", "value") prime_tower_base_size = self._global_container_stack.getProperty("prime_tower_base_size", "value") prime_tower_base_height = self._global_container_stack.getProperty("prime_tower_base_height", "value") + adhesion_type = self._global_container_stack.getProperty("adhesion_type", "value") if not self._global_container_stack.getProperty("machine_center_is_zero", "value"): prime_tower_x = prime_tower_x - machine_width / 2 #Offset by half machine_width and _depth to put the origin in the front-left. @@ -872,7 +873,7 @@ def _computeDisallowedAreasPrinted(self, used_extruders): delta_x = -radius delta_y = -radius - if prime_tower_brim_enable and prime_tower_base_size > 0 and prime_tower_base_height > 0: + if prime_tower_base_size > 0 and ((prime_tower_brim_enable and prime_tower_base_height > 0) or adhesion_type == "raft"): radius += prime_tower_base_size prime_tower_area = Polygon.approximatedCircle(radius, num_segments = 32) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 924b2646558..794dcd02397 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6673,23 +6673,22 @@ }, "prime_tower_brim_enable": { - "value": "resolveOrValue('adhesion_type') in ('skirt', 'brim', 'raft')", "label": "Prime Tower Base", "description": "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't.", "type": "bool", - "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('adhesion_type') not in ('none', 'raft'))", + "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('adhesion_type') != 'raft'", "default_value": false, "settable_per_mesh": false, "settable_per_extruder": false }, "prime_tower_base_size": { - "value": "resolveOrValue('brim_width')", + "value": "resolveOrValue('raft_margin') if resolveOrValue('adhesion_type') == 'raft' else resolveOrValue('brim_width')", "label": "Prime Tower Base Size", "description": "The width of the prime tower base.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_brim_enable')", + "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": "resolveOrValue('brim_width')", "minimum_value": "0", "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", @@ -6703,7 +6702,7 @@ "description": "The height of the prime tower base.", "type": "float", "unit": "mm", - "enabled": "resolveOrValue('prime_tower_brim_enable')", + "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 0, "minimum_value": "0", "maximum_value": "machine_height", @@ -6715,7 +6714,7 @@ "label": "Prime Tower Base Curve Magnitude", "description": "The magnitude factor used for the curve of the prime tower foot.", "type": "int", - "enabled": "resolveOrValue('prime_tower_brim_enable')", + "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 4, "minimum_value": "0", "maximum_value": "10", From cfea094161a1d42f94e4f42007f5519417cd87ba Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 16 Oct 2023 10:15:34 +0200 Subject: [PATCH 012/121] Restore missing translation Lost during conflicts solve --- resources/i18n/es_ES/fdmprinter.def.json.po | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 96fa09c7f72..3303a22d1c6 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -1444,6 +1444,10 @@ msgctxt "infill_pattern label" msgid "Infill Pattern" msgstr "Patrón de relleno" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." + msgctxt "infill_pattern option grid" msgid "Grid" msgstr "Rejilla" From 67c11bf7f84d848d6388c49dd04116e9f4db1556 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 16 Oct 2023 10:56:07 +0200 Subject: [PATCH 013/121] Fix certain 3mf models not restoring properly CURA-11164 --- plugins/3MFReader/ThreeMFReader.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index e06e9dcf4e4..4c13bbb5fa9 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -226,7 +226,8 @@ def _read(self, file_name: str) -> Union[SceneNode, List[SceneNode]]: if mesh_data is not None: extents = mesh_data.getExtents() if extents is not None: - center_vector = Vector(extents.center.x, extents.center.y, extents.center.z) + # We use a different coordinate space, so flip Z and Y + center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) transform_matrix.setByTranslation(center_vector) transform_matrix.multiply(um_node.getLocalTransformation()) um_node.setTransformation(transform_matrix) From 7e38927a8cb76d3789fde21482aeff1e254cc636 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 16 Oct 2023 10:56:07 +0200 Subject: [PATCH 014/121] Fix certain 3mf models not restoring properly CURA-11164 --- plugins/3MFReader/ThreeMFReader.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 13a97d5a893..cf8079d75d0 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -233,7 +233,8 @@ def _read(self, file_name: str) -> Union[SceneNode, List[SceneNode]]: if mesh_data is not None: extents = mesh_data.getExtents() if extents is not None: - center_vector = Vector(extents.center.x, extents.center.y, extents.center.z) + # We use a different coordinate space, so flip Z and Y + center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) transform_matrix.setByTranslation(center_vector) transform_matrix.multiply(um_node.getLocalTransformation()) um_node.setTransformation(transform_matrix) From e87560ef0f88b6894c970ab6815e3d3c832633cb Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 16 Oct 2023 11:19:05 +0200 Subject: [PATCH 015/121] - Added PETG visual mode for 0.1mm and 0.06mm - Improved bridging settings for PETG AA0.8 - Improved unretract settings fro PETG and ABS AA0.8 --- ...um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg | 25 +++++++++++++++++++ .../um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg | 25 +++++++++++++++++++ ...um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg | 25 +++++++++++++++++++ .../um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg | 25 +++++++++++++++++++ .../um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 6 +++-- .../um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 6 +++-- .../um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 6 +++-- .../um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 6 +++-- .../um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 6 +++-- .../um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 6 +++-- 10 files changed, 124 insertions(+), 12 deletions(-) create mode 100644 resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg create mode 100644 resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg create mode 100644 resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg create mode 100644 resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg new file mode 100644 index 00000000000..6cb091dafbb --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s3 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = ultimaker_petg +quality_type = high +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg new file mode 100644 index 00000000000..0cb3fae8f0a --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s3 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = ultimaker_petg +quality_type = normal +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg new file mode 100644 index 00000000000..de4a5cf6d2a --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s5 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = ultimaker_petg +quality_type = high +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg new file mode 100644 index 00000000000..f918839805a --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s5 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = ultimaker_petg +quality_type = normal +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index 72cb67e359a..a5be72d205b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -24,9 +24,11 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 100 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_speed = 30 +bridge_wall_material_flow = 100 +bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -47,7 +49,7 @@ meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 -retraction_prime_speed = 22 +retraction_prime_speed = 15 retraction_speed = 45 skin_no_small_gaps_heuristic = True small_skin_on_surface = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index 2dac5f25147..f5f81875e21 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -24,9 +24,11 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 100 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_speed = 30 +bridge_wall_material_flow = 100 +bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -46,7 +48,7 @@ material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 -retraction_prime_speed = 22 +retraction_prime_speed = 15 retraction_speed = 45 skin_no_small_gaps_heuristic = True small_skin_on_surface = False diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index f6c1e041b5f..ef7295f72ad 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -24,9 +24,11 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 100 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_speed = 30 +bridge_wall_material_flow = 100 +bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -46,7 +48,7 @@ material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 -retraction_prime_speed = 22 +retraction_prime_speed = 15 retraction_speed = 45 skin_no_small_gaps_heuristic = True small_skin_on_surface = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index 0c56873d1e1..c5abade6d47 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -24,9 +24,11 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 100 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_speed = 30 +bridge_wall_material_flow = 100 +bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -47,7 +49,7 @@ meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 -retraction_prime_speed = 22 +retraction_prime_speed = 15 retraction_speed = 45 skin_no_small_gaps_heuristic = True small_skin_on_surface = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 78fabc448d5..c0edcfaf933 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -24,9 +24,11 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 100 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_speed = 30 +bridge_wall_material_flow = 100 +bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -46,7 +48,7 @@ material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 -retraction_prime_speed = 22 +retraction_prime_speed = 15 retraction_speed = 45 skin_no_small_gaps_heuristic = True small_skin_on_surface = False diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index ccc1da9d31d..39378d2159d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -24,9 +24,11 @@ acceleration_topbottom = =acceleration_wall acceleration_wall = =acceleration_infill acceleration_wall_0 = 1500 acceleration_wall_x = =acceleration_wall +bridge_skin_material_flow = 100 bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 -bridge_wall_speed = 30 +bridge_wall_material_flow = 100 +bridge_wall_speed = 20 cool_min_layer_time = 4 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -46,7 +48,7 @@ material_print_temperature = =default_material_print_temperature - 5 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 -retraction_prime_speed = 22 +retraction_prime_speed = 15 retraction_speed = 45 skin_no_small_gaps_heuristic = True small_skin_on_surface = False From dc66732150506ff9b716aced9d9a369d1aa207c6 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 16 Oct 2023 12:07:17 +0200 Subject: [PATCH 016/121] Revert "Fix certain 3mf models not restoring properly" This reverts commit 7e38927a8cb76d3789fde21482aeff1e254cc636. --- plugins/3MFReader/ThreeMFReader.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index cf8079d75d0..13a97d5a893 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -233,8 +233,7 @@ def _read(self, file_name: str) -> Union[SceneNode, List[SceneNode]]: if mesh_data is not None: extents = mesh_data.getExtents() if extents is not None: - # We use a different coordinate space, so flip Z and Y - center_vector = Vector(extents.center.x, extents.center.z, extents.center.y) + center_vector = Vector(extents.center.x, extents.center.y, extents.center.z) transform_matrix.setByTranslation(center_vector) transform_matrix.multiply(um_node.getLocalTransformation()) um_node.setTransformation(transform_matrix) From 8ca005f8040cfeda45ef687030ea63bb1ae24f4c Mon Sep 17 00:00:00 2001 From: "saumya.jain" Date: Mon, 16 Oct 2023 14:13:12 +0200 Subject: [PATCH 017/121] Updated upgrade script. removed update of materials other than: abs pla petg and tough-pla CURA-11151 --- .../VersionUpgrade/VersionUpgrade54to55/VersionUpgrade54to55.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/VersionUpgrade/VersionUpgrade54to55/VersionUpgrade54to55.py b/plugins/VersionUpgrade/VersionUpgrade54to55/VersionUpgrade54to55.py index e5a79e74af9..c972df0b508 100644 --- a/plugins/VersionUpgrade/VersionUpgrade54to55/VersionUpgrade54to55.py +++ b/plugins/VersionUpgrade/VersionUpgrade54to55/VersionUpgrade54to55.py @@ -11,7 +11,7 @@ class VersionUpgrade54to55(VersionUpgrade): profile_regex = re.compile( - r"um\_(?Ps(3|5|7))_(?Paa|cc|bb)(?P0\.(6|4|8))_(?Ppla|petg|abs|cpe|cpe_plus|nylon|pc|petcf|tough_pla|tpu)_(?P0\.\d{1,2}mm)") + r"um\_(?Ps(3|5|7))_(?Paa|cc|bb)(?P0\.(6|4|8))_(?Ppla|petg|abs|tough_pla)_(?P0\.\d{1,2}mm)") @staticmethod def _isUpgradedUltimakerDefinitionId(definition_id: str) -> bool: From 9a3c92c2af54ccb042b6e1926fd0284aec4d80fc Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:26:53 +0200 Subject: [PATCH 018/121] - Added PETG visual mode for 0.15mm --- ...um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg | 25 +++++++++++++++++++ ...um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg | 25 +++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg create mode 100644 resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg new file mode 100644 index 00000000000..a5e918bf823 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s3 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = ultimaker_petg +quality_type = fast +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) + diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg new file mode 100644 index 00000000000..142c9960d14 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s5 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = ultimaker_petg +quality_type = fast +setting_version = 22 +type = intent +variant = AA 0.4 + +[values] +_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 +acceleration_print = 2500 +acceleration_wall_0 = 1000 +inset_direction = inside_out +jerk_wall_0 = 20 +speed_print = 50 +speed_roofing = =math.ceil(speed_wall*(35/50)) +speed_wall_0 = =math.ceil(speed_wall*(20/50)) +speed_wall_x = =math.ceil(speed_wall*(35/50)) +top_bottom_thickness = =max(1.2 , layer_height * 6) + From 700196954ab9d8239e16d442c0bb7131b30dfce0 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Mon, 16 Oct 2023 17:01:44 +0200 Subject: [PATCH 019/121] Restored missing translation labels CURA-10994 --- resources/i18n/de_DE/cura.po | 75 ++++++++++++++++++++ resources/i18n/de_DE/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/es_ES/cura.po | 75 ++++++++++++++++++++ resources/i18n/es_ES/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/fr_FR/cura.po | 75 ++++++++++++++++++++ resources/i18n/fr_FR/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/it_IT/cura.po | 71 +++++++++++++++++++ resources/i18n/it_IT/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/ja_JP/cura.po | 71 +++++++++++++++++++ resources/i18n/ja_JP/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/ko_KR/cura.po | 75 ++++++++++++++++++++ resources/i18n/ko_KR/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/nl_NL/cura.po | 75 ++++++++++++++++++++ resources/i18n/nl_NL/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/pt_PT/cura.po | 75 ++++++++++++++++++++ resources/i18n/pt_PT/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/ru_RU/cura.po | 75 ++++++++++++++++++++ resources/i18n/ru_RU/fdmprinter.def.json.po | 77 +++++++++++++++++++++ resources/i18n/tr_TR/cura.po | 75 ++++++++++++++++++++ resources/i18n/tr_TR/fdmprinter.def.json.po | 76 ++++++++++++++++++++ resources/i18n/zh_CN/cura.po | 75 ++++++++++++++++++++ resources/i18n/zh_CN/fdmprinter.def.json.po | 76 ++++++++++++++++++++ 22 files changed, 1650 insertions(+) diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 344250ec122..b08fe3e1daa 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -5291,3 +5291,78 @@ msgstr "Writer für komprimierten G-Code" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Ermöglicht das Exportieren von Cura-Profilen." + +msgctxt "@info:title" +msgid "Error" +msgstr "Fehler" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Abbrechen" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Einstellungen" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Mehr erfahren" + +msgctxt "@title:tab" +msgid "General" +msgstr "Allgemein" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" + +msgctxt "@label" +msgid "Type" +msgstr "Typ" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Wird gespeichert" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Datei bereits vorhanden" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle unterstützten Typen ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Konnte nicht als {0} gespeichert werden: {1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Warnhinweis" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Drucker" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Datei wurde gespeichert" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Entfernen bestätigen" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Dateien (*)" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 07f0f9de40a..99820dced69 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "Flussdauer zurücksetzen" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 3e5ccc2047d..a83cf0e2ea6 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -5291,3 +5291,78 @@ msgstr "Escritor de GCode comprimido" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Proporciona asistencia para exportar perfiles de Cura." + +msgctxt "@info:title" +msgid "Error" +msgstr "Error" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Más información" + +msgctxt "@title:tab" +msgid "General" +msgstr "General" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" + +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Guardando" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "El archivo ya existe" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos los tipos compatibles ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "No se pudo guardar en {0}: {1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "Aceptar" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Advertencia" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impresoras" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Archivo guardado" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar eliminación" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos los archivos (*)" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 90731a7dfc9..c46a0e448e7 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "Restablecer duración del flujo" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta la colocación de las estructuras del soporte. La colocación se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte también se imprimirán en el modelo." + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index bee477c1204..11261d68cf2 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -5291,3 +5291,78 @@ msgstr "Générateur de G-Code compressé" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Fournit la prise en charge de l'exportation de profils Cura." + +msgctxt "@info:title" +msgid "Error" +msgstr "Erreur" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuler" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Paramètres" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "En savoir plus" + +msgctxt "@title:tab" +msgid "General" +msgstr "Général" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" + +msgctxt "@label" +msgid "Type" +msgstr "" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Enregistrement" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Le fichier existe déjà" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tous les types supportés ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossible d'enregistrer {0} : {1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Avertissement" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Imprimantes" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Fichier enregistré" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmer la suppression" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tous les fichiers (*)" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 0ee7a7e5bb4..658e0984132 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "Réinitialiser la durée du débit" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." + +msgctxt "material description" +msgid "Material" +msgstr "Matériau" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "material label" +msgid "Material" +msgstr "Matériau" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 8e743afc009..2eadafcb7d3 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -5291,3 +5291,74 @@ msgstr "Writer codice G compresso" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Fornisce supporto per l'esportazione dei profili Cura." + +msgctxt "@info:title" +msgid "Error" +msgstr "Errore" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annulla" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Impostazioni" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Ulteriori informazioni" + +msgctxt "@title:tab" +msgid "General" +msgstr "Generale" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" + +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Salvataggio in corso" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Il file esiste già" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tutti i tipi supportati ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossibile salvare {0}: {1}" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Avvertenza" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Stampanti" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "File salvato" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Conferma rimozione" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tutti i file (*)" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 6309fa8a30c..b7b84af92f1 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "Reimposta durata flusso" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." + +msgctxt "material description" +msgid "Material" +msgstr "Materiale" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "material label" +msgid "Material" +msgstr "Materiale" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 17f37f3efcb..76a253cbbf5 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -5278,3 +5278,74 @@ msgstr "圧縮G-codeライター" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Curaプロファイルを書き出すためのサポートを供給する。" + +msgctxt "@info:title" +msgid "Error" +msgstr "エラー" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "キャンセル" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "設定" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "{0} は既に存在します。ファイルを上書きしますか?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "詳しく見る" + +msgctxt "@title:tab" +msgid "General" +msgstr "一般" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1を取り外しますか?この作業はやり直しが効きません!" + +msgctxt "@label" +msgid "Type" +msgstr "タイプ" + +msgctxt "@info:title" +msgid "Saving" +msgstr "保存中" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "すでに存在するファイルです" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "すべてのサポートのタイプ ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}を保存できませんでした: {1}" + +msgctxt "@info:title" +msgid "Warning" +msgstr "警告" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "プリンター" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "ファイル保存" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "モデルを取り除きました" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "全てのファイル" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 38418711412..0541799011d 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "フロー期間をリセット" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" + +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index d839480dd1f..5cdb5309ed7 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -5278,3 +5278,78 @@ msgstr "압축 된 G 코드 작성기" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Cura 프로파일 내보내기 지원을 제공합니다." + +msgctxt "@info:title" +msgid "Error" +msgstr "오류" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "취소" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "설정" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "자세히 알아보기" + +msgctxt "@title:tab" +msgid "General" +msgstr "일반" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" + +msgctxt "@label" +msgid "Type" +msgstr "유형" + +msgctxt "@info:title" +msgid "Saving" +msgstr "저장" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "파일이 이미 있습니다" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "지원되는 모든 유형 ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}: {1} 에 저장할 수 없습니다" + +msgctxt "@action:button" +msgid "OK" +msgstr "확인" + +msgctxt "@info:title" +msgid "Warning" +msgstr "경고" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "프린터" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "파일이 저장됨" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "제거 확인" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "모든 파일 (*)" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 4113837b6b4..ca70d71fc6b 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -5331,3 +5331,75 @@ msgstr "흐름 지속 시간 재설정" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 포지션" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "부착" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." + +msgctxt "material description" +msgid "Material" +msgstr "재료" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 지름" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더의 노즐 ID." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." + +msgctxt "material label" +msgid "Material" +msgstr "재료" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 부착" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 507d2b4ead6..9a0c03514cb 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -5291,3 +5291,78 @@ msgstr "Schrijver voor gecomprimeerde G-code" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." + +msgctxt "@info:title" +msgid "Error" +msgstr "Fout" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuleren" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Instellingen" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Meer informatie" + +msgctxt "@title:tab" +msgid "General" +msgstr "Algemeen" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" + +msgctxt "@label" +msgid "Type" +msgstr "Type" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Opslaan" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Het Bestand Bestaat Al" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle Ondersteunde Typen ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Kan niet opslaan als {0}: {1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Waarschuwing" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Printers" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Bestand opgeslagen" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Verwijderen Bevestigen" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Bestanden (*)" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index dea5afdb683..0c4f5272607 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "Flowduur resetten" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index a66b0e1768d..49affd511c0 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -5291,3 +5291,78 @@ msgstr "Gravador de G-code comprimido" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Possibilita a exportação de perfis do Cura." + +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Definições" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saber mais" + +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" + +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "@info:title" +msgid "Saving" +msgstr "A Guardar" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "O Ficheiro Já Existe" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos os Formatos Suportados ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível guardar em {0}: {1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Aviso" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Ficheiro Guardado" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos os Ficheiros (*)" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 37ae4ec4b55..97c546ba4f0 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "Repor duração do fluxo" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação Extrusor" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência à Base de Construção" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação Extrusor" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação Extrusor" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão." + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 9302917b7f3..d2955b17b48 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -5317,3 +5317,78 @@ msgstr "Средство записи сжатого G-кода" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Предоставляет поддержку для экспорта профилей Cura." + +msgctxt "@info:title" +msgid "Error" +msgstr "Ошибка" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Отмена" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Параметры" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Узнать больше" + +msgctxt "@title:tab" +msgid "General" +msgstr "Общее" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" + +msgctxt "@label" +msgid "Type" +msgstr "Тип" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Сохранение" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Файл уже существует" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Все поддерживаемые типы ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Не могу записать {0}: {1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Внимание" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Принтеры" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Файл сохранён" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Подтвердите удаление" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Все файлы (*)" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index fe21caa5deb..cad953a5ef6 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -5331,3 +5331,80 @@ msgstr "Сбросить продолжительность потока" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." + +msgctxt "material description" +msgid "Material" +msgstr "Материал" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +msgctxt "material label" +msgid "Material" +msgstr "Материал" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Тип прилипания к столу" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index 4e985bb8357..5259b32bcac 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -5291,3 +5291,78 @@ msgstr "Sıkıştırılmış G-code Yazıcısı" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "Cura profillerinin dışa aktarılması için destek sağlar." + +msgctxt "@info:title" +msgid "Error" +msgstr "Hata" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "İptal Et" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ayarlar" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + +msgctxt "@title:tab" +msgid "General" +msgstr "Genel" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" + +msgctxt "@label" +msgid "Type" +msgstr "Tür" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Kaydediliyor" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Dosya Zaten Mevcut" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tüm desteklenen türler ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0} dosyasına kaydedilemedi: {1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "Tamam" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Uyarı" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Yazıcılar" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Dosya Kaydedildi" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Kaldırmayı Onayla" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tüm Dosyalar (*)" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 549b637e071..f8eabd9f68a 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "Akış süresini sıfırla" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." + +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." + +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 47ff2d6144f..1d098778e4a 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -5278,3 +5278,78 @@ msgstr "压缩 G-code 写入器" msgctxt "description" msgid "Provides support for exporting Cura profiles." msgstr "提供了对导出 Cura 配置文件的支持。" + +msgctxt "@info:title" +msgid "Error" +msgstr "错误" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "设置" + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "文件 {0} 已存在。您确定要覆盖它吗?" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "详细了解" + +msgctxt "@title:tab" +msgid "General" +msgstr "基本" + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "您确认要删除 %1?该操作无法恢复!" + +msgctxt "@label" +msgid "Type" +msgstr "类型" + +msgctxt "@info:title" +msgid "Saving" +msgstr "正在保存" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "文件已存在" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "所有支持的文件类型 ({0})" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "无法保存到 {0}{1}" + +msgctxt "@action:button" +msgid "OK" +msgstr "确定" + +msgctxt "@info:title" +msgid "Warning" +msgstr "警告" + +msgctxt "@title:tab" +msgid "Printers" +msgstr "打印机" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "文件已保存" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "确认删除" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "所有文件 (*)" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index c7774d9e217..bc387cc497d 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -5331,3 +5331,79 @@ msgstr "重置流量持续时间" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" + +msgctxt "material description" +msgid "Material" +msgstr "材料" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +msgctxt "material label" +msgid "Material" +msgstr "材料" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" From 535cb280379df0c00a7a41678bb1be17e913f6ef Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 17 Oct 2023 15:59:08 +0200 Subject: [PATCH 020/121] Add translations for new settings/profiles CURA-10994 --- resources/definitions/fdmprinter.def.json | 2 +- resources/i18n/cs_CZ/cura.po | 8 +++ resources/i18n/cs_CZ/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/cura.pot | 7 ++ resources/i18n/de_DE/cura.po | 8 +++ resources/i18n/de_DE/fdmprinter.def.json.po | 76 ++++++++++++++++++-- resources/i18n/es_ES/cura.po | 8 +++ resources/i18n/es_ES/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/fdmprinter.def.json.pot | 74 ++++++++++++++++++- resources/i18n/fi_FI/cura.po | 8 +++ resources/i18n/fi_FI/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/fr_FR/cura.po | 8 +++ resources/i18n/fr_FR/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/hu_HU/cura.po | 8 +++ resources/i18n/hu_HU/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/it_IT/cura.po | 8 +++ resources/i18n/it_IT/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/ja_JP/cura.po | 8 +++ resources/i18n/ja_JP/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/ko_KR/cura.po | 8 +++ resources/i18n/ko_KR/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/nl_NL/cura.po | 8 +++ resources/i18n/nl_NL/fdmprinter.def.json.po | 76 ++++++++++++++++++-- resources/i18n/pl_PL/cura.po | 8 +++ resources/i18n/pl_PL/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/pt_PT/cura.po | 8 +++ resources/i18n/pt_PT/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/ru_RU/cura.po | 8 +++ resources/i18n/ru_RU/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/tr_TR/cura.po | 8 +++ resources/i18n/tr_TR/fdmprinter.def.json.po | 72 +++++++++++++++++++ resources/i18n/zh_CN/cura.po | 8 +++ resources/i18n/zh_CN/fdmextruder.def.json.po | 72 +++++++++++++++++++ 33 files changed, 1281 insertions(+), 10 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 863cd07183f..a74abaa8ce8 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -3198,7 +3198,7 @@ "speed_wall_0_roofing": { "label": "Top Surface Outer Wall Speed", - "description": "The speed at which the top surface outermost walls are printed.", + "description": "The speed at which the top surface outermost wall is printed.", "unit": "mm/s", "type": "float", "minimum_value": "0.1", diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index 1936ce39289..f04a0d3b8ed 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -5561,6 +5561,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Nepovedlo se stáhnout {} zásuvných modulů" +msgctxt "@label" +msgid "Balanced" +msgstr "Vyvážený" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produktivitou, kvalitou povrchu, mechanickými vlastnostmi a rozměrnou přesností." + #, python-brace-format #~ msgctxt "info:{0} gets replaced by a number of printers" #~ msgid "... and {0} other" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 0d764ee44bb..45709a70ac8 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -5387,6 +5387,78 @@ msgctxt "travel description" msgid "travel" msgstr "cestování" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Seskupit vnější stěny" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Venkovní stěny různých ostrovů ve stejné vrstvě jsou tisknuty postupně. Když je povoleno, množství změn proudu je omezeno, protože stěny jsou tisknuty po jednom typu najednou, když je zakázáno, počet cest mezi ostrovy se snižuje, protože stěny na stejných ostrovech jsou seskupeny." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Tok nejvíce vnější stěnové linky horní plochy" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Kompensace toku na nejvíce vnější stěnové lince horní plochy." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Tok vnitřní stěny horní plochy" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Kompensace toku na horní stěnové linky pro všechny stěnové linky kromě nejvnější." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Rychlost nejvíce vnější stěny horní plochy" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Rychlost, kterou jsou tisknuty nejvíce vnější stěny horní plochy." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Rychlost vnitřní stěny horní plochy" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Rychlost, kterou jsou tisknuty vnitřní stěny horní plochy." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Zrychlení vnější stěny horní plochy" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Zrychlení, kterým jsou tisknuty nejvíce vnější stěny horní plochy." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Zrychlení vnitřní stěny horní plochy" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Zrychlení, kterým jsou tisknuty vnitřní stěny horní plochy." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Rychlá změna nejvíce vnitřní stěny horní plochy" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnitřní stěny horní plochy." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Rychlá změna nejvíce vnější stěny horní plochy" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnější stěny horní plochy." + diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 58954d80ff6..6aad1da459e 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -5487,3 +5487,10 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index b08fe3e1daa..a27f9e54b67 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -5366,3 +5366,11 @@ msgstr "Entfernen bestätigen" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Dateien (*)" + +msgctxt "@label" +msgid "Ausgewogen" +msgstr "" + +msgctxt "@text" +msgid "Das ausgewogene Profil ist darauf ausgelegt, einen Kompromiss zwischen Produktivität, Oberflächenqualität, mechanischen Eigenschaften und Maßgenauigkeit zu erzielen." +msgstr "" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 99820dced69..a418201de8e 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -5344,10 +5344,6 @@ msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" - msgctxt "machine_nozzle_size label" msgid "Nozzle Diameter" msgstr "Düsendurchmesser" @@ -5407,3 +5403,75 @@ msgstr "Druckplattenhaftung" msgctxt "machine_settings label" msgid "Machine" msgstr "Gerät" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Äußere Wände gruppieren" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluss der äußersten Oberflächenwand" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluss der inneren Oberflächenwand(en)" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Geschwindigkeit der inneren Oberfläche der Wand" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Beschleunigung der äußeren Oberfläche der Wand" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Beschleunigung der inneren Oberfläche der Wand" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Ruck der inneren Oberflächenwand" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Ruck der äußersten Oberflächenwand" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index a83cf0e2ea6..a9f25d7e465 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -5366,3 +5366,11 @@ msgstr "Confirmar eliminación" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos los archivos (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "El perfil equilibrado está diseñado para lograr un equilibrio entre la productividad, la calidad de la superficie, las propiedades mecánicas y la precisión dimensional." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index c46a0e448e7..9a1cb89caff 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -5407,3 +5407,75 @@ msgstr "Adherencia de la placa de impresión" msgctxt "machine_settings label" msgid "Machine" msgstr "Máquina" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar las paredes exteriores" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flujo de la pared exterior de la superficie superior" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flujo de la pared interior de la superficie superior" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidad de la pared externa de la superficie superior" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidad de la pared interna de la superficie superior" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleración de la superficie externa superior de la pared" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleración de la superficie interna superior de la pared" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Sacudida de la pared interior de la superficie superior" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Sacudida de la pared exterior más externa de la superficie superior" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 96c31936fc5..d3078381b4d 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -5372,6 +5372,78 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "" + ### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. @@ -5414,4 +5486,4 @@ msgstr "" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index 7aadf401fec..8a62f83e2de 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -5503,6 +5503,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "Tasapainotettu" + +msgctxt "@text" +msgid "Tasapainotettu profiili on suunniteltu tasapainottamaan tuottavuutta, pinnanlaatua, mekaanisia ominaisuuksia ja dimensionaalista tarkkuutta." +msgstr "" + #~ msgctxt "@action:inmenu menubar:edit" #~ msgid "Arrange Selection" #~ msgstr "Järjestä valinta" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 70baccb72df..98f4de3e8cc 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -5380,6 +5380,78 @@ msgctxt "travel description" msgid "travel" msgstr "siirtoliike" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Ryhmittele ulkoseinät" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Samaan kerrokseen kuuluvat eri saarten ulkoseinät tulostetaan peräkkäin. Kun toiminto on käytössä, virtauksen muutosten määrä on rajoitettu, koska seinät tulostetaan yksi kerrallaan. Kun toiminto on pois päältä, matkojen määrä saarten välillä vähenee, koska saman saaren seinät ryhmitellään." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Yläpinnan uloimman seinän virtaus" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Virtauksen kompensointi yläpinnan uloimman seinän linjalla." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Yläpinnan sisäseinän virtaus" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Virtauksen kompensointi yläpinnan seinälinjoilla kaikille seinälinjoille paitsi uloimman linjalle." + +msgctxt "speed_wall_0_roofing label" +msgid "Yläpinnan uloimman seinän nopeus" +msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Yläpinnan uloimpien seinien tulostusnopeus." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Yläpinnan sisäseinän nopeus" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Yläpinnan sisäseinien tulostusnopeus." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Yläpinnan ulkoseinän kiihtyvyys" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Yläpinnan uloimpien seinien tulostamisen kiihtyvyys." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Yläpinnan sisäseinän kiihtyvyys" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Yläpinnan sisäseinien tulostamisen kiihtyvyys." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Yläpinnan sisäseinän nykäys" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Yläpinnan sisäseinien tulostuksessa tapahtuva suurin välitön nopeuden muutos." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Yläpinnan uloimman seinän nykäys" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Yläpinnan uloimman seinän tulostuksessa tapahtuva suurin välitön nopeuden muutos." + ### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 11261d68cf2..081c18e3d18 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -5366,3 +5366,11 @@ msgstr "Confirmer la suppression" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tous les fichiers (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "Équilibré" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Le profil équilibré est conçu pour trouver un équilibre entre la productivité, la qualité de surface, les propriétés mécaniques et la précision dimensionnelle." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 658e0984132..779d650d98a 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -5407,3 +5407,75 @@ msgstr "Adhérence du plateau" msgctxt "machine_settings label" msgid "Machine" msgstr "Machine" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Regrouper les parois extérieures" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Débit de la paroi externe de la surface supérieure" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Débit des parois internes de la surface supérieure" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Vitesse d'impression des parois internes de la surface supérieure" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accélération de la paroi externe de la surface supérieure" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accélération des parois internes de la surface supérieure" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Saccade de la paroi externe de la surface supérieure" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Saccade des parois internes de la surface supérieure" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 0c22ac8b9dd..555fadde989 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -5517,6 +5517,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "Kiegyensúlyozott" + +msgctxt "@text" +msgid "Az egyensúlyozott profil a termelékenység, felületminőség, mechanikai tulajdonságok és méret pontoság közötti egyensúly elérését célozza meg." +msgstr "" + #~ msgctxt "@action:inmenu menubar:edit" #~ msgid "Arrange Selection" #~ msgstr "Kijelöltek rendezése" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 3e66e1fc91f..2ac4798de4e 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -5389,6 +5389,78 @@ msgctxt "travel description" msgid "travel" msgstr "fej átpozícionálás" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Külső falak csoportosítása" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Az azonos rétegben lévő különböző szigetek külső falait sorban nyomtatják. Amikor engedélyezve van, korlátozódik az áramlás változásainak mértéke, mert a falak típusonként nyomtathatók ki. Amikor letiltva van, az utazások számát a szigetek között csökkenti, mert ugyanazon szigeteken lévő falak csoportosítva vannak." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "A felső felület legkülső falának áramlása" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Áramlási kompenzáció a felső felület legkülső falvonalán." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "A felső felület belső falainak áramlása" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Áramlás kompenzáció a felső felület falvonalain az összes falvonal kivételével a legkülsőn." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "A felső felület legkülső falának sebessége" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Az a sebesség, amellyel a felső felület legkülső falai kinyomtatnak." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "A felső felület belső falának sebessége" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Az a sebesség, amellyel a felső felület belső falai kinyomtatnak." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "A felső felület külső falának gyorsulása" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Az a gyorsulás, amellyel a felső felület legkülső falai kinyomtatnak." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "A felső felület belső falának gyorsulása" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Az a gyorsulás, amellyel a felső felület belső falai kinyomtatnak." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "A felső felület belső falának hirtelen gyorsulása" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület belső falai kinyomtatnak." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "A felső felület legkülső falának hirtelen gyorsulása" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület legkülső falai kinyomtatnak." + diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 2eadafcb7d3..1f3724d6b53 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -5362,3 +5362,11 @@ msgstr "Conferma rimozione" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tutti i file (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "Bilanciato" + +msgctxt "@text" +msgid "Il profilo equilibrato è progettato per trovare un equilibrio tra produttività, qualità superficiale, proprietà meccaniche e precisione dimensionale." +msgstr "" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index b7b84af92f1..9615904f61b 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -5407,3 +5407,75 @@ msgstr "Adesione piano di stampa" msgctxt "machine_settings label" msgid "Machine" msgstr "Macchina" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Raggruppa le pareti esterne" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flusso della parete esterna della superficie superiore" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flusso della parete interna della superficie superiore" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna della superficie superiore" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocità di stampa della parete interna della superficie superiore" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accelerazione della parete esterna della superficie superiore" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accelerazione della parete interna della superficie superiore" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk parete interna della superficie superiore" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk parete esterna della superficie superiore" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 76a253cbbf5..4aefbe2bb34 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -5349,3 +5349,11 @@ msgstr "モデルを取り除きました" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "全てのファイル" + +msgctxt "@label" +msgid "Balanced" +msgstr "バランス" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "バランスのとれたプロファイルは、生産性、表面品質、機械的特性、寸法精度のバランスを取るために設計されています。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 0541799011d..60c41dcff3c 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -5407,3 +5407,75 @@ msgstr "ビルドプレート密着性" msgctxt "machine_settings label" msgid "Machine" msgstr "プリンター" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外壁をグループ化" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "上面最外壁の流れ" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "最外の壁ラインにおける流量補正。" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "上面内壁の流れ" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "上面の最外壁速度" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "上面の最外壁が印刷される速度" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "上面内壁速度" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "上面内壁が印刷される速度" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "上面外壁加速度" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "上面の最外壁が印刷される際の加速度" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "上面内壁加速度" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "上面内壁が印刷される際の加速度" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "上面内壁の最大瞬間速度変化" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "上面内壁が印刷される際の最大瞬間速度変化。" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "上面最外壁の最大瞬間速度変化" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 5cdb5309ed7..02e9916f4dc 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -5353,3 +5353,11 @@ msgstr "제거 확인" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "모든 파일 (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "균형" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "균형 프로파일은 생산성, 표면 품질, 기계적 특성 및 치수 정확도 사이의 균형을 찾기 위해 설계되었습니다." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index ca70d71fc6b..b2ef2e18808 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -5403,3 +5403,75 @@ msgstr "빌드 플레이트 부착" msgctxt "machine_settings label" msgid "Machine" msgstr "기기" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "외벽 그룹화" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "상면 가장 바깥 벽의 유량" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "상면 내벽 흐름" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "상면 외벽 속도" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "상면 내벽 속도" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 속도" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "상면 외벽 가속도" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "상면 내벽 가속도" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 가속도" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "상면 내벽의 최대 순간 속도 변화" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 9a0c03514cb..bf5337902be 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -5366,3 +5366,11 @@ msgstr "Verwijderen Bevestigen" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Bestanden (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "Gebalanceerd" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Het gebalanceerde profiel is ontworpen om een balans te vinden tussen productiviteit, oppervlaktekwaliteit, mechanische eigenschappen en dimensionale nauwkeurigheid." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 0c4f5272607..333268d3b68 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -5344,10 +5344,6 @@ msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." - msgctxt "machine_nozzle_size label" msgid "Nozzle Diameter" msgstr "Nozzlediameter" @@ -5407,3 +5403,75 @@ msgstr "Hechting aan Platform" msgctxt "machine_settings label" msgid "Machine" msgstr "Machine" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Groepeer de buitenwanden" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Stroom van de buitenste wand van het bovenoppervlak" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Snelheid van de buitenste wand van het bovenoppervlak" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Snelheid van de binnenste wand van het bovenoppervlak" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Versnelling van de buitenste wand op bovenlaag" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Versnelling van de binnenwand op bovenlaag" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Schok van de binnenste muur van het bovenoppervlak" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Schok van de buitenste muur van het bovenoppervlak" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 95d8c94b246..0cbb145fc02 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -5520,6 +5520,14 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "Zrównoważony" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Zrównoważony profil został zaprojektowany w celu znalezienia równowagi między wydajnością, jakością powierzchni, właściwościami mechanicznymi i precyzją wymiarową." + #~ msgctxt "@action:inmenu menubar:edit" #~ msgid "Arrange Selection" #~ msgstr "Wybór ułożenia" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 59d4fea92bf..0d81dc6909f 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -5388,6 +5388,78 @@ msgctxt "travel description" msgid "travel" msgstr "ruch jałowy" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Grupuj ściany zewnętrzne" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Zewnętrzne ściany różnych wysp w tej samej warstwie są drukowane sekwencyjnie. Gdy jest włączone, ilość zmian przepływu jest ograniczona, ponieważ ściany są drukowane po jednym rodzaju na raz. Gdy jest wyłączone, liczba podróży między wyspami jest zmniejszana, ponieważ ściany na tych samych wyspach są grupowane." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Przepływ na najbardziej zewnętrznej linii górnej powierzchni" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Kompensacja przepływu na najbardziej zewnętrznej linii górnej powierzchni." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Przepływ wewnętrznej ściany(ach) górnej powierzchni" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Kompensacja przepływu na liniach ściany na powierzchni górnej dla wszystkich linii ściany, z wyjątkiem najbardziej zewnętrznej." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Prędkość najbardziej zewnętrznych ścian górnej powierzchni" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Prędkość drukowania najbardziej zewnętrznych ścian górnej powierzchni." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Prędkość wewnętrznej powierzchni górnej ściany" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Prędkość drukowania wewnętrznych ścian górnej powierzchni." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Przyspieszenie zewnętrznej powierzchni górnej ściany" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Przyspieszenie, z jakim są drukowane najbardziej zewnętrzne ściany górnej powierzchni." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Przyspieszenie wewnętrznej powierzchni górnej ściany" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Przyspieszenie, z jakim są drukowane wewnętrzne ścianki górnej powierzchni." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Szarpnięcie na wewnętrznych ścianach górnej powierzchni" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są wewnętrzne ściany górnej powierzchni." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Szarpnięcie na najbardziej zewnętrznych ścianach górnej powierzchni" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są najbardziej zewnętrzne ściany górnej powierzchni." + ### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 49affd511c0..48c598458e2 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -5366,3 +5366,11 @@ msgstr "Confirmar Remoção" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos os Ficheiros (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "O perfil equilibrado é projetado para encontrar um equilíbrio entre a produtividade, a qualidade da superfície, as propriedades mecânicas e a precisão dimensional." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 97c546ba4f0..54c107e3f6e 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -5407,3 +5407,75 @@ msgstr "Aderência" msgctxt "machine_settings label" msgid "Machine" msgstr "Máquina" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar as paredes externas" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da parede mais externa da superfície superior" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo da parede interna da superfície superior" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da parede mais externa da superfície superior" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da parede interna da superfície superior" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da parede externa da superfície superior" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da parede interna da superfície superior" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk das Paredes Interiores da Superfície Superior" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Exterior da Superfície Superior" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index d2955b17b48..7c2944df777 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -5392,3 +5392,11 @@ msgstr "Подтвердите удаление" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Все файлы (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "Сбалансированный" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Сбалансированный профиль разработан для достижения баланса между производительностью, качеством поверхности, механическими характеристиками и размерной точностью." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index cad953a5ef6..27ca84b0583 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -5408,3 +5408,75 @@ msgstr "Тип прилипания к столу" msgctxt "machine_settings label" msgid "Machine" msgstr "Принтер" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Группировать внешние стены" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Поток на самой внешней линии верхней поверхности" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Компенсация потока на самой внешней линии верхней поверхности." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Поток внутренней стены верхней поверхности" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Скорость самых внешних стен верхней поверхности" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Скорость печати самых внешних стен верхней поверхности." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Скорость внутренней поверхности верхней стены" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Ускорение внешней поверхности верхней стены" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Ускорение внутренней поверхности верхней стены" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Рывок внутренних стен верхней поверхности" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Рывок внешних стен верхней поверхности" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index 5259b32bcac..f0a04f1b394 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -5366,3 +5366,11 @@ msgstr "Kaldırmayı Onayla" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "Dengeli" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Dengeli profil, verimlilik, yüzey kalitesi, mekanik özellikler ve boyutsal doğruluk arasında bir denge kurmayı amaçlar." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index f8eabd9f68a..8499d1a8c74 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -5407,3 +5407,75 @@ msgstr "Yapı Levhası Yapıştırması" msgctxt "machine_settings label" msgid "Machine" msgstr "Makine" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Dış Duvarları Grupla" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Üst Yüzeyin En Dış Duvar Akışı" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Üst Yüzey İç Duvar Akışı" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Üst Yüzeyin En Dış Duvar Hızı" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Üst Yüzey İç Duvar Hızı" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Üst Yüzey Dış Duvar Hızlanması" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Üst Yüzey İç Duvar Hızlanması" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Üst Yüzeyin İç Duvar Darbesi" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Üst Yüzeyin En Dış Duvar Darbesi" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 1d098778e4a..b420d33a077 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -5353,3 +5353,11 @@ msgstr "确认删除" msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有文件 (*)" + +msgctxt "@label" +msgid "Balanced" +msgstr "平衡" + +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "平衡配置旨在在生產力、表面質量、機械性能和尺寸精度之間取得平衡。" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 5223f4f62d8..84f2f59e15e 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -179,3 +179,75 @@ msgstr "挤出机 Y 轴起始位置" msgctxt "extruder_prime_pos_y description" msgid "The Y coordinate of the position where the nozzle primes at the start of printing." msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "群組外牆" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "在相同層中,不同島嶼的外牆按順序印製。啟用時,減少流量變化的量,因為牆壁一次印刷一種類型;停用時,減少島嶼之間的行程數,因為相同島嶼的牆壁被分組。" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "頂部最外牆流" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "頂部最外牆流量補償" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "頂部內壁流" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "所有牆線,除了最外面的牆線,頂部牆線的流動補償" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "頂部外牆速度" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "頂部最外牆印製時的速度" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "頂部內壁速度" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "頂部內壁印製時的速度" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "頂部外牆加速度" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "頂部最外牆的印刷加速度" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "頂部內壁加速度" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "頂部內壁印製時的加速度" + +msgctxt "jerk_wall_0_roofing label" +msgid "頂部內壁突變" +msgstr "Saccade de la paroi externe de la surface supérieure" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "印刷頂部內壁的最大瞬時速度變化。" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "頂部最外牆突變" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "印刷頂部最外牆的最大瞬時速度變化。" From 3b5dd87d6918e53819ceaafdc5c707581e87db0f Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 18 Oct 2023 09:13:31 +0200 Subject: [PATCH 021/121] Chinese profiles translations refinement CURA-10994 --- resources/i18n/zh_CN/cura.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index b420d33a077..7a2268de52c 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -3884,7 +3884,7 @@ msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩 msgctxt "@text" msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "工程配置文件用于打印功能性原型和最终用途部件,可提高准确性和减小公差。" +msgstr "工程參数是设计來打印較高精度和較小公差的功能性原型和实际使用零件。" msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." @@ -5360,4 +5360,4 @@ msgstr "平衡" msgctxt "@text" msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "平衡配置旨在在生產力、表面質量、機械性能和尺寸精度之間取得平衡。" +msgstr "平衡配置旨在在生产力、表面质量、机械性能和尺寸精度之間取得平衡。" From d71252dee8a0eeac821b8f4e700704bf077e5f74 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 18 Oct 2023 14:26:43 +0200 Subject: [PATCH 022/121] Fix description now that we have fractional layer-heights (for top). part of CURA-10407 --- resources/definitions/fdmprinter.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 863cd07183f..35f75c3786b 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5130,7 +5130,7 @@ "support_z_distance": { "label": "Support Z Distance", - "description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height.", + "description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. Apart from the top-layer, this value is rounded up to a multiple of the layer height.", "unit": "mm", "type": "float", "minimum_value": "0", @@ -5144,7 +5144,7 @@ "support_top_distance": { "label": "Support Top Distance", - "description": "Distance from the top of the support to the print.", + "description": "Distance from the top of the support to the print. Note that this is not rounded.", "unit": "mm", "minimum_value": "0", "maximum_value_warning": "machine_nozzle_size", @@ -5158,7 +5158,7 @@ "support_bottom_distance": { "label": "Support Bottom Distance", - "description": "Distance from the print to the bottom of the support.", + "description": "Distance from the print to the bottom of the support. Not that this is rounded up to the next layer height.", "unit": "mm", "minimum_value": "0", "maximum_value_warning": "machine_nozzle_size", From c20149d064abd401eb0dee079b4be40be1a67259 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 18 Oct 2023 14:36:31 +0200 Subject: [PATCH 023/121] use the stable 0.1 release branch for plugin --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 7d41bbfa7ce..a24f70470f1 100644 --- a/conanfile.py +++ b/conanfile.py @@ -311,7 +311,7 @@ def requirements(self): self.requires("curaengine/(latest)@ultimaker/stable") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") - self.requires("curaengine_plugin_gradual_flow/(latest)@ultimaker/testing") + self.requires("curaengine_plugin_gradual_flow/(latest)@ultimaker/stable") self.requires("uranium/(latest)@ultimaker/stable") self.requires("cura_binary_data/(latest)@ultimaker/stable") self.requires("cpython/3.10.4") From 4131993e5fdd3294951f0cf556f4683c18207503 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 18 Oct 2023 16:46:43 +0200 Subject: [PATCH 024/121] Fix misplaced translations CURA-10994 --- resources/i18n/de_DE/cura.po | 8 ++++---- resources/i18n/fi_FI/cura.po | 4 ++-- resources/i18n/fr_FR/cura.po | 2 +- resources/i18n/hu_HU/cura.po | 4 ++-- resources/i18n/it_IT/cura.po | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index a27f9e54b67..64f6f3804bc 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -5368,9 +5368,9 @@ msgid "All Files (*)" msgstr "Alle Dateien (*)" msgctxt "@label" -msgid "Ausgewogen" -msgstr "" +msgid "Balanced" +msgstr "Ausgewogen" msgctxt "@text" -msgid "Das ausgewogene Profil ist darauf ausgelegt, einen Kompromiss zwischen Produktivität, Oberflächenqualität, mechanischen Eigenschaften und Maßgenauigkeit zu erzielen." -msgstr "" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Das ausgewogene Profil ist darauf ausgelegt, einen Kompromiss zwischen Produktivität, Oberflächenqualität, mechanischen Eigenschaften und Maßgenauigkeit zu erzielen." diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index 8a62f83e2de..2be1863b49b 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -5508,8 +5508,8 @@ msgid "Balanced" msgstr "Tasapainotettu" msgctxt "@text" -msgid "Tasapainotettu profiili on suunniteltu tasapainottamaan tuottavuutta, pinnanlaatua, mekaanisia ominaisuuksia ja dimensionaalista tarkkuutta." -msgstr "" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Tasapainotettu profiili on suunniteltu tasapainottamaan tuottavuutta, pinnanlaatua, mekaanisia ominaisuuksia ja dimensionaalista tarkkuutta." #~ msgctxt "@action:inmenu menubar:edit" #~ msgid "Arrange Selection" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 081c18e3d18..f57b50bcf9c 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -5323,7 +5323,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas re msgctxt "@label" msgid "Type" -msgstr "" +msgstr "Type" msgctxt "@info:title" msgid "Saving" diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 555fadde989..6794644e486 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -5522,8 +5522,8 @@ msgid "Balanced" msgstr "Kiegyensúlyozott" msgctxt "@text" -msgid "Az egyensúlyozott profil a termelékenység, felületminőség, mechanikai tulajdonságok és méret pontoság közötti egyensúly elérését célozza meg." -msgstr "" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Az egyensúlyozott profil a termelékenység, felületminőség, mechanikai tulajdonságok és méret pontoság közötti egyensúly elérését célozza meg." #~ msgctxt "@action:inmenu menubar:edit" #~ msgid "Arrange Selection" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 1f3724d6b53..04cc68715ad 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -5368,5 +5368,5 @@ msgid "Balanced" msgstr "Bilanciato" msgctxt "@text" -msgid "Il profilo equilibrato è progettato per trovare un equilibrio tra produttività, qualità superficiale, proprietà meccaniche e precisione dimensionale." -msgstr "" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Il profilo equilibrato è progettato per trovare un equilibrio tra produttività, qualità superficiale, proprietà meccaniche e precisione dimensionale." From 1d7ca16f41859a3873c56ea5077ceab83a27646c Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Thu, 19 Oct 2023 11:18:11 +0200 Subject: [PATCH 025/121] Remove "no skin in z gap" from profiles. Created issues in some skin areas. Related to: CURA-11187 --- .../quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg | 1 - .../ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg | 1 - .../ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg | 1 - resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg | 1 - .../quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg | 1 - 48 files changed, 48 deletions(-) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index 7abb51e6a1c..cd8e392dfac 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 4a13761db46..29f3cb056ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 1af4082a794..94535ab9c1c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 0f06b328006..4c2861436ac 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -47,7 +47,6 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 4a440bcf6d1..7e29e3a9d0b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -48,7 +48,6 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index d9d675caab3..2a74986a2ad 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -48,7 +48,6 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index 8caa4d6954d..0f3fee265b2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index 630021679a0..100f2485ba5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index b7f1c4d8c26..d06fa7c63b9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index a2b101c8d40..d0a2747ea4c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index ad7a59195ef..ea4761463c3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 9c73153775b..4ba2b956e95 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 347846b1b9c..fb7c9e5592b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -50,7 +50,6 @@ raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index 076e96b255f..897b0e86881 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 5e0238b8cbf..12e37a25d92 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index a5be72d205b..58503dfcd91 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -51,7 +51,6 @@ prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index f5f81875e21..0c35b29fe08 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -50,7 +50,6 @@ prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index ef7295f72ad..1c8ba2c88b5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -50,7 +50,6 @@ prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 127b93992ac..d1b4c11a74d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -50,7 +50,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index d31ec959280..347f3bd0935 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 19aaefcb39b..6aaf0461e27 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index 187be4ba9d9..44b1e765949 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -50,7 +50,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index f0e50dcbed6..d509a82bb62 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 71e9ae15f57..a6ac3f3895a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 86dd7765f07..10854725605 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index 3ab5807dccf..22ef09c921e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index c319b88dbef..9067d8fb33b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 6.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index fbfff69845d..8a64a81ab12 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -47,7 +47,6 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 45c6911c710..70ee9b0309a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -48,7 +48,6 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 38788467c8e..65c8343d856 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -48,7 +48,6 @@ prime_tower_enable = False retraction_amount = 8 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index b981d85c3b2..ac6cce0b104 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index f8d3e87c8e0..dbea8c64363 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index 7e00bf88614..dcb2e0c5160 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 2fed514e6e8..59044a7f04d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index c27f7fb80a1..74e6d5d972d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -48,7 +48,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index b8784742f96..a9cb1c68652 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 6.5 retraction_prime_speed = =retraction_speed retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index f7e39dba435..0a66306e49f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -50,7 +50,6 @@ raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 3db755142db..764a0cb9ac6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 0d345de087a..1f02428548d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.15 retraction_amount = 4 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index c5abade6d47..e74b8444f08 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -51,7 +51,6 @@ prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index c0edcfaf933..8af2e7c1bbd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -50,7 +50,6 @@ prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index 39378d2159d..bd74c294e12 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -50,7 +50,6 @@ prime_tower_enable = True retraction_amount = 3.5 retraction_prime_speed = 15 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index 18f2e336206..bf1a55d5229 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -50,7 +50,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index 6bd0c4591cf..79df2f65f04 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index 4b4e2e6c1b7..acfbcb1f1ec 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index d314322a0dd..6551f4de75e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -50,7 +50,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index b47ed27752c..0f21a875687 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index f5349cb2a78..70234b85248 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -49,7 +49,6 @@ raft_airgap = 0.25 retraction_amount = 4 retraction_prime_speed = 22 retraction_speed = 45 -skin_no_small_gaps_heuristic = True small_skin_on_surface = False small_skin_width = 4 speed_infill = =speed_print From 0e1262126a4400633c2a57f7a1f2e230b7c36fd4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 11:53:41 +0200 Subject: [PATCH 026/121] Fix memory leak issues in minitor page Issue was that QT (incorrectly?) asserted that there was a binding loop between width and height in the `NetworkMJPGImage` component. This caused the height to evalualte to `infinity`, making QT create a buffer with an infinite amount of memory. Solved by calculating a serpeate `img_scale_factor` which both the width and height uses. CURA-11180 --- cura/PrinterOutput/NetworkMJPGImage.py | 8 +++-- .../resources/qml/PrinterVideoStream.qml | 31 ++++++++++++------- 2 files changed, 24 insertions(+), 15 deletions(-) diff --git a/cura/PrinterOutput/NetworkMJPGImage.py b/cura/PrinterOutput/NetworkMJPGImage.py index a482b40ad8d..a1b45847f9b 100644 --- a/cura/PrinterOutput/NetworkMJPGImage.py +++ b/cura/PrinterOutput/NetworkMJPGImage.py @@ -1,6 +1,8 @@ # Copyright (c) 2018 Aldo Hoeben / fieldOfView # NetworkMJPGImage is released under the terms of the LGPLv3 or higher. +from typing import Optional + from PyQt6.QtCore import QUrl, pyqtProperty, pyqtSignal, pyqtSlot, QRect, QByteArray from PyQt6.QtGui import QImage, QPainter from PyQt6.QtQuick import QQuickPaintedItem @@ -19,9 +21,9 @@ def __init__(self, *args, **kwargs) -> None: self._stream_buffer = QByteArray() self._stream_buffer_start_index = -1 - self._network_manager = None # type: QNetworkAccessManager - self._image_request = None # type: QNetworkRequest - self._image_reply = None # type: QNetworkReply + self._network_manager: Optional[QNetworkAccessManager] = None + self._image_request: Optional[QNetworkRequest] = None + self._image_reply: Optional[QNetworkReply] = None self._image = QImage() self._image_rect = QRect() diff --git a/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml index 7fce1478a15..13ba2f75fef 100644 --- a/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml +++ b/plugins/UM3NetworkPrinting/resources/qml/PrinterVideoStream.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Ultimaker B.V. +// Copyright (c) 2023 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 @@ -6,7 +6,7 @@ import UM 1.3 as UM import Cura 1.0 as Cura Item { - property var cameraUrl: ""; + property string cameraUrl: ""; Rectangle { anchors.fill:parent; @@ -34,22 +34,29 @@ Item { Cura.NetworkMJPGImage { id: cameraImage - anchors.horizontalCenter: parent.horizontalCenter; - anchors.verticalCenter: parent.verticalCenter; - height: Math.round((imageHeight === 0 ? 600 * screenScaleFactor : imageHeight) * width / imageWidth); + anchors.horizontalCenter: parent.horizontalCenter + anchors.verticalCenter: parent.verticalCenter + + readonly property real img_scale_factor: { + if (imageWidth > maximumWidth || imageHeight > maximumHeight) { + return Math.min(maximumWidth / imageWidth, maximumHeight / imageHeight); + } + return 1.0; + } + + width: imageWidth === 0 ? 800 * screenScaleFactor : imageWidth * img_scale_factor + height: imageHeight === 0 ? 600 * screenScaleFactor : imageHeight * img_scale_factor + onVisibleChanged: { + if (cameraUrl === "") return; + if (visible) { - if (cameraUrl != "") { - start(); - } + start(); } else { - if (cameraUrl != "") { - stop(); - } + stop(); } } source: cameraUrl - width: Math.min(imageWidth === 0 ? 800 * screenScaleFactor : imageWidth, maximumWidth); z: 1 } From 6899cb521c011808694ffb54041016b08096f89b Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 19 Oct 2023 15:39:44 +0200 Subject: [PATCH 027/121] Fix translations. Given that we're still in negotiation with the new translation service after our trial period ran out, we've sadly had to rely on machine translations for these. Czech was missing the new Gradual Flow settings, and German had an unrelated setting description somehow end up as a label for another. a late part of CURA-10994 --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 20 ++++++++++---------- resources/i18n/de_DE/fdmprinter.def.json.po | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 45709a70ac8..7f25e8b1ba1 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -5466,43 +5466,43 @@ msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vn msgctxt "gradual_flow_enabled label" msgid "Gradual flow enabled" -msgstr "" +msgstr "Postupné změny průtoku povoleny" msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" +msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." msgctxt "max_flow_acceleration label" msgid "Gradual flow max acceleration" -msgstr "" +msgstr "Maximální zrychlení postupných změn průtoku" msgctxt "max_flow_acceleration description" msgid "Maximum acceleration for gradual flow changes" -msgstr "" +msgstr "Maximální zrychlení pro postupné změny průtoku" msgctxt "layer_0_max_flow_acceleration label" msgid "Initial layer max flow acceleration" -msgstr "" +msgstr "Maximální zrychlení průtoku pro první vrstvu" msgctxt "layer_0_max_flow_acceleration description" msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" +msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" msgctxt "gradual_flow_discretisation_step_size label" msgid "Gradual flow discretisation step size" -msgstr "" +msgstr "Velikost kroku diskretizace postupné změny průtoku" msgctxt "gradual_flow_discretisation_step_size description" msgid "Duration of each step in the gradual flow change" -msgstr "" +msgstr "Doba trvání každého kroku v postupné změně průtoku" msgctxt "reset_flow_duration label" msgid "Reset flow duration" -msgstr "" +msgstr "Doba trvání resetování průtoku" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" +msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index a418201de8e..e62349d80a5 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -3870,7 +3870,7 @@ msgstr "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich di msgctxt "brim_inside_margin label" msgid "Brim Inside Avoid Margin" -msgstr "Abstand zur Vermeidung des inneren Brim-Elements" +msgstr "Abstand zur Vermeidung des inneren Brims" msgctxt "brim_inside_margin description" msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." @@ -3878,7 +3878,7 @@ msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird be msgctxt "brim_smart_ordering label" msgid "Smart Brim" -msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des oberen bzw. unteren Standardmusters gefüllt. Dies hilft, ruckartige Bewegungen zu vermeiden." +msgstr "Intelligente Krempe" msgctxt "brim_smart_ordering description" msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." From 1949d315e360d715925146e96c05a48e9c407aac Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 19 Oct 2023 16:02:08 +0200 Subject: [PATCH 028/121] Minor auto-arrange improvements CURA-10403 --- cura/Arranging/Nest2DArrange.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index 68ab5f75da7..38b38d77dfd 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -49,8 +49,9 @@ def __init__(self, def findNodePlacement(self) -> Tuple[bool, List[Item]]: spacing = int(1.5 * self._factor) # 1.5mm spacing. - machine_width = self._build_volume.getWidth() - machine_depth = self._build_volume.getDepth() + edge_disallowed_size = self._build_volume.getEdgeDisallowedSize() + machine_width = self._build_volume.getWidth() - (edge_disallowed_size * 2) + machine_depth = self._build_volume.getDepth() - (edge_disallowed_size * 2) build_plate_bounding_box = Box(int(machine_width * self._factor), int(machine_depth * self._factor)) if self._fixed_nodes is None: @@ -112,7 +113,7 @@ def findNodePlacement(self) -> Tuple[bool, List[Item]]: config = NfpConfig() config.accuracy = 1.0 - config.alignment = NfpConfig.Alignment.DONT_ALIGN + config.alignment = NfpConfig.Alignment.CENTER if self._lock_rotation: config.rotations = [0.0] From 1509e2798387c1d2ac6c3dfc0d4a41a9132426c0 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 19 Oct 2023 16:03:14 +0200 Subject: [PATCH 029/121] Removed unused variable CURA-10403 --- cura/Arranging/Nest2DArrange.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index 38b38d77dfd..089d0171cd4 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -81,7 +81,6 @@ def findNodePlacement(self) -> Tuple[bool, List[Item]]: ], numpy.float32)) disallowed_areas = self._build_volume.getDisallowedAreas() - num_disallowed_areas_added = 0 for area in disallowed_areas: converted_points = [] @@ -96,7 +95,6 @@ def findNodePlacement(self) -> Tuple[bool, List[Item]]: disallowed_area = Item(converted_points) disallowed_area.markAsDisallowedAreaInBin(0) node_items.append(disallowed_area) - num_disallowed_areas_added += 1 for node in self._fixed_nodes: converted_points = [] @@ -109,7 +107,6 @@ def findNodePlacement(self) -> Tuple[bool, List[Item]]: item = Item(converted_points) item.markAsFixedInBin(0) node_items.append(item) - num_disallowed_areas_added += 1 config = NfpConfig() config.accuracy = 1.0 From e121d2fa80c0d4e0e09f367755c266e5a4394f84 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 19 Oct 2023 16:04:59 +0200 Subject: [PATCH 030/121] Translations: We use 'Brim' everywhere else in German. late part of CURA-10994 --- resources/i18n/de_DE/fdmprinter.def.json.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index e62349d80a5..089b58c0c02 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -3878,7 +3878,7 @@ msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird be msgctxt "brim_smart_ordering label" msgid "Smart Brim" -msgstr "Intelligente Krempe" +msgstr "Intelligente Brim" msgctxt "brim_smart_ordering description" msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." From 0d0375d5e0bf49bbdc5b11617212fe6b124bbc25 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 19 Oct 2023 16:36:19 +0200 Subject: [PATCH 031/121] Retry auto-arrange with a few different strategies CURA-10403 --- cura/Arranging/Nest2DArrange.py | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index 089d0171cd4..aa6f2af3198 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -108,18 +108,24 @@ def findNodePlacement(self) -> Tuple[bool, List[Item]]: item.markAsFixedInBin(0) node_items.append(item) - config = NfpConfig() - config.accuracy = 1.0 - config.alignment = NfpConfig.Alignment.CENTER - if self._lock_rotation: - config.rotations = [0.0] + tried_strategies = [NfpConfig.Alignment.CENTER] * 3 + [NfpConfig.Alignment.BOTTOM_LEFT] * 3 + found_solution_for_all = False + while not found_solution_for_all and len(tried_strategies) > 0: + config = NfpConfig() + config.accuracy = 1.0 + config.alignment = NfpConfig.Alignment.CENTER + config.starting_point = tried_strategies[0] + tried_strategies = tried_strategies[1:] - num_bins = nest(node_items, build_plate_bounding_box, spacing, config) + if self._lock_rotation: + config.rotations = [0.0] - # Strip the fixed items (previously placed) and the disallowed areas from the results again. - node_items = list(filter(lambda item: not item.isFixed(), node_items)) + num_bins = nest(node_items, build_plate_bounding_box, spacing, config) - found_solution_for_all = num_bins == 1 + # Strip the fixed items (previously placed) and the disallowed areas from the results again. + node_items = list(filter(lambda item: not item.isFixed(), node_items)) + + found_solution_for_all = num_bins == 1 return found_solution_for_all, node_items From 6f1adaad4345f1c3b4839d4a757e1a93ab2dd003 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 15:48:28 +0200 Subject: [PATCH 032/121] Make Conan/Python installs available for whole project and not just the AboutDialog Generation of dependency list now happens in Also cleaned up the AboutDialog.qml CURA-10561 --- .github/workflows/linux.yml | 20 +- .github/workflows/macos.yml | 20 +- .github/workflows/windows.yml | 20 +- .gitignore | 1 - AboutDialogVersionsList.qml.jinja | 61 ----- CuraVersion.py.jinja | 5 +- conanfile.py | 135 ++--------- cura/ApplicationMetadata.py | 32 ++- cura/CuraApplication.py | 18 +- resources/qml/Dialogs/AboutDialog.qml | 330 +++++++++++++++----------- 10 files changed, 280 insertions(+), 362 deletions(-) delete mode 100644 AboutDialogVersionsList.qml.jinja diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 719a07250cb..1830a023c43 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -155,7 +155,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json" + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING - name: Upload the Package(s) if: always() @@ -206,12 +206,7 @@ jobs: import json from pathlib import Path - conan_install_info_path = Path("cura_inst/conan_install_info.json") - conan_info = {"installed": []} - if os.path.exists(conan_install_info_path): - with open(conan_install_info_path, "r") as f: - conan_info = json.load(f) - sorted_deps = sorted([dep["recipe"]["id"].replace('#', r' rev: ') for dep in conan_info["installed"]]) + from cura.CuraVersion import ConanInstalls summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" @@ -223,14 +218,17 @@ jobs: f.write(content) f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") - for dep in sorted_deps: - f.writelines(f"`{dep}`\n") + for dep_name, dep_info in ConanDependencies.items(): + f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n") - name: Summarize the used Python modules shell: python run: | import os import pkg_resources + + from cura.CuraVersion import ConanDependencies + summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" if os.path.exists(summary_env): @@ -240,8 +238,8 @@ jobs: with open(summary_env, "w") as f: f.write(content) f.writelines("## Python modules:\n") - for package in pkg_resources.working_set: - f.writelines(f"`{package.key}/{package.version}`\n") + for dep_name, dep_info in ConanDependencies.items(): + f.writelines(f"`{dep_name} {dep_info["version"]}`\n") - name: Create the Linux AppImage (Bash) run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 01a64f5180a..b8ade8f4dae 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -155,7 +155,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json" + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING" - name: Upload the Package(s) if: ${{ inputs.operating_system != 'self-hosted' }} @@ -210,12 +210,7 @@ jobs: import json from pathlib import Path - conan_install_info_path = Path("cura_inst/conan_install_info.json") - conan_info = {"installed": []} - if os.path.exists(conan_install_info_path): - with open(conan_install_info_path, "r") as f: - conan_info = json.load(f) - sorted_deps = sorted([dep["recipe"]["id"].replace('#', r' rev: ') for dep in conan_info["installed"]]) + from cura.CuraVersion import ConanInstalls summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" @@ -227,14 +222,17 @@ jobs: f.write(content) f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") - for dep in sorted_deps: - f.writelines(f"`{dep}`\n") + for dep_name, dep_info in ConanDependencies.items(): + f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n") - name: Summarize the used Python modules shell: python run: | import os import pkg_resources + + from cura.CuraVersion import PythonInstalls + summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" if os.path.exists(summary_env): @@ -244,8 +242,8 @@ jobs: with open(summary_env, "w") as f: f.write(content) f.writelines("## Python modules:\n") - for package in pkg_resources.working_set: - f.writelines(f"`{package.key}/{package.version}`\n") + for dep_name, dep_info in ConanDependencies.items(): + f.writelines(f"`{dep_name} {dep_info["version"]}`\n") - name: Create the Macos dmg (Bash) run: python ../cura_inst/packaging/MacOS/build_macos.py --source_path ../cura_inst --dist_path . --cura_conan_version $CURA_CONAN_VERSION --filename "${{ steps.filename.outputs.INSTALLER_FILENAME }}" --build_dmg --build_pkg --app_name "$CURA_APP_NAME" diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9c9775cae77..067d811e9ff 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -122,7 +122,7 @@ jobs: run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - name: Create the Packages (Powershell) - run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING --json "cura_inst/conan_install_info.json" + run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING - name: Upload the Package(s) if: always() @@ -169,12 +169,7 @@ jobs: import json from pathlib import Path - conan_install_info_path = Path("cura_inst/conan_install_info.json") - conan_info = {"installed": []} - if os.path.exists(conan_install_info_path): - with open(conan_install_info_path, "r") as f: - conan_info = json.load(f) - sorted_deps = sorted([dep["recipe"]["id"].replace('#', r' rev: ') for dep in conan_info["installed"]]) + from cura.CuraVersion import ConanInstalls summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" @@ -186,14 +181,17 @@ jobs: f.write(content) f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") - for dep in sorted_deps: - f.writelines(f"`{dep}`\n") + for dep_name, dep_info in ConanDependencies.items(): + f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n") - name: Summarize the used Python modules shell: python run: | import os import pkg_resources + + from cura.CuraVersion import PythonInstalls + summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" if os.path.exists(summary_env): @@ -203,8 +201,8 @@ jobs: with open(summary_env, "w") as f: f.write(content) f.writelines("## Python modules:\n") - for package in pkg_resources.working_set: - f.writelines(f"`{package.key}/{package.version}`\n") + for dep_name, dep_info in ConanDependencies.items(): + f.writelines(f"`{dep_name} {dep_info["version"]}`\n") - name: Create PFX certificate from BASE64_PFX_CONTENT secret id: create-pfx diff --git a/.gitignore b/.gitignore index f1a72d342eb..0290869b41e 100644 --- a/.gitignore +++ b/.gitignore @@ -101,7 +101,6 @@ graph_info.json Ultimaker-Cura.spec .run/ /printer-linter/src/printerlinter.egg-info/ -/resources/qml/Dialogs/AboutDialogVersionsList.qml /plugins/CuraEngineGradualFlow /resources/bundled_packages/bundled_*.json curaengine_plugin_gradual_flow diff --git a/AboutDialogVersionsList.qml.jinja b/AboutDialogVersionsList.qml.jinja deleted file mode 100644 index 05034696602..00000000000 --- a/AboutDialogVersionsList.qml.jinja +++ /dev/null @@ -1,61 +0,0 @@ -import QtQuick 2.2 -import QtQuick.Controls 2.9 - -import UM 1.6 as UM -import Cura 1.5 as Cura - - -ListView -{ - id: projectBuildInfoList - visible: false - anchors.top: creditsNotes.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - width: parent.width - height: base.height - y - (2 * UM.Theme.getSize("default_margin").height + closeButton.height) - - ScrollBar.vertical: UM.ScrollBar - { - id: projectBuildInfoListScrollBar - } - - delegate: Row - { - spacing: UM.Theme.getSize("narrow_margin").width - UM.Label - { - text: (model.name) - width: (projectBuildInfoList.width* 0.4) | 0 - elide: Text.ElideRight - } - UM.Label - { - text: (model.version) - width: (projectBuildInfoList.width *0.6) | 0 - elide: Text.ElideRight - } - - } - model: ListModel - { - id: developerInfo - } - Component.onCompleted: - { - var conan_installs = {{ conan_installs }}; - var python_installs = {{ python_installs }}; - developerInfo.append({ name : "

Conan Installs

", version : '' }); - for (var n in conan_installs) - { - developerInfo.append({ name : conan_installs[n][0], version : conan_installs[n][1] }); - } - developerInfo.append({ name : '', version : '' }); - developerInfo.append({ name : "

Python Installs

", version : '' }); - for (var n in python_installs) - { - developerInfo.append({ name : python_installs[n][0], version : python_installs[n][1] }); - } - - } -} - diff --git a/CuraVersion.py.jinja b/CuraVersion.py.jinja index 87ef7d205d9..515293b8af0 100644 --- a/CuraVersion.py.jinja +++ b/CuraVersion.py.jinja @@ -1,4 +1,4 @@ -# Copyright (c) 2022 UltiMaker +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. CuraAppName = "{{ cura_app_name }}" @@ -12,3 +12,6 @@ CuraCloudAccountAPIRoot = "{{ cura_cloud_account_api_root }}" CuraMarketplaceRoot = "{{ cura_marketplace_root }}" CuraDigitalFactoryURL = "{{ cura_digital_factory_url }}" CuraLatestURL = "{{ cura_latest_url }}" + +ConanInstalls = {{ conan_installs }} +PythonInstalls = {{ python_installs }} diff --git a/conanfile.py b/conanfile.py index 4c6138656b2..fc56d5033c8 100644 --- a/conanfile.py +++ b/conanfile.py @@ -137,18 +137,21 @@ def _pyinstaller_spec_arch(self): return "'x86_64'" return "None" - def _generate_about_versions(self, location): - with open(os.path.join(self.recipe_folder, "AboutDialogVersionsList.qml.jinja"), "r") as f: - cura_version_py = Template(f.read()) + def _conan_installs(self): + conan_installs = {} - conan_installs = [] - python_installs = [] + # list of conan installs + for dependency in self.dependencies.host.values(): + conan_installs[dependency.ref.name] = { + "version": dependency.ref.version, + "revision": dependency.ref.revision + } + return conan_installs - # list of conan installs - for _, dependency in self.dependencies.host.items(): - conan_installs.append([dependency.ref.name,dependency.ref.version]) + def _python_installs(self): + python_installs = {} - #list of python installs + # list of python installs outer = '"' if self.settings.os == "Windows" else "'" inner = "'" if self.settings.os == "Windows" else '"' python_ins_cmd = f"python -c {outer}import pkg_resources; print({inner};{inner}.join([(s.key+{inner},{inner}+ s.version) for s in pkg_resources.working_set])){outer}" @@ -157,16 +160,12 @@ def _generate_about_versions(self, location): self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer) packages = str(buffer.getvalue()).split("-----------------\n") - package = packages[1].strip('\r\n').split(";") - for pack in package: - python_installs.append(pack.split(",")) - - with open(os.path.join(location, "AboutDialogVersionsList.qml"), "w") as f: - f.write(cura_version_py.render( - conan_installs = conan_installs, - python_installs = python_installs - )) + packages = packages[1].strip('\r\n').split(";") + for package in packages: + name, version = package.split(",") + python_installs[name] = {"version": version} + return python_installs def _generate_cura_version(self, location): with open(os.path.join(self.recipe_folder, "CuraVersion.py.jinja"), "r") as f: @@ -192,89 +191,9 @@ def _generate_cura_version(self, location): cura_cloud_account_api_root = self.conan_data["urls"][self._urls]["cloud_account_api_root"], cura_marketplace_root = self.conan_data["urls"][self._urls]["marketplace_root"], cura_digital_factory_url = self.conan_data["urls"][self._urls]["digital_factory_url"], - cura_latest_url = self.conan_data["urls"][self._urls]["cura_latest_url"])) - - def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file): - pyinstaller_metadata = self.conan_data["pyinstaller"] - datas = [(str(self._base_dir.joinpath("conan_install_info.json")), ".")] - for data in pyinstaller_metadata["datas"].values(): - if not self.options.internal and data.get("internal", False): - continue - - if "package" in data: # get the paths from conan package - if data["package"] == self.name: - if self.in_local_cache: - src_path = os.path.join(self.package_folder, data["src"]) - else: - src_path = os.path.join(self.source_folder, data["src"]) - else: - src_path = os.path.join(self.deps_cpp_info[data["package"]].rootpath, data["src"]) - elif "root" in data: # get the paths relative from the install folder - src_path = os.path.join(self.install_folder, data["root"], data["src"]) - else: - continue - if Path(src_path).exists(): - datas.append((str(src_path), data["dst"])) - - binaries = [] - for binary in pyinstaller_metadata["binaries"].values(): - if "package" in binary: # get the paths from conan package - src_path = os.path.join(self.deps_cpp_info[binary["package"]].rootpath, binary["src"]) - elif "root" in binary: # get the paths relative from the sourcefolder - src_path = str(self.source_path.joinpath(binary["root"], binary["src"])) - if self.settings.os == "Windows": - src_path = src_path.replace("\\", "\\\\") - else: - continue - if not Path(src_path).exists(): - self.output.warning(f"Source path for binary {binary['binary']} does not exist") - continue - - for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"): - binaries.append((str(bin), binary["dst"])) - for bin in Path(src_path).glob(binary["binary"]): - binaries.append((str(bin), binary["dst"])) - - # Make sure all Conan dependencies which are shared are added to the binary list for pyinstaller - for _, dependency in self.dependencies.host.items(): - for bin_paths in dependency.cpp_info.bindirs: - binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")]) - for lib_paths in dependency.cpp_info.libdirs: - binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.so*")]) - binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.dylib*")]) - - # Copy dynamic libs from lib path - binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.dylib*")]) - binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.so*")]) - - # Collect all dll's from PyQt6 and place them in the root - binaries.extend([(f"{p}", ".") for p in Path(self._site_packages, "PyQt6", "Qt6").glob("**/*.dll")]) - - with open(os.path.join(self.recipe_folder, "UltiMaker-Cura.spec.jinja"), "r") as f: - pyinstaller = Template(f.read()) - - version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) - cura_version = Version(version) - - with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f: - f.write(pyinstaller.render( - name = str(self.options.display_name).replace(" ", "-"), - display_name = self._app_name, - entrypoint = entrypoint_location, - datas = datas, - binaries = binaries, - venv_script_path = str(self._script_dir), - hiddenimports = pyinstaller_metadata["hiddenimports"], - collect_all = pyinstaller_metadata["collect_all"], - icon = icon_path, - entitlements_file = entitlements_file, - osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None", - upx = str(self.settings.os == "Windows"), - strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now - target_arch = self._pyinstaller_spec_arch, - macos = self.settings.os == "Macos", - version = f"'{version}'", - short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", + cura_latest_url=self.conan_data["urls"][self._urls]["cura_latest_url"], + conan_installs=self._conan_installs(), + python_installs=self._python_installs(), )) def export_sources(self): @@ -346,7 +265,6 @@ def generate(self): vr.generate() self._generate_cura_version(os.path.join(self.source_folder, "cura")) - self._generate_about_versions(os.path.join(self.source_folder, "resources","qml", "Dialogs")) if not self.in_local_cache: # Copy CuraEngine.exe to bindirs of Virtual Python Environment @@ -387,12 +305,6 @@ def generate(self): copy(self, "*", cura_private_data.resdirs[0], str(self._share_dir.joinpath("cura"))) if self.options.devtools: - entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements")) - self._generate_pyinstaller_spec(location = self.generators_folder, - entrypoint_location = "'{}'".format(os.path.join(self.source_folder, self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"), - icon_path = "'{}'".format(os.path.join(self.source_folder, "packaging", self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), - entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") - # Update the po and pot files if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type=str): vb = VirtualBuildEnv(self) @@ -451,13 +363,6 @@ def deploy(self): save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env) self._generate_cura_version(os.path.join(self._site_packages, "cura")) - self._generate_about_versions(str(self._share_dir.joinpath("cura", "resources", "qml", "Dialogs"))) - - entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements")) - self._generate_pyinstaller_spec(location = self._base_dir, - entrypoint_location = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.bindirs[0], self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"), - icon_path = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.resdirs[2], self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), - entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") def package(self): copy(self, "cura_app.py", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.bindirs[0])) diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index 96cfa6c64d2..9d399e7ad85 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022 UltiMaker +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. # --------- @@ -69,13 +69,25 @@ except ImportError: CuraAppDisplayName = DEFAULT_CURA_DISPLAY_NAME -DEPENDENCY_INFO = {} + try: - from pathlib import Path - conan_install_info = Path(__file__).parent.parent.joinpath("conan_install_info.json") - if conan_install_info.exists(): - import json - with open(conan_install_info, "r") as f: - DEPENDENCY_INFO = json.loads(f.read()) -except: - pass + from cura.CuraVersion import ConanInstalls + + if type(ConanInstalls) == dict: + CONAN_INSTALLS = ConanInstalls + else: + CONAN_INSTALLS = {} + +except ImportError: + CONAN_INSTALLS = {} + +try: + from cura.CuraVersion import PythonInstalls + + if type(PythonInstalls) == dict: + PYTHON_INSTALLS = PythonInstalls + else: + PYTHON_INSTALLS = {} + +except ImportError: + PYTHON_INSTALLS = {} diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index e075fe92f58..b51fbd9d821 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -269,6 +269,9 @@ def __init__(self, *args, **kwargs): CentralFileStorage.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion) Resources.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion) + self._conan_installs = ApplicationMetadata.CONAN_INSTALLS + self._python_installs = ApplicationMetadata.PYTHON_INSTALLS + @pyqtProperty(str, constant=True) def ultimakerCloudApiRootUrl(self) -> str: return UltimakerCloudConstants.CuraCloudAPIRoot @@ -851,11 +854,8 @@ def run(self): self._log_hardware_info() - if len(ApplicationMetadata.DEPENDENCY_INFO) > 0: - Logger.debug("Using Conan managed dependencies: " + ", ".join( - [dep["recipe"]["id"] for dep in ApplicationMetadata.DEPENDENCY_INFO["installed"] if dep["recipe"]["version"] != "latest"])) - else: - Logger.warning("Could not find conan_install_info.json") + Logger.debug("Using conan dependencies: {}", str(self.conanInstalls)) + Logger.debug("Using python dependencies: {}", str(self.pythonInstalls)) Logger.log("i", "Initializing machine error checker") self._machine_error_checker = MachineErrorChecker(self) @@ -2130,3 +2130,11 @@ def getInstance(cls, *args, **kwargs) -> "CuraApplication": @pyqtProperty(bool, constant=True) def isEnterprise(self) -> bool: return ApplicationMetadata.IsEnterpriseVersion + + @pyqtProperty("QVariant", constant=True) + def conanInstalls(self) -> Dict[str, Dict[str, str]]: + return self._conan_installs + + @pyqtProperty("QVariant", constant=True) + def pythonInstalls(self) -> Dict[str, Dict[str, str]]: + return self._python_installs diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index b0cd9d2ad34..bbd7c45b8d3 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -1,19 +1,22 @@ -// Copyright (c) 2022 UltiMaker +// Copyright (c) 2023 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 import QtQuick.Controls 2.9 +import QtQuick.Layouts 1.3 import UM 1.6 as UM -import Cura 1.5 as Cura +import Cura 1.6 as Cura UM.Dialog { id: base - //: About dialog title title: catalog.i18nc("@title:window The argument is the application name.", "About %1").arg(CuraApplication.applicationDisplayName) + // Flag to toggle between main dependencies information and extensive dependencies information + property bool showDefaultDependencies: true + minimumWidth: 500 * screenScaleFactor minimumHeight: 700 * screenScaleFactor width: minimumWidth @@ -21,186 +24,241 @@ UM.Dialog backgroundColor: UM.Theme.getColor("main_background") - - Rectangle + headerComponent: Rectangle { - id: header - width: parent.width + 2 * margin // margin from Dialog.qml - height: childrenRect.height + topPadding - - anchors.top: parent.top - anchors.topMargin: -margin - anchors.horizontalCenter: parent.horizontalCenter - - property real topPadding: UM.Theme.getSize("wide_margin").height - + width: parent.width + height: logo.height + 2 * UM.Theme.getSize("wide_margin").height color: UM.Theme.getColor("main_window_header_background") Image { id: logo - width: (base.minimumWidth * 0.85) | 0 - height: (width * (UM.Theme.getSize("logo").height / UM.Theme.getSize("logo").width)) | 0 + width: Math.floor(base.width * 0.85) + height: Math.floor(width * UM.Theme.getSize("logo").height / UM.Theme.getSize("logo").width) source: UM.Theme.getImage("logo") - sourceSize.width: width - sourceSize.height: height fillMode: Image.PreserveAspectFit - anchors.top: parent.top - anchors.topMargin: parent.topPadding - anchors.horizontalCenter: parent.horizontalCenter + anchors.centerIn: parent - UM.I18nCatalog{id: catalog; name: "cura"} - MouseArea - { - anchors.fill: parent - onClicked: - { - projectsList.visible = !projectsList.visible; - projectBuildInfoList.visible = !projectBuildInfoList.visible; - } - } + UM.I18nCatalog{ id: catalog; name: "cura" } } UM.Label { id: version - text: catalog.i18nc("@label","version: %1").arg(UM.Application.version) font: UM.Theme.getFont("large_bold") color: UM.Theme.getColor("button_text") anchors.right : logo.right anchors.top: logo.bottom - anchors.topMargin: (UM.Theme.getSize("default_margin").height / 2) | 0 + } + + MouseArea + { + anchors.fill: parent + onDoubleClicked: showDefaultDependencies = !showDefaultDependencies } } - UM.Label + // Reusable component to display a dependency + readonly property Component dependency_row: RowLayout { - id: description - width: parent.width + spacing: UM.Theme.getSize("narrow_margin").width - //: About dialog application description - text: catalog.i18nc("@label","End-to-end solution for fused filament 3D printing.") - font: UM.Theme.getFont("system") - wrapMode: Text.WordWrap - anchors.top: header.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - } + UM.Label + { + text: { + if (typeof(url) !== "undefined" && url !== "") { + return "" + name + ""; + } else { + return name; + } + } + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 2 + elide: Text.ElideRight + } - UM.Label - { - id: creditsNotes - width: parent.width + UM.Label + { + text: description + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 3 + elide: Text.ElideRight + } + + UM.Label + { + text: license + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 2 + elide: Text.ElideRight + } - //: About dialog application author note - text: catalog.i18nc("@info:credit","Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:") - font: UM.Theme.getFont("system") - wrapMode: Text.WordWrap - anchors.top: description.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height + UM.Label + { + text: version + visible: text !== "" + Layout.fillWidth: true + Layout.preferredWidth: 2 + elide: Text.ElideRight + } } - ListView + Flickable { - id: projectsList - anchors.top: creditsNotes.bottom - anchors.topMargin: UM.Theme.getSize("default_margin").height - width: parent.width - height: base.height - y - (2 * UM.Theme.getSize("default_margin").height + closeButton.height) - - ScrollBar.vertical: UM.ScrollBar - { - id: projectsListScrollBar + anchors.fill: parent + ScrollBar.vertical: UM.ScrollBar { + visible: contentHeight > height } + contentHeight: content.height + clip: true - delegate: Row + Column { + id: content spacing: UM.Theme.getSize("narrow_margin").width + width: parent.width + UM.Label { - text: "%2".arg(model.url).arg(model.name) - width: (projectsList.width * 0.25) | 0 - elide: Text.ElideRight - onLinkActivated: Qt.openUrlExternally(link) + text: catalog.i18nc("@label", "End-to-end solution for fused filament 3D printing.") + font: UM.Theme.getFont("system") + wrapMode: Text.WordWrap } + UM.Label { - text: model.description - elide: Text.ElideRight - width: ((projectsList.width * 0.6) | 0) - parent.spacing * 2 - projectsListScrollBar.width + text: catalog.i18nc("@info:credit", "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:") + font: UM.Theme.getFont("system") + wrapMode: Text.WordWrap + } + + Column + { + visible: showDefaultDependencies + width: parent.width + + Repeater + { + width: parent.width + + delegate: Loader { + sourceComponent: dependency_row + width: parent.width + property string name: model.name + property string description: model.description + property string license: model.license + property string url: model.url + } + + model: ListModel + { + id: projectsModel + } + Component.onCompleted: + { + //Do NOT add dependencies of our dependencies here, nor CI-dependencies! + //UltiMaker's own projects and forks. + projectsModel.append({ name: "Cura", description: catalog.i18nc("@label Description for application component", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); + projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label Description for application component", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); + projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label Description for application component", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); + projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label Description for application component", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); + projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label Description for application component", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); + projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label Description for application component", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); + projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label Description for application component", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); + projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label Description for application component", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); + + //Direct dependencies of the front-end. + projectsModel.append({ name: "Python", description: catalog.i18nc("@label Description for application dependency", "Programming language"), license: "Python", url: "http://python.org/" }); + projectsModel.append({ name: "Qt6", description: catalog.i18nc("@label Description for application dependency", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); + projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label Description for application dependency", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); + projectsModel.append({ name: "SIP", description: catalog.i18nc("@label Description for application dependency", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); + projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label Description for application dependency", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); + projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); + + //CuraEngine's dependencies. + projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label Description for application dependency", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); + projectsModel.append({ name: "RapidJSON", description: catalog.i18nc("@label Description for application dependency", "JSON parser"), license: "MIT", url: "https://rapidjson.org/" }); + projectsModel.append({ name: "STB", description: catalog.i18nc("@label Description for application dependency", "Utility functions, including an image loader"), license: "Public Domain", url: "https://github.com/nothings/stb" }); + projectsModel.append({ name: "Boost", description: catalog.i18nc("@label Description for application dependency", "Utility library, including Voronoi generation"), license: "Boost", url: "https://www.boost.org/" }); + + //Python modules. + projectsModel.append({ name: "Certifi", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); + projectsModel.append({ name: "Cryptography", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); + projectsModel.append({ name: "Future", description: catalog.i18nc("@label Description for application dependency", "Compatibility between Python 2 and 3"), license: "MIT", url: "https://python-future.org/" }); + projectsModel.append({ name: "keyring", description: catalog.i18nc("@label Description for application dependency", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); + projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label Description for application dependency", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); + projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label Description for application dependency", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); + projectsModel.append({ name: "PyClipper", description: catalog.i18nc("@label Description for application dependency", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); + projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label Description for application dependency", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); + projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label Description for application dependency", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); + projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label Description for application dependency", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); + projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label Description for application dependency", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); + projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label Description for application dependency", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); + + //Building/packaging. + projectsModel.append({ name: "CMake", description: catalog.i18nc("@label Description for development tool", "Universal build system configuration"), license: "BSD 3-Clause", url: "https://cmake.org/" }); + projectsModel.append({ name: "Conan", description: catalog.i18nc("@label Description for development tool", "Dependency and package manager"), license: "MIT", url: "https://conan.io/" }); + projectsModel.append({ name: "Pyinstaller", description: catalog.i18nc("@label Description for development tool", "Packaging Python-applications"), license: "GPLv2", url: "https://pyinstaller.org/" }); + projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label Description for development tool", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); + projectsModel.append({ name: "NSIS", description: catalog.i18nc("@label Description for development tool", "Generating Windows installers"), license: "Zlib", url: "https://nsis.sourceforge.io/" }); + } + } } + UM.Label { - text: model.license - elide: Text.ElideRight - width: (projectsList.width * 0.15) | 0 + visible: !showDefaultDependencies + text: "Conan Installs" + font: UM.Theme.getFont("large_bold") } - } - model: ListModel - { - id: projectsModel - } - Component.onCompleted: - { - //Do NOT add dependencies of our dependencies here, nor CI-dependencies! - //UltiMaker's own projects and forks. - projectsModel.append({ name: "Cura", description: catalog.i18nc("@label Description for application component", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); - projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label Description for application component", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); - projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label Description for application component", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); - projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label Description for application component", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); - projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label Description for application component", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); - projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label Description for application component", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); - projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label Description for application component", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); - projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label Description for application component", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); - - //Direct dependencies of the front-end. - projectsModel.append({ name: "Python", description: catalog.i18nc("@label Description for application dependency", "Programming language"), license: "Python", url: "http://python.org/" }); - projectsModel.append({ name: "Qt6", description: catalog.i18nc("@label Description for application dependency", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); - projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label Description for application dependency", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); - projectsModel.append({ name: "SIP", description: catalog.i18nc("@label Description for application dependency", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); - projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label Description for application dependency", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); - projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); - - //CuraEngine's dependencies. - projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label Description for application dependency", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); - projectsModel.append({ name: "RapidJSON", description: catalog.i18nc("@label Description for application dependency", "JSON parser"), license: "MIT", url: "https://rapidjson.org/" }); - projectsModel.append({ name: "STB", description: catalog.i18nc("@label Description for application dependency", "Utility functions, including an image loader"), license: "Public Domain", url: "https://github.com/nothings/stb" }); - projectsModel.append({ name: "Boost", description: catalog.i18nc("@label Description for application dependency", "Utility library, including Voronoi generation"), license: "Boost", url: "https://www.boost.org/" }); - - //Python modules. - projectsModel.append({ name: "Certifi", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); - projectsModel.append({ name: "Cryptography", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); - projectsModel.append({ name: "Future", description: catalog.i18nc("@label Description for application dependency", "Compatibility between Python 2 and 3"), license: "MIT", url: "https://python-future.org/" }); - projectsModel.append({ name: "keyring", description: catalog.i18nc("@label Description for application dependency", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); - projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label Description for application dependency", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); - projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label Description for application dependency", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); - projectsModel.append({ name: "PyClipper", description: catalog.i18nc("@label Description for application dependency", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); - projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label Description for application dependency", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); - projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label Description for application dependency", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); - projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label Description for application dependency", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); - projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label Description for application dependency", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); - projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label Description for application dependency", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); - - //Building/packaging. - projectsModel.append({ name: "CMake", description: catalog.i18nc("@label Description for development tool", "Universal build system configuration"), license: "BSD 3-Clause", url: "https://cmake.org/" }); - projectsModel.append({ name: "Conan", description: catalog.i18nc("@label Description for development tool", "Dependency and package manager"), license: "MIT", url: "https://conan.io/" }); - projectsModel.append({ name: "Pyinstaller", description: catalog.i18nc("@label Description for development tool", "Packaging Python-applications"), license: "GPLv2", url: "https://pyinstaller.org/" }); - projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label Description for development tool", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); - projectsModel.append({ name: "NSIS", description: catalog.i18nc("@label Description for development tool", "Generating Windows installers"), license: "Zlib", url: "https://nsis.sourceforge.io/" }); - } - } - AboutDialogVersionsList{ - id: projectBuildInfoList + Column + { + visible: !showDefaultDependencies + width: parent.width - } + Repeater + { + width: parent.width + model: Object.entries(CuraApplication.conanInstalls).map(function (item) { return { name: item[0], version: item[1].version } }) + delegate: Loader { + sourceComponent: dependency_row + width: parent.width + property string name: modelData.name + property string version: modelData.version + } + } + } + UM.Label + { + visible: !showDefaultDependencies + text: "Python Installs" + font: UM.Theme.getFont("large_bold") + } - onVisibleChanged: - { - projectsList.visible = true; - projectBuildInfoList.visible = false; + Column + { + width: parent.width + visible: !showDefaultDependencies + Repeater + { + delegate: Loader { + sourceComponent: dependency_row + width: parent.width + property string name: modelData.name + property string version: modelData.version + } + width: parent.width + model: Object.entries(CuraApplication.pythonInstalls).map(function (item) { return { name: item[0], version: item[1].version } }) + } + } + } } rightButtons: Cura.TertiaryButton From a588b8d44ab14ed1a1aa4f017421123a21869d70 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 18:48:55 +0200 Subject: [PATCH 033/121] Fix urls in about page CURA-10561 --- resources/qml/Dialogs/AboutDialog.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index bbd7c45b8d3..56789201966 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -77,6 +77,7 @@ UM.Dialog visible: text !== "" Layout.fillWidth: true Layout.preferredWidth: 2 + onLinkActivated: Qt.openUrlExternally(url) elide: Text.ElideRight } From cdc3f910d383a32a15cd618d1a61ce767163f8ee Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 18:50:52 +0200 Subject: [PATCH 034/121] Add basic makerbot writer CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 236 +++++++++++++++++++++++ plugins/MakerbotWriter/__init__.py | 28 +++ plugins/MakerbotWriter/plugin.json | 13 ++ 3 files changed, 277 insertions(+) create mode 100644 plugins/MakerbotWriter/MakerbotWriter.py create mode 100644 plugins/MakerbotWriter/__init__.py create mode 100644 plugins/MakerbotWriter/plugin.json diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py new file mode 100644 index 00000000000..521db04b5b8 --- /dev/null +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -0,0 +1,236 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from io import StringIO, BufferedIOBase +import json +from typing import cast, List, Optional, Dict +from zipfile import BadZipFile, ZipFile, ZIP_DEFLATED + +from PyQt6.QtCore import QBuffer + +from UM.Logger import Logger +from UM.Math.AxisAlignedBox import AxisAlignedBox +from UM.Mesh.MeshWriter import MeshWriter +from UM.PluginRegistry import PluginRegistry +from UM.Scene.SceneNode import SceneNode +from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator +from UM.i18n import i18nCatalog + +from cura.CuraApplication import CuraApplication +from cura.Snapshot import Snapshot +from cura.Utils.Threading import call_on_qt_thread +from cura.CuraVersion import ConanInstalls + +catalog = i18nCatalog("cura") + + +class MakerbotWriter(MeshWriter): + """A file writer that writes '.makerbot' files.""" + + def __init__(self) -> None: + super().__init__(add_to_recent_files=False) + + _PNG_FORMATS = [ + {"prefix": "isometric_thumbnail", "width": 120, "height": 120}, + {"prefix": "isometric_thumbnail", "width": 320, "height": 320}, + {"prefix": "isometric_thumbnail", "width": 640, "height": 640}, + {"prefix": "thumbnail", "width": 140, "height": 106}, + {"prefix": "thumbnail", "width": 212, "height": 300}, + {"prefix": "thumbnail", "width": 960, "height": 1460}, + {"prefix": "thumbnail", "width": 90, "height": 90}, + ] + _META_VERSION = "3.0.0" + _PRINT_NAME_MAP = { + "Makerbot Method": "fire_e", + "Makerbot Method X": "lava_f", + "Makerbot Method XL": "magma_10", + } + _EXTRUDER_NAME_MAP = { + "1XA": "mk14_hot", + "2XA": "mk14_hot_s", + "1C": "mk14_c", + "1A": "mk14", + "2A": "mk14_s", + } + + # must be called from the main thread because of OpenGL + @staticmethod + @call_on_qt_thread + def _createThumbnail(width: int, height: int) -> Optional[QBuffer]: + if not CuraApplication.getInstance().isVisible: + Logger.warning("Can't create snapshot when renderer not initialized.") + return + try: + snapshot = Snapshot.snapshot(width, height) + except: + Logger.logException("w", "Failed to create snapshot image") + return + + thumbnail_buffer = QBuffer() + thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) + + snapshot.save(thumbnail_buffer, "PNG") + + return thumbnail_buffer + + def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter.OutputMode.BinaryMode) -> bool: + if mode != MeshWriter.OutputMode.BinaryMode: + Logger.log("e", "MakerbotWriter does not support text mode.") + self.setInformation(catalog.i18nc("@error:not supported", "MakerbotWriter does not support text mode.")) + return False + + # The GCodeWriter plugin is bundled, so it must at least exist. (What happens if people disable that plugin?) + gcode_writer = PluginRegistry.getInstance().getPluginObject("GCodeWriter") + + if gcode_writer is None: + Logger.log("e", "Could not find the GCodeWriter plugin, is it disabled?.") + self.setInformation( + catalog.i18nc("@error:load", "Could not load GCodeWriter plugin. Try to re-enable the plugin.")) + return False + + gcode_writer = cast(MeshWriter, gcode_writer) + + gcode_text_io = StringIO() + success = gcode_writer.write(gcode_text_io, None) + + # TODO convert gcode_text_io to json + + # Writing the g-code failed. Then I can also not write the gzipped g-code. + if not success: + self.setInformation(gcode_writer.getInformation()) + return False + + metadata = self._getMeta(nodes) + + png_files = [] + for png_format in self._PNG_FORMATS: + width, height, prefix = png_format["width"], png_format["height"], png_format["prefix"] + thumbnail_buffer = self._createThumbnail(width, height) + if thumbnail_buffer is None: + Logger.warning(f"Could not create thumbnail of size {width}x{height}.") + continue + png_files.append({ + "file": f"{prefix}_{width}x{height}.png", + "data": thumbnail_buffer.data(), + }) + + try: + with ZipFile(stream, "w", compression=ZIP_DEFLATED) as zip_stream: + zip_stream.writestr("meta.json", json.dumps(metadata, indent=4)) + for png_file in png_files: + file, data = png_file["file"], png_file["data"] + zip_stream.writestr(file, data) + except (IOError, OSError, BadZipFile) as ex: + Logger.log("e", f"Could not write to (.makerbot) file because: '{ex}'.") + self.setInformation(catalog.i18nc("@error", "MakerbotWriter could not save to the designated path.")) + return False + + return True + + def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: + application = CuraApplication.getInstance() + machine_manager = application.getMachineManager() + global_stack = machine_manager.activeMachine + extruders = global_stack.extruderList + + nodes = [] + for root_node in root_nodes: + for node in DepthFirstIterator(root_node): + if not getattr(node, "_outside_buildarea", False): + if node.callDecoration( + "isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration( + "isNonThumbnailVisibleMesh"): + nodes.append(node) + + meta = dict() + + meta["bot_type"] = MakerbotWriter._PRINT_NAME_MAP.get((name := global_stack.name), name) + + bounds: Optional[AxisAlignedBox] = None + for node in nodes: + node_bounds = node.getBoundingBox() + if node_bounds is None: + continue + if bounds is None: + bounds = node_bounds + else: + bounds += node_bounds + + if bounds is not None: + meta["bounding_box"] = { + "x_min": bounds.left, + "x_max": bounds.right, + "y_min": bounds.back, + "y_max": bounds.front, + "z_min": bounds.bottom, + "z_max": bounds.top, + } + + material_bed_temperature = global_stack.getProperty("material_bed_temperature", "value") + meta["build_plane_temperature"] = material_bed_temperature + + print_information = application.getPrintInformation() + meta["commanded_duration_s"] = print_information.currentPrintTime.seconds + meta["duration_s"] = print_information.currentPrintTime.seconds + + material_lengths = list(map(meter_to_millimeter, print_information.materialLengths)) + meta["extrusion_distance_mm"] = material_lengths[0] + meta["extrusion_distances_mm"] = material_lengths + + meta["extrusion_mass_g"] = print_information.materialWeights[0] + meta["extrusion_masses_g"] = print_information.materialWeights + + meta["uuid"] = print_information.slice_uuid + + materials = [extruder.material.getMetaData().get("material") for extruder in extruders] + meta["material"] = materials[0] + meta["materials"] = materials + + materials_temps = [extruder.getProperty("default_material_print_temperature", "value") for extruder in + extruders] + meta["extruder_temperature"] = materials_temps[0] + meta["extruder_temperatures"] = materials_temps + + meta["model_counts"] = [{"count": 1, "name": node.getName()} for node in nodes] + + tool_types = [MakerbotWriter._EXTRUDER_NAME_MAP.get((name := extruder.variant.getName()), name) for extruder in + extruders] + meta["tool_type"] = tool_types[0] + meta["tool_types"] = tool_types + + meta["version"] = MakerbotWriter._META_VERSION + + meta["preferences"] = dict() + for node in nodes: + bound = node.getBoundingBox() + meta["preferences"][str(node.getName())] = { + "machineBounds": [bounds.right, bounds.back, bounds.left, bounds.front] if bounds is not None else None, + "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory, + } + + cura_engine_info = ConanInstalls.get("curaengine", {"version": "unknown", "revision": "unknown"}) + meta["curaengine_version"] = cura_engine_info["version"] + meta["curaengine_commit_hash"] = cura_engine_info["revision"] + + meta["makerbot_writer_version"] = self.getVersion() + # meta["makerbot_writer_commit_hash"] = self.getRevision() + + for name, package_info in ConanInstalls.items(): + if not name.startswith("curaengine_ "): + continue + meta[f"{name}_version"] = package_info["version"] + meta[f"{name}_commit_hash"] = package_info["revision"] + + # TODO add the following instructions + # num_tool_changes + # num_z_layers + # num_z_transitions + # platform_temperature + # total_commands + + return meta + + +def meter_to_millimeter(value: float) -> float: + """Converts a value in meters to millimeters.""" + return value * 1000.0 diff --git a/plugins/MakerbotWriter/__init__.py b/plugins/MakerbotWriter/__init__.py new file mode 100644 index 00000000000..ede2435c4ff --- /dev/null +++ b/plugins/MakerbotWriter/__init__.py @@ -0,0 +1,28 @@ +# Copyright (c) 2023 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.i18n import i18nCatalog + +from . import MakerbotWriter + +catalog = i18nCatalog("cura") + + +def getMetaData(): + file_extension = "makerbot" + return { + "mesh_writer": { + "output": [{ + "extension": file_extension, + "description": catalog.i18nc("@item:inlistbox", "Makerbot Printfile"), + "mime_type": "application/x-makerbot", + "mode": MakerbotWriter.MakerbotWriter.OutputMode.BinaryMode, + }], + } + } + + +def register(app): + return { + "mesh_writer": MakerbotWriter.MakerbotWriter(), + } diff --git a/plugins/MakerbotWriter/plugin.json b/plugins/MakerbotWriter/plugin.json new file mode 100644 index 00000000000..f2b875bb545 --- /dev/null +++ b/plugins/MakerbotWriter/plugin.json @@ -0,0 +1,13 @@ +{ + "name": "Makerbot Printfile Writer", + "author": "UltiMaker", + "version": "0.1.0", + "description": "Provides support for writing MakerBot Format Packages.", + "api": 8, + "supported_sdk_versions": [ + "8.0.0", + "8.1.0", + "8.2.0" + ], + "i18n-catalog": "cura" +} From c7eee660decbee7a5e154addcecc8d0b5880dedc Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 19:59:48 +0200 Subject: [PATCH 035/121] Cleanup about page CURA-10561 --- resources/qml/Dialogs/AboutDialog.qml | 28 ++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 56789201966..f448a32f1e8 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -10,6 +10,8 @@ import Cura 1.6 as Cura UM.Dialog { + readonly property UM.I18nCatalog catalog: UM.I18nCatalog { name: "cura" } + id: base title: catalog.i18nc("@title:window The argument is the application name.", "About %1").arg(CuraApplication.applicationDisplayName) @@ -39,8 +41,6 @@ UM.Dialog fillMode: Image.PreserveAspectFit anchors.centerIn: parent - - UM.I18nCatalog{ id: catalog; name: "cura" } } UM.Label @@ -69,7 +69,7 @@ UM.Dialog { text: { if (typeof(url) !== "undefined" && url !== "") { - return "" + name + ""; + return `${name}`; } else { return name; } @@ -78,7 +78,6 @@ UM.Dialog Layout.fillWidth: true Layout.preferredWidth: 2 onLinkActivated: Qt.openUrlExternally(url) - elide: Text.ElideRight } UM.Label @@ -87,7 +86,6 @@ UM.Dialog visible: text !== "" Layout.fillWidth: true Layout.preferredWidth: 3 - elide: Text.ElideRight } UM.Label @@ -96,7 +94,6 @@ UM.Dialog visible: text !== "" Layout.fillWidth: true Layout.preferredWidth: 2 - elide: Text.ElideRight } UM.Label @@ -105,7 +102,6 @@ UM.Dialog visible: text !== "" Layout.fillWidth: true Layout.preferredWidth: 2 - elide: Text.ElideRight } } @@ -147,7 +143,8 @@ UM.Dialog { width: parent.width - delegate: Loader { + delegate: Loader + { sourceComponent: dependency_row width: parent.width property string name: model.name @@ -226,8 +223,11 @@ UM.Dialog Repeater { width: parent.width - model: Object.entries(CuraApplication.conanInstalls).map(function (item) { return { name: item[0], version: item[1].version } }) - delegate: Loader { + model: Object + .entries(CuraApplication.conanInstalls) + .map(([name, { version }]) => ({ name, version })) + delegate: Loader + { sourceComponent: dependency_row width: parent.width property string name: modelData.name @@ -249,14 +249,17 @@ UM.Dialog visible: !showDefaultDependencies Repeater { - delegate: Loader { + delegate: Loader + { sourceComponent: dependency_row width: parent.width property string name: modelData.name property string version: modelData.version } width: parent.width - model: Object.entries(CuraApplication.pythonInstalls).map(function (item) { return { name: item[0], version: item[1].version } }) + model: Object + .entries(CuraApplication.pythonInstalls) + .map(([name, { version }]) => ({ name, version })) } } } @@ -264,7 +267,6 @@ UM.Dialog rightButtons: Cura.TertiaryButton { - //: Close about dialog button id: closeButton text: catalog.i18nc("@action:button", "Close") onClicked: reject() From e7188c2f9f92b6c9a695d850a987aab0bed5de08 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 21:54:50 +0200 Subject: [PATCH 036/121] Find python dependencies directly in python CURA-10561 --- CuraVersion.py.jinja | 4 +++- conanfile.py | 20 -------------------- 2 files changed, 3 insertions(+), 21 deletions(-) diff --git a/CuraVersion.py.jinja b/CuraVersion.py.jinja index 515293b8af0..690a1386d37 100644 --- a/CuraVersion.py.jinja +++ b/CuraVersion.py.jinja @@ -1,6 +1,8 @@ # Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. +from pkg_resources import working_set + CuraAppName = "{{ cura_app_name }}" CuraAppDisplayName = "{{ cura_app_display_name }}" CuraVersion = "{{ cura_version }}" @@ -14,4 +16,4 @@ CuraDigitalFactoryURL = "{{ cura_digital_factory_url }}" CuraLatestURL = "{{ cura_latest_url }}" ConanInstalls = {{ conan_installs }} -PythonInstalls = {{ python_installs }} +PythonInstalls = {package.key: {'version': package.version} for package in working_set} \ No newline at end of file diff --git a/conanfile.py b/conanfile.py index fc56d5033c8..f99fa772dd8 100644 --- a/conanfile.py +++ b/conanfile.py @@ -148,25 +148,6 @@ def _conan_installs(self): } return conan_installs - def _python_installs(self): - python_installs = {} - - # list of python installs - outer = '"' if self.settings.os == "Windows" else "'" - inner = "'" if self.settings.os == "Windows" else '"' - python_ins_cmd = f"python -c {outer}import pkg_resources; print({inner};{inner}.join([(s.key+{inner},{inner}+ s.version) for s in pkg_resources.working_set])){outer}" - from six import StringIO - buffer = StringIO() - self.run(python_ins_cmd, run_environment= True, env = "conanrun", output=buffer) - - packages = str(buffer.getvalue()).split("-----------------\n") - packages = packages[1].strip('\r\n').split(";") - for package in packages: - name, version = package.split(",") - python_installs[name] = {"version": version} - - return python_installs - def _generate_cura_version(self, location): with open(os.path.join(self.recipe_folder, "CuraVersion.py.jinja"), "r") as f: cura_version_py = Template(f.read()) @@ -193,7 +174,6 @@ def _generate_cura_version(self, location): cura_digital_factory_url = self.conan_data["urls"][self._urls]["digital_factory_url"], cura_latest_url=self.conan_data["urls"][self._urls]["cura_latest_url"], conan_installs=self._conan_installs(), - python_installs=self._python_installs(), )) def export_sources(self): From bdb7444afac4e7021b65842b6a8d75d2df4baad4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 22:06:40 +0200 Subject: [PATCH 037/121] Resolve qt warnings CURA-10561 --- resources/qml/Dialogs/AboutDialog.qml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index f448a32f1e8..154281958e1 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -68,7 +68,7 @@ UM.Dialog UM.Label { text: { - if (typeof(url) !== "undefined" && url !== "") { + if (url !== "") { return `${name}`; } else { return name; @@ -151,6 +151,7 @@ UM.Dialog property string description: model.description property string license: model.license property string url: model.url + property string version: "" } model: ListModel @@ -232,6 +233,9 @@ UM.Dialog width: parent.width property string name: modelData.name property string version: modelData.version + property string license: "" + property string url: "" + property string description: "" } } } @@ -255,6 +259,9 @@ UM.Dialog width: parent.width property string name: modelData.name property string version: modelData.version + property string license: "" + property string url: "" + property string description: "" } width: parent.width model: Object From 366004cdc1ed12d769584793c5394d1cba1988b4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 19 Oct 2023 22:44:27 +0200 Subject: [PATCH 038/121] Change margins CURA-10561 --- resources/qml/Dialogs/AboutDialog.qml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 154281958e1..d687f4a25de 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -63,7 +63,7 @@ UM.Dialog // Reusable component to display a dependency readonly property Component dependency_row: RowLayout { - spacing: UM.Theme.getSize("narrow_margin").width + spacing: UM.Theme.getSize("default_margin").width UM.Label { @@ -76,7 +76,7 @@ UM.Dialog } visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 2 + Layout.preferredWidth: 1 onLinkActivated: Qt.openUrlExternally(url) } @@ -85,7 +85,7 @@ UM.Dialog text: description visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 3 + Layout.preferredWidth: 2 } UM.Label @@ -93,7 +93,7 @@ UM.Dialog text: license visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 2 + Layout.preferredWidth: 1 } UM.Label @@ -101,7 +101,7 @@ UM.Dialog text: version visible: text !== "" Layout.fillWidth: true - Layout.preferredWidth: 2 + Layout.preferredWidth: 1 } } @@ -117,7 +117,7 @@ UM.Dialog Column { id: content - spacing: UM.Theme.getSize("narrow_margin").width + spacing: UM.Theme.getSize("default_margin").height width: parent.width UM.Label @@ -251,6 +251,7 @@ UM.Dialog { width: parent.width visible: !showDefaultDependencies + Repeater { delegate: Loader From 0ff069a8dd2a3c2a8262cd83456113218a666cb5 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 20 Oct 2023 10:38:35 +0200 Subject: [PATCH 039/121] Add color property to ColorDialog CURA-11193 --- resources/qml/Dialogs/ColorDialog.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/qml/Dialogs/ColorDialog.qml b/resources/qml/Dialogs/ColorDialog.qml index c0d15154f5c..92d6c9795b5 100644 --- a/resources/qml/Dialogs/ColorDialog.qml +++ b/resources/qml/Dialogs/ColorDialog.qml @@ -9,4 +9,7 @@ import QtQuick.Dialogs // due for deprication, use Qt Color Dialog instead ColorDialog { + id: root + + property alias color: root.selectedColor } \ No newline at end of file From d11688cbea7bb8da5484af18ae90eaddc6df61cc Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 20 Oct 2023 11:37:32 +0200 Subject: [PATCH 040/121] Add deprecation warning for ColorDialog CURA-11193 --- resources/qml/Dialogs/ColorDialog.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/qml/Dialogs/ColorDialog.qml b/resources/qml/Dialogs/ColorDialog.qml index 92d6c9795b5..b5dc84753bc 100644 --- a/resources/qml/Dialogs/ColorDialog.qml +++ b/resources/qml/Dialogs/ColorDialog.qml @@ -6,10 +6,12 @@ import QtQuick.Controls 2.15 import QtQuick.Layouts 1.3 import QtQuick.Dialogs -// due for deprication, use Qt Color Dialog instead +// due for deprecation, use Qt Color Dialog instead ColorDialog { id: root property alias color: root.selectedColor + + Component.onCompleted: { console.warn("Cura.ColorDialog is deprecated, use the QtQuick's ColorDialog instead"); } } \ No newline at end of file From 1b9ad841152ee2e71fde68f3099289cfd6f3ba5d Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 20 Oct 2023 12:05:19 +0200 Subject: [PATCH 041/121] Improve code readability CURA-10403 --- cura/Arranging/Nest2DArrange.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index aa6f2af3198..968522d5a37 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -108,14 +108,14 @@ def findNodePlacement(self) -> Tuple[bool, List[Item]]: item.markAsFixedInBin(0) node_items.append(item) - tried_strategies = [NfpConfig.Alignment.CENTER] * 3 + [NfpConfig.Alignment.BOTTOM_LEFT] * 3 + strategies = [NfpConfig.Alignment.CENTER] * 3 + [NfpConfig.Alignment.BOTTOM_LEFT] * 3 found_solution_for_all = False - while not found_solution_for_all and len(tried_strategies) > 0: + while not found_solution_for_all and len(strategies) > 0: config = NfpConfig() config.accuracy = 1.0 config.alignment = NfpConfig.Alignment.CENTER - config.starting_point = tried_strategies[0] - tried_strategies = tried_strategies[1:] + config.starting_point = strategies[0] + strategies = strategies[1:] if self._lock_rotation: config.rotations = [0.0] From 7d6e96d1d30e0905cbf12504614e7b5cfcbd0c98 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 20 Oct 2023 15:09:16 +0200 Subject: [PATCH 042/121] Boyscouting CURA-11189 --- plugins/3MFReader/WorkspaceDialog.py | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.py b/plugins/3MFReader/WorkspaceDialog.py index ed424856916..135cf584353 100644 --- a/plugins/3MFReader/WorkspaceDialog.py +++ b/plugins/3MFReader/WorkspaceDialog.py @@ -35,10 +35,12 @@ def __init__(self, parent = None) -> None: self._qml_url = "WorkspaceDialog.qml" self._lock = threading.Lock() self._default_strategy = None - self._result = {"machine": self._default_strategy, - "quality_changes": self._default_strategy, - "definition_changes": self._default_strategy, - "material": self._default_strategy} + self._result = { + "machine": self._default_strategy, + "quality_changes": self._default_strategy, + "definition_changes": self._default_strategy, + "material": self._default_strategy, + } self._override_machine = None self._visible = False self.showDialogSignal.connect(self.__show) @@ -347,10 +349,12 @@ def show(self) -> None: if threading.current_thread() != threading.main_thread(): self._lock.acquire() # Reset the result - self._result = {"machine": self._default_strategy, - "quality_changes": self._default_strategy, - "definition_changes": self._default_strategy, - "material": self._default_strategy} + self._result = { + "machine": self._default_strategy, + "quality_changes": self._default_strategy, + "definition_changes": self._default_strategy, + "material": self._default_strategy, + } self._visible = True self.showDialogSignal.emit() From fa1f5a7c89e218f3b82f774939491c610f639f11 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 20 Oct 2023 15:10:39 +0200 Subject: [PATCH 043/121] Boyscouting CURA-11189 --- cura/Settings/MachineManager.py | 10 ++++++++++ plugins/3MFReader/ThreeMFWorkspaceReader.py | 4 +++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index b8a5e7d885b..11b55e8507e 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -1700,6 +1700,16 @@ def setIntentByCategory(self, intent_category: str) -> None: else: # No intent had the correct category. extruder.intent = empty_intent_container + @pyqtSlot() + def resetIntents(self) -> None: + """Reset the intent category of the current printer. + """ + global_stack = self._application.getGlobalContainerStack() + if global_stack is None: + return + for extruder in global_stack.extruderList: + extruder.intent = empty_intent_container + def activeQualityGroup(self) -> Optional["QualityGroup"]: """Get the currently activated quality group. diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 10b38a9d695..4e3962fd10a 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -1259,7 +1259,9 @@ def _updateActiveMachine(self, global_stack): available_intent_category_list = IntentManager.getInstance().currentAvailableIntentCategories() if self._intent_category_to_apply is not None and self._intent_category_to_apply in available_intent_category_list: machine_manager.setIntentByCategory(self._intent_category_to_apply) - + else: + # if no intent is provided, reset to the default (balanced) intent + machine_manager.resetIntents() # Notify everything/one that is to notify about changes. global_stack.containersChanged.emit(global_stack.getTop()) From 053aaad16f7500d300b6704ab3ed08865d33357a Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 20 Oct 2023 17:11:40 +0200 Subject: [PATCH 044/121] Don't place objects near the boarder in grid arrange CURA-11189 --- cura/Arranging/GridArrange.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cura/Arranging/GridArrange.py b/cura/Arranging/GridArrange.py index 89146be9ad9..f3c5f3a1a90 100644 --- a/cura/Arranging/GridArrange.py +++ b/cura/Arranging/GridArrange.py @@ -118,8 +118,9 @@ def createGroupOperationForArrange(self, add_new_nodes_in_scene: bool = False) - def _findOptimalGridOffset(self): if len(self._fixed_nodes) == 0: - self._offset_x = 0 - self._offset_y = 0 + edge_disallowed_size = self._build_volume.getEdgeDisallowedSize() + self._offset_x = edge_disallowed_size + self._offset_y = edge_disallowed_size return if len(self._fixed_nodes) == 1: From 1425dd01d5b692679b5d7937d4613fab9c1d2cde Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 20 Oct 2023 22:49:26 +0200 Subject: [PATCH 045/121] Fix bug in create bounds CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 521db04b5b8..2a6243828c7 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -154,7 +154,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: if bounds is None: bounds = node_bounds else: - bounds += node_bounds + bounds = bounds + node_bounds if bounds is not None: meta["bounding_box"] = { From fe4790fe0695739c8e8d41f97c61d1c05d73967f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 20 Oct 2023 23:14:58 +0200 Subject: [PATCH 046/121] Add iso view to snapshot --- cura/Snapshot.py | 90 +++++++++++++++++++++++- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 2 files changed, 89 insertions(+), 3 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 1266d3dcb13..53090a5fec3 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -1,7 +1,9 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import numpy +from typing import Optional + from PyQt6 import QtCore from PyQt6.QtCore import QCoreApplication from PyQt6.QtGui import QImage @@ -10,11 +12,13 @@ from cura.PreviewPass import PreviewPass from UM.Application import Application +from UM.Math.AxisAlignedBox import AxisAlignedBox from UM.Math.Matrix import Matrix from UM.Math.Vector import Vector from UM.Scene.Camera import Camera from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator - +from UM.Scene.SceneNode import SceneNode +from UM.Qt.QtRenderer import QtRenderer class Snapshot: @staticmethod @@ -32,6 +36,88 @@ def getImageBoundaries(image: QImage): return min_x, max_x, min_y, max_y + @staticmethod + def isometric_snapshot(width: int = 300, height: int = 300, *, root: Optional[SceneNode] = None) -> Optional[ + QImage]: + """Create an isometric snapshot of the scene.""" + + root = Application.getInstance().getController().getScene().getRoot() if root is None else root + + # the direction the camera is looking at to create the isometric view + iso_view_dir = Vector(-1, -1, -1).normalized() + + bounds = Snapshot.node_bounds(root) + if bounds is None: + Logger.log("w", "There appears to be nothing to render") + return None + + camera = Camera("snapshot") + + # find local x and y directional vectors of the camera + s = iso_view_dir.cross(Vector.Unit_Y).normalized() + u = s.cross(iso_view_dir).normalized() + + # find extreme screen space coords of the scene + x_points = [p.dot(s) for p in bounds.points] + y_points = [p.dot(u) for p in bounds.points] + min_x = min(x_points) + max_x = max(x_points) + min_y = min(y_points) + max_y = max(y_points) + camera_width = max_x - min_x + camera_height = max_y - min_y + + if camera_width == 0 or camera_height == 0: + Logger.log("w", "There appears to be nothing to render") + return None + + # increase either width or height to match the aspect ratio of the image + if camera_width / camera_height > width / height: + camera_height = camera_width * height / width + else: + camera_width = camera_height * width / height + + # Configure camera for isometric view + ortho_matrix = Matrix() + ortho_matrix.setOrtho( + -camera_width / 2, + camera_width / 2, + -camera_height / 2, + camera_height / 2, + -10000, + 10000 + ) + camera.setPerspective(False) + camera.setProjectionMatrix(ortho_matrix) + camera.setPosition(bounds.center) + camera.lookAt(bounds.center + iso_view_dir) + + # Render the scene + renderer = QtRenderer() + render_pass = PreviewPass(width, height) + renderer.setViewportSize(width, height) + renderer.setWindowSize(width, height) + render_pass.setCamera(camera) + renderer.addRenderPass(render_pass) + renderer.beginRendering() + renderer.render() + + return render_pass.getOutput() + + @staticmethod + def node_bounds(root_node: SceneNode) -> Optional[AxisAlignedBox]: + axis_aligned_box = None + for node in DepthFirstIterator(root_node): + if not getattr(node, "_outside_buildarea", False): + if node.callDecoration( + "isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration( + "isNonThumbnailVisibleMesh"): + if axis_aligned_box is None: + axis_aligned_box = node.getBoundingBox() + else: + axis_aligned_box = axis_aligned_box + node.getBoundingBox() + return axis_aligned_box + @staticmethod def snapshot(width = 300, height = 300): """Return a QImage of the scene diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 2a6243828c7..18fb435490e 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -61,7 +61,7 @@ def _createThumbnail(width: int, height: int) -> Optional[QBuffer]: Logger.warning("Can't create snapshot when renderer not initialized.") return try: - snapshot = Snapshot.snapshot(width, height) + snapshot = Snapshot.isometric_snapshot(width, height) except: Logger.logException("w", "Failed to create snapshot image") return From 4b2fa8d0d8f5c61f4b8dea4622678462be19fd20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20=27Patola=27=20Sampaio?= Date: Mon, 23 Oct 2023 06:23:58 +0200 Subject: [PATCH 047/121] Updated Brazilian Portuguese strings for 5.5 --- resources/i18n/pt_BR/cura.po | 11228 +++++++-------- resources/i18n/pt_BR/fdmprinter.def.json.po | 13478 +++++++++--------- 2 files changed, 12359 insertions(+), 12347 deletions(-) diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 0cd0dce9117..6dce2be4d71 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -1,5610 +1,5618 @@ -# Cura -# Copyright (C) 2022 UltiMaker. -# This file is distributed under the same license as the Cura package. -# Ultimaker , 2022. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" -"PO-Revision-Date: 2023-02-17 17:37+0100\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.2.2\n" - -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 de %2" - -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 sobreposto" -msgstr[1] "%1 sobrepostos" - -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 sobreposição" -msgstr[1] "%1, %2 sobreposições" - -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Adicionar Impressora..." - -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Posição da &câmera" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." - -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Descartar ajustes atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Arquivo (&F)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "A&grupar Modelos" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Ajuda (&H)" - -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Co&mbinar Modelos" - -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplicar Modelo..." - -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Novo Projeto..." - -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Abrir Arquiv&o(s)..." - -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&pressora" - -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Sair (&Q)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Refazer" - -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salvar Projeto..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Aju&stes" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Desfazer (&U)" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "At&ualizar perfil com valores e sobreposições atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -msgctxt "@label" -msgid "*You will need to restart the application for these changes to have effect." -msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." - -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Adicione perfis de material e plug-ins do Marketplace\n" -"- Faça backup e sincronize seus perfis de materiais e plugins\n" -"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" - -msgctxt "@heading" -msgid "-- incomplete --" -msgstr "-- incompleto --" - -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmitância de 1mm (%)" - -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelo 3D" - -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Visão &3D" - -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visão 3D" - -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Arquivo 3MF" - -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Gerador de 3MF" - -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O complemento de Escrita 3MF está corrompido." - -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Arquivo 3MF" - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is active and you overwrote some settings." -msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is overriding some settings." -msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." - -msgctxt "@label %i will be replaced with a profile name" -msgid "Only user changed settings will be saved in the custom profile.
For materials that support it, the new custom profile will inherit properties from %1." -msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." - -#, python-brace-format -msgctxt "@label OpenGL renderer" -msgid "
  • OpenGL Renderer: {renderer}
  • " -msgstr "
  • Renderizador da OpenGL: {renderer}
  • " - -#, python-brace-format -msgctxt "@label OpenGL vendor" -msgid "
  • OpenGL Vendor: {vendor}
  • " -msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " - -#, python-brace-format -msgctxt "@label OpenGL version" -msgid "
  • OpenGL Version: {version}
  • " -msgstr "
  • Versão da OpenGL: {version}
  • " - -msgctxt "@label crash message" -msgid "" -"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" -"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" -" " -msgstr "" -"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" -"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" -" " - -msgctxt "@label crash message" -msgid "" -"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" -" " -msgstr "" -"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" -"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" -"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" -"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" -" " - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" -"

    {model_names}

    \n" -"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" -"

    Ver guia de qualidade de impressão

    " - -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" - -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Conexão de nuvem não está disponível para uma impressora" -msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" - -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." - -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Arquivo AMF" - -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor AMF" - -msgctxt "@label" -msgid "Abort" -msgstr "Abortar" - -msgctxt "@label" -msgid "Abort Print" -msgstr "Abortar Impressão" - -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" - -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abortado" - -msgctxt "@label" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Sobre %1" - -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Sobre..." - -msgctxt "@button" -msgid "Accept" -msgstr "Aceitar" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." - -msgctxt "@label" -msgid "Account synced" -msgstr "Conta sincronizada" - -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -msgctxt "@label" -msgid "Active print" -msgstr "Impressão ativa" - -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@action:button" -msgid "Add New" -msgstr "Adicionar Novo" - -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" - -msgctxt "@button" -msgid "Add UltiMaker printer via Digital Factory" -msgstr "" - -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de Nuvem" - -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora de rede" - -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora local" - -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -msgctxt "@option:check" -msgid "Add icon to system tray *" -msgstr "Adicionar ícone à bandeja do sistema *" - -msgctxt "@button" -msgid "Add local printer" -msgstr "" - -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo de máquina ao nome do trabalho" - -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicionar ajustes de materiais e plugins do Marketplace" - -msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." -msgid "Add more materials from Marketplace" -msgstr "Adicionar mais materiais ao Marketplace" - -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" - -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" - -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Adicionando impressora {name} ({model}) da sua conta" - -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informação sobre Aderência" - -msgctxt "@label" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do preenchimento da impressão." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." - -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Afetado Por" - -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Afeta" - -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos Os Arquivos (*)" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos Os Tipos Suportados ({0})" - -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir enviar dados anônimos" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite carregar e exibir arquivos G-Code." - -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Sempre perguntar" - -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Sempre me perguntar" - -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Sempre descartar alterações da configuração" - -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Sempre importar modelos" - -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Sempre abrir como projeto" - -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Sempre transferir as alterações para o novo perfil" - -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" - -msgctxt "@label" -msgid "Annealing" -msgstr "" - -msgctxt "@label" -msgid "Anonymous" -msgstr "Anônimo" - -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Framework de Aplicações" - -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar deslocamentos de Extrusão ao G-Code" - -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "Você está pronto para a impressão de nuvem?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Você tem certeza que quer abortar %1?" - -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem certeza que deseja abortar a impressão?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Você tem certeza que quer remover %1?" - -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." - -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Tem certeza que quer sair de %1?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Você tem certeza que quer mover %1 para o topo da fila?" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "Tem certeza que quer remover {printer_name} temporariamente?" - -msgctxt "@info:question" -msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." -msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" - -#, python-brace-format -msgctxt "@label {0} is the name of a printer that's about to be deleted." -msgid "Are you sure you wish to remove {0}? This cannot be undone!" -msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Posicionar Todos os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models in a grid" -msgstr "" - -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Fazer uma pergunta" - -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "" - -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." - -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" - -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticamente atualizar Firmware" - -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras de rede disponíveis" - -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -msgctxt "@button" -msgid "Back" -msgstr "Voltar" - -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Voltar" - -msgctxt "@info:title" -msgid "Backup" -msgstr "" - -msgctxt "@button" -msgid "Backup Now" -msgstr "Backup Agora" - -msgctxt "@action:button" -msgid "Backup and Reset Configuration" -msgstr "Salvar e Restabelecer Configuração" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Permite backup e restauração da configuração." - -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" - -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Fazer backup e sincronizar os ajustes do Cura." - -msgctxt "@info:title" -msgid "Backups" -msgstr "" - -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Visão de Baixo" - -msgctxt "@label" -msgid "Brand" -msgstr "Marca" - -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da mesa de impressão" - -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de Impressão" - -msgctxt "@label" -msgid "Build plate" -msgstr "Mesa de Impressão" - -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da plataforma de impressão" - -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Materiais Empacotados" - -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Complementos Empacotados" - -msgctxt "@button" -msgid "Buy spool" -msgstr "Comprar carretel" - -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "Por" - -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "Biblioteca de Ligações C/C++" - -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA" - -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderização de câmera:" - -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visão de câmera" - -msgctxt "@info:title" -msgid "Can't Find Location" -msgstr "Não Foi Encontrada Localização" - -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Não Foi Possível Abrir o Arquivo de Projeto" - -msgctxt "@label" -msgid "Can't connect to your UltiMaker printer?" -msgstr "Não consegue conectar à sua impressora UltiMaker?" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Can't import profile from {0} before a printer is added." -msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" - -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Não foi possível escrever no arquivo UFP:" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de alera no leitor de G-Code" - -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntralizar Modelo na Mesa" - -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centralizar Selecionados" - -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centralizar câmera quanto o item é selecionado" - -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Alterar scripts de pós-processamento ativos." - -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar material %1 de %2 para %3." - -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Alterar núcleo de impressão %1 de %2 para %3." - -msgctxt "@info:title" -msgid "Changes detected from your UltiMaker account" -msgstr "Alterações detectadas de sua conta UltiMaker" - -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações da sua conta" - -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Verificar tudo" - -msgctxt "@button" -msgid "Check for account updates" -msgstr "Verificar atualizações da conta" - -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Verificar atualizações na inicialização" - -msgctxt "@label" -msgid "Checking..." -msgstr "Verificando..." - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Verifica por atualizações de firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." - -msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "" -"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" -"\n" -"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" -"\n" -"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." - -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Esvaziar a Mesa de Impressão" - -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" - -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "Clique no botão de exportar arquivo de material." - -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fechando %1" - -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Encolher Todas As Categorias" - -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modelo de Cor" - -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de Cores" - -msgctxt "@info" -msgid "Compare and save." -msgstr "Comparar e salvar." - -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de Compatibilidade" - -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "Compatibilidade entre Python 2 e 3" - -msgctxt "@title:label" -msgid "Compatible Printers" -msgstr "Impressoras Compatíveis" - -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro de material compatível" - -msgctxt "@header" -msgid "Compatible printers" -msgstr "Impressoras compatíveis" - -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiais de suporte compatíveis" - -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatível com Material Station" - -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" - -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Arquivo de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gerador de G-Code Comprimido" - -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações de Configuração" - -msgctxt "@error" -msgid "Configuration not supported" -msgstr "Configuração não suportada" - -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurar Cura..." - -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por Modelo" - -msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" - -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurar a visibilidade dos ajustes..." - -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Mudança de Diâmetro" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar a Impressora de Rede" - -msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar pela rede" - -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado pela rede" - -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras conectadas" - -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado via USB" - -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "Conectado pela nuvem" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." - -msgctxt "@tooltip:button" -msgid "Consult the UltiMaker Community." -msgstr "Consultar a Comunidade UltiMaker." - -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Converter Imagem" - -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número da Ventoinha de Resfriamento" - -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "Copiar todos os valores alterados para todos os extrusores" - -msgctxt "@action:inmenu menubar:edit" -msgid "Copy to clipboard" -msgstr "" - -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copiar valor para todos os extrusores" - -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível acessar informação de atualização." - -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível conectar ao dispositivo." - -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" - -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." - -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Não foi possível importar material %1: %2" - -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Não foi possível interpretar a resposta de servidor." - -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Não foi possível conectar ao Marketplace." - -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Não foi possível salvar o arquivo de materiais para {}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível salvar em {0}: {1}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Não foi possível salvar em unidade removível {0}: {1}" - -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Não foi possível transferir os dados para a impressora." - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" - -msgctxt "@title:window" -msgid "Crash Report" -msgstr "Relatório de Problema" - -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -msgctxt "@text" -msgid "Create a free UltiMaker Account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@button" -msgid "Create a free UltiMaker account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Cria um volume em que os suportes não são impressos." - -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:button" -msgid "Create new" -msgstr "Criar novo" - -msgctxt "@button" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:tooltip" -msgid "Create new profile from current settings/overrides" -msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" - -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Cria projetos de impressão na Digital Library." - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" - -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Criando seu backup..." - -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis do Cura 15.04" - -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backups do Cura" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Backups Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil do Cura" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis do Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de Perfis do Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Arquivo de Projeto 3MF do Cura" - -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -msgctxt "@title:window" -msgid "Cura can't start" -msgstr "O Cura não consegue iniciar" - -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." - -msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" -"Cura orgulhosamente usa os seguintes projetos open-source:" - -msgctxt "@label" -msgid "Cura language" -msgstr "Linguagem do Cura" - -msgctxt "@label Cura version number" -msgid "Cura version" -msgstr "Versão do Cura" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -msgctxt "@title:column" -msgid "Current changes" -msgstr "Alterações atuais" - -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -msgctxt "@label" -msgid "Custom profile" -msgstr "Perfil personalizado" - -msgctxt "@info" -msgid "Custom profile name:" -msgstr "" - -msgctxt "@label" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@action:inmenu menubar:edit" -msgid "Cut" -msgstr "" - -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Mais escuro é mais alto" - -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Formato de Intercâmbio de Dados" - -msgctxt "@button" -msgid "Decline" -msgstr "Recusar" - -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Recusar e remover da conta" - -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "" - -msgctxt "@label" -msgid "Default" -msgstr "" - -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " - -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento default ao abrir um arquivo de projeto" - -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento default ao abrir um arquivo de projeto: " - -msgctxt "@action:button" -msgid "Defaults" -msgstr "" - -msgctxt "@label" -msgid "Defines the thickness of your part side walls, roof and floor." -msgstr "Define a espessura das paredes laterais, teto e base da sua peça." - -msgctxt "@label" -msgid "Delete" -msgstr "Remover" - -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Apagar o Backup" - -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Remover Modelo" - -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Remover Selecionados" - -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Remover trabalho de impressão" - -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "Gestor de pacote e dependência" - -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profundidade (mm)" - -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivado de" - -msgctxt "@header" -msgid "Description" -msgstr "Descrição" - -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "@button" -msgid "Disable" -msgstr "Desabilitar" - -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desabilitar Extrusor" - -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Descartar e não perguntar novamente" - -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Descartar alterações" - -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar ajustes atuais" - -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Descartar ou Manter alterações" - -msgctxt "@button" -msgid "Dismiss" -msgstr "Dispensar" - -msgctxt "@label" -msgid "Display Name" -msgstr "Exibir Nome" - -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Exibir erros de modelo" - -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Exibir seções pendentes" - -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Não mostrar essa mensagem novamente" - -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" - -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não exibir resumo do projeto ao salvar novamente" - -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Não exibir este ajuste" - -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -msgctxt "@button" -msgid "Done" -msgstr "Feito" - -msgctxt "@button" -msgid "Downgrade" -msgstr "" - -msgctxt "@button" -msgid "Downgrading..." -msgstr "Fazendo downgrade..." - -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." - -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" - -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar dispositivo removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." - -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -msgctxt "@button" -msgid "Enable" -msgstr "Habilitar" - -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar Extrusor" - -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." -msgstr "" - -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." - -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Solução completa para impressão 3D com filamento fundido." - -msgctxt "@info:title" -msgid "EnginePlugin" -msgstr "" - -msgctxt "@label" -msgid "Engineering" -msgstr "Engenharia" - -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assegurar que os modelos sejam mantidos separados" - -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Entre o endereço IP da sua impressora na rede." - -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Entre o endereço IP de sua impressora." - -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" - -msgctxt "@title:groupbox" -msgid "Error traceback" -msgstr "Traceback do erro" - -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tempo restante estimado" - -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Sair da Tela Cheia" - -msgctxt "@label" -msgid "Experimental" -msgstr "" - -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos Os Materiais" - -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar Seleção..." - -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportar arquivo de material" - -msgctxt "@info:title" -msgid "Export succeeded" -msgstr "Exportação concluída" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Exported profile to {0}" -msgstr "Perfil exportado para {0}" - -msgctxt "@tooltip:button" -msgid "Extend UltiMaker Cura with plugins and material profiles." -msgstr "Estende o UltiMaker Cura com complementos e perfis de material." - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite scripts criados por usuários para pós-processamento" - -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Final do Extrusor" - -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Inicial do Extrusor" - -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) Desabilitado(s)" - -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhado" - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory to sync materials with some of the printers." -msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Falha em conectar à Digital Factory." - -msgctxt "@text:error" -msgid "Failed to create archive of materials to sync with printers." -msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." - -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." - -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Falha em exportar material para %1: %2" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Failed to export profile to {0}: {1}" -msgstr "Falha ao exportar perfil para {0}: {1}" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to export profile to {0}: Writer plugin reported failure." -msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}: {1}" -msgstr "Falha ao importar perfil de {0}: {1}" - -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Falha em carregar pacotes:" - -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." - -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Falha em salvar o arquivo de materiais" - -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do Filamento" - -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "O Arquivo Já Existe" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Arquivo Salvo" - -#, python-brace-format -msgctxt "@info:status" -msgid "File {0} does not contain any valid profile." -msgstr "Arquivo {0} não contém nenhum perfil válido." - -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -msgctxt "@info:title" -msgid "Finding Location" -msgstr "Buscando Localização" - -msgctxt "@info:status" -msgid "Finding new location for objects" -msgstr "Achando novos lugares para objetos" - -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" - -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 em %2" - -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização do Firmware" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador de Atualizações de Firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de Firmware" - -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." - -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." - -msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." - -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização do Firmware completada." - -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." - -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de Firmware falhou devido a um erro desconhecido." - -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido a firmware não encontrado." - -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão do firmware" - -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "@text In the UI this is followed by a list of steps the user needs to take." -msgid "Follow the following steps to load the new material profiles to your printer." -msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." - -msgctxt "@info" -msgid "Follow the procedure to add a new printer" -msgstr "Siga o procedimento para adicionar uma nova impressora" - -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." - -msgctxt "@label" -msgid "Font" -msgstr "Fonte" - -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." - -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." - -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." - -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" - -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Visão Frontal" - -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Viso de Frente" - -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Arquivo G" - -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-Code" - -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Arquivo G-Code" - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de Perfil de G-Code" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-Code" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gerador de G-Code" - -msgctxt "@label" -msgid "G-code flavor" -msgstr "Sabor de G-Code" - -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "Gerador de G-Code" - -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo binário." - -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo binário." - -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "Framework Gráfica" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "Ligações da Framework Gráfica" - -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" - -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." -msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "Gerando instaladores Windows" - -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Ter notificações para atualizações de complementos" - -msgctxt "@action" -msgid "Get started" -msgstr "Começar" - -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globais" - -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Interface Gráfica de usuário" - -msgctxt "@label" -msgid "Grid Placement" -msgstr "" - -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" - -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." - -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." - -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" - -msgctxt "@label" -msgid "Heated bed" -msgstr "Mesa aquecida" - -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altura (mm)" - -msgctxt "@label" -msgid "Helpers" -msgstr "Assistentes" - -msgctxt "@label" -msgid "Hide all connected printers" -msgstr "Omitir todas as impressoras conectadas" - -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Ocultar este ajuste" - -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." - -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." - -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Como carregar novos perfis de material na minha impressora" - -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" - -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Recusar enviar dados anônimos" - -msgctxt "@label:status" -msgid "Idle" -msgstr "Ocioso" - -msgctxt "@label" -msgid "If you are trying to add a new UltiMaker printer to Cura" -msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" - -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" - -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de Imagens" - -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar Material" - -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" - -msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" - -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Por favor verifique a impressora" - -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." - -msgctxt "@label" -msgid "In order to start using Cura you will need to configure a printer." -msgstr "" - -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Para usar o pacote você precisará reiniciar o Cura" - -msgctxt "@label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "@tooltip" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill_sparse_density description" -msgid "Infill Density" -msgstr "" - -msgctxt "@action:label" -msgid "Infill Pattern" -msgstr "" - -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Somente malha de preenchimento" - -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Preenchimento se sobrepondo a este modelo foi modificado." - -msgctxt "@info:title" -msgid "Information" -msgstr "Informação" - -msgctxt "@title" -msgid "Information" -msgstr "Informação" - -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializando Máquina Ativa..." - -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializando volume de impressão..." - -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializando motor..." - -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializando gestor de máquinas..." - -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interna" - -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Internas" - -msgctxt "@text" -msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." -msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." - -msgctxt "@button" -msgid "Install" -msgstr "Instalar" - -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalar Materiais" - -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" - -msgctxt "@action:button" -msgid "Install Packages" -msgstr "" - -msgctxt "@header" -msgid "Install Packages" -msgstr "" - -msgctxt "@header" -msgid "Install Plugins" -msgstr "Instalar Complementos" - -msgctxt "@action:button" -msgid "Install missing packages" -msgstr "" - -msgctxt "@title" -msgid "Install missing packages" -msgstr "" - -msgctxt "@label" -msgid "Install missing packages from project file." -msgstr "" - -msgctxt "@button" -msgid "Install pending updates" -msgstr "Instalação aguardando atualizações" - -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiais Instalados" - -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Complementos Instalados" - -msgctxt "@button" -msgid "Installing..." -msgstr "Instalando..." - -msgctxt "@action:label" -msgid "Intent" -msgstr "Objetivo" - -msgctxt "@label" -msgid "Interface" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicação interprocessos" - -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -msgctxt "@info:status" -msgid "Invalid file URL:" -msgstr "URL de arquivo inválida:" - -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverter a direção da ampliação de câmera." - -msgctxt "@label" -msgid "Is printed as support." -msgstr "Está impresso como suporte." - -msgctxt "@text" -msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." -msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." - -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "Parser JSON" - -msgctxt "@label" -msgid "Job Name" -msgstr "Nome do Trabalho" - -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de Trote" - -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de Trote" - -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Manter e não perguntar novamente" - -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Manter alterações" - -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Manter configurações da impressora" - -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Manter este ajuste visível" - -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última atualização: %1" - -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura de Camada" - -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Visão de Camadas" - -msgctxt "@button:label" -msgid "Learn More" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Aprenda como conectar sua impressora à Digital Factory" - -msgctxt "@tooltip:button" -msgid "Learn how to get started with UltiMaker Cura." -msgstr "Saiba como começar com o UltiMaker Cura." - -msgctxt "@action" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button:label" -msgid "Learn more" -msgstr "Saber mais" - -msgctxt "@action:button" -msgid "Learn more about Cura print profiles" -msgstr "Saber mais sobre perfis de impressão do Cura" - -msgctxt "@button" -msgid "Learn more about adding printers to Cura" -msgstr "Saiba mais sobre adicionar impressoras ao Cura" - -msgctxt "@label" -msgid "Learn more about project packages." -msgstr "" - -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Visão do Lado Esquerdo" - -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Visão à Esquerda" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de Perfis de Cura Legado" - -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "Deixe os desenvolvedores saberem que algo está errado." - -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar mesa" - -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Mais claro é mais alto" - -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linear" - -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Implementação de aplicação multidistribuição em Linux" - -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." - -msgctxt "@button" -msgid "Load more" -msgstr "Carregar mais" - -msgctxt "@button" -msgid "Loading" -msgstr "Carregando" - -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." - -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Carregando configurações disponíveis da impressora..." - -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Carregando interface..." - -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Carregando máquinas..." - -msgctxt "@label:status" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@title" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Login falhou" - -msgctxt "@info:title" -msgid "Login failed" -msgstr "Login falhou" - -msgctxt "@title:groupbox" -msgid "Logs" -msgstr "Registros" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" - -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "A conexão à impressora foi perdida" - -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes da Máquina" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Ação de Ajustes de Máquina" - -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." - -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." - -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Administrar Materiais..." - -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Adm&inistrar Impressoras..." - -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Administrar perfis..." - -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerenciar Visibilidade dos Ajustes..." - -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerenciar backups" - -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no navegador" - -msgctxt "@header" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@action" -msgid "Manage print jobs" -msgstr "Gerenciar trabalhos de impressão" - -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir Impressora" - -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerenciar impressoras" - -msgctxt "@text" -msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." -msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "" - -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -msgctxt "@label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Material" - -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -msgctxt "@title" -msgid "Material color picker" -msgstr "Seletor de cores do material" - -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimativa de material" - -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" - -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes de material" - -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@button" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@label" -msgid "Materials compatible with active printer:" -msgstr "Materiais compatíveis com a impressora ativa:" - -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Malha" - -msgctxt "@action:label" -msgid "Mode" -msgstr "Modo" - -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelo" - -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros de Modelo" - -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modificar G-Code" - -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar ajustes para sobreposições" - -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Estágio de Monitor" - -msgctxt "@action:button" -msgid "Monitor print" -msgstr "Monitorar impressão" - -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." - -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "Monitora as impressoras na Ultimaker Digital Factory." - -msgctxt "@info" -msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" -msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" - -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações em coleção anônima de dados" - -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Move o trabalho de impressão para o topo da fila" - -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover pra a Posição Seguinte" - -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" - -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplicar Selecionados" - -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar Modelos Selecionados" - -msgctxt "@info" -msgid "Multiply selected item and place them in a grid of build plate." -msgstr "" - -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplicando e colocando objetos" - -msgctxt "@title" -msgid "My Backups" -msgstr "Meus backups" - -msgctxt "@label:button" -msgid "My printers" -msgstr "Minhas impressoras" - -msgctxt "@action:label" -msgid "Name" -msgstr "Nome" - -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras habilitadas pela rede" - -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Novo firmware estável de %s disponível" - -msgctxt "@textfield:placeholder" -msgid "New Custom Profile" -msgstr "" - -msgctxt "@label" -msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." -msgstr "" - -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." - -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Novos materiais instalados" - -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nova impressora detectada na sua conta Ultimaker" -msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" - -msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" - -msgctxt "@action:button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@info:title" -msgid "Nightly build" -msgstr "" - -msgctxt "@info" -msgid "No" -msgstr "Não" - -msgctxt "@info" -msgid "No compatibility information" -msgstr "Sem informação de compatibilidade" - -msgctxt "@description" -msgid "No compatible printers, that are currently online, were found." -msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." - -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Sem estimativa de custo disponível" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "No custom profile to import in file {0}" -msgstr "Não há perfil personalizado a importar no arquivo {0}" - -msgctxt "@label" -msgid "No items to select from" -msgstr "Sem itens para selecionar" - -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Não há camadas a exibir" - -msgctxt "@message" -msgid "No more results to load" -msgstr "Não há mais resultados a carregar" - -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Sem permissão para gravar o espaço de trabalho aqui." - -msgctxt "@title:header" -msgid "No printers found" -msgstr "Nenhuma impressora encontrada" - -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Nenhuma impressora encontrada em sua conta?" - -msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." -msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." - -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Não há resultados encontrados com o filtro atual" - -msgctxt "@label" -msgid "No time estimation available" -msgstr "Sem estimativa de tempo disponível" - -msgctxt "@button" -msgid "Non UltiMaker printer" -msgstr "" - -msgctxt "@info No materials" -msgid "None" -msgstr "Nenhum" - -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é host de grupo" - -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Não conectado a nenhuma impressora" - -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Ausente no perfil" - -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Não sobreposto" - -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não Suportado" - -msgctxt "@label" -msgid "Not yet initialized" -msgstr "Ainda não inicializado" - -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Nada está exibido porque você precisa fatiar primeiro." - -msgctxt "@label" -msgid "Nozzle" -msgstr "Bico" - -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes do Bico" - -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Deslocamento X do Bico" - -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Deslocamento Y do Bico" - -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do bico" - -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -msgctxt "@action:button" -msgid "OK" -msgstr "Ok" - -msgctxt "@label" -msgid "OS language" -msgstr "Linguagem do SO" - -msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" - -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Somente Exibir Camadas Superiores" - -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" - -msgctxt "@action:button" -msgid "Open" -msgstr "Abrir" - -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir Arquivo(s)" - -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir Arquivo(s)..." - -msgctxt "@title:window" -msgid "Open Project" -msgstr "Abrir Projeto" - -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Abrir Arquivo de Projeto" - -msgctxt "@action:label" -msgid "Open With" -msgstr "" - -msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" - -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir arquivo(s)" - -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "Abrir o projeto mesmo assim" - -msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir arquivo de projeto" - -msgctxt "@label OpenGL version" -msgid "OpenGL" -msgstr "OpenGL" - -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrindo e salvando arquivos" - -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Otimizado para o Air Manager" - -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -msgid "Orthographic" -msgstr "Ortográfica" - -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfico" - -msgctxt "@tooltip" -msgid "Other" -msgstr "Outros" - -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." - -msgctxt "@label" -msgid "Other printers" -msgstr "Outras impressoras" - -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Externa" - -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Sobreposições neste modelo não são suportadas." - -msgctxt "@action:button" -msgid "Override" -msgstr "Sobrepor" - -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." - -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Sobrepõe %1 ajuste." -msgstr[1] "Sobrepõe %1 ajustes." - -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -msgctxt "@header" -msgid "Package details" -msgstr "Detalhes do pacote" - -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "Empacotamento de aplicações Python" - -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Interpretando G-Code" - -msgctxt "@action:inmenu menubar:edit" -msgid "Paste from clipboard" -msgstr "" - -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por Modelo" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de Ajustes Por Modelo" - -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:label" -msgid "Placement" -msgstr "Posicionamento" - -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Colocando Objeto" - -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Colocando Objetos" - -msgctxt "@label Type of platform" -msgid "Platform" -msgstr "Plataforma" - -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Por favor conecte sua impressora à rede." - -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Por favor entre um endereço IP válido." - -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." - -msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Por favor certifique-se que sua impressora está conectada>\n" -"- Verifique se ela está ligada.\n" -"- Verifique se ela está conectada à rede.\n" -"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." - -msgctxt "@text" -msgid "Please name your printer" -msgstr "Por favor dê um nome à sua impressora" - -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Por favor prepare o G-Code antes de exportar." - -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Por favor dê um nome a este perfil." - -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Por favor, escolha um novo nome." - -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Por favor leia e concorde com a licença do complemento." - -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Por favor remova a impressão" - -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Por favor revise os ajustes e verifique se seus modelos:\n" -"- Cabem dentro do volume de impressão\n" -"- Estão associados a um extrusor habilitado\n" -"- Não estão todos configurados como malhas de modificação" - -msgctxt "@label" -msgid "Please select any upgrades made to this UltiMaker Original" -msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" - -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" -msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" - -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." - -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." - -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Por favor espere até que o trabalho atual tenha sido enviado." - -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acordo de Licença do Complemento" - -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Acordo de licença do complemento" - -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@button" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Biblioteca de recorte de polígonos" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" - -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Pós-Processamento" - -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-processamento" - -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de Pós-Processamento" - -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de Pós-Processamento" - -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pré-aquecer" - -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Preparar" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Estágio de Preparação" - -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras pré-ajustadas" - -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "name" -msgid "Preview Stage" -msgstr "Estágio de Pré-visualização" - -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de Prime" - -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimir Modelo Selecionado Com:" -msgstr[1] "Imprimir Modelos Selecionados Com:" - -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimir Modelo Selecionado com %1" -msgstr[1] "Imprimir Modelos Selecionados com %1" - -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em Progresso" - -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." - -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Trabalho de impressão enviado à impressora com sucesso." - -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime pela rede" - -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impressão" - -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@action:label" -msgid "Print with" -msgstr "" - -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupo de Impressora" - -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de Impressora" - -msgctxt "@label" -msgid "Printer control" -msgstr "Controle da Impressora" - -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" - -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de impressora" - -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes da impressora" - -msgctxt "@info:tooltip" -msgid "Printer settings will be updated to match the settings saved with the project." -msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" - -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Impressoras adicionadas da Digital Factory:" - -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Impressoras faltando?" - -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes da Cabeça de Impressão" - -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" - -msgctxt "@label" -msgid "Printing Time" -msgstr "Tempo de Impressão" - -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimindo..." - -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -msgctxt "@button" -msgid "Processing" -msgstr "Processando" - -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Processando Camadas" - -msgctxt "@label" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" - -msgctxt "@info:status" -msgid "Profile is missing a quality type." -msgstr "Falta um tipo de qualidade ao Perfil." - -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -#, python-brace-format -msgctxt "@info:status" -msgid "Profile {0} has an unknown file type or is corrupted." -msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." - -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles compatible with active printer:" -msgstr "Perfis compatíveis com a impressora ativa:" - -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Linguagem de Programação" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Arquivo de projeto {0} está corrompido: {1}." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." -msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." - -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Provê ações de máquina para atualização do firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Provê um estágio de monitor no Cura." - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Provê uma visualização de malha sólida normal." - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Provê um estágio de preparação no Cura." - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Provê uma etapa de pré-visualização ao Cura." - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Provê suporte a escrita e reconhecimento de drives a quente." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Provê suporte à exportação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Provê suporte à importação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Provê suporte a importar perfis de arquivos G-Code." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Provê suporte a importação de perfis de versões legadas do Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Provê suporte à leitura de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Provê suporta à leitura de arquivos AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Provê suporte à leitura de arquivos X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Provê suporta a ler arquivos de modelo." - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Provê Ajustes Por Modelo." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Provê a visão de Raios-X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Provê a ligação ao backend de fatiamento CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Provê a pré-visualização de dados de camada fatiados." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Versão do PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Biblioteca de rastreamento de Erros Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Ligações de Python pra Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Ligações de Python para a libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Versão do Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila Cheia" - -msgctxt "@label" -msgid "Queued" -msgstr "Enfileirados" - -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair de %1" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê G-Code de um arquivo comprimido." - -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@label" -msgid "Recommended print settings" -msgstr "" - -msgctxt "@info %1 is the name of a profile" -msgid "Recommended settings (for %1) were altered." -msgstr "Ajustes recomendados (para %1) foram alterados." - -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh List" -msgstr "Atualizar Lista" - -msgctxt "@button" -msgid "Refreshing..." -msgstr "" - -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de lançamento" - -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recarregar Todos Os Modelos" - -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Lembrar minha escolha" - -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidade Removível" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de Dispositivo de Escrita Removível" - -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Remover impressoras" - -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "Remover impressoras?" - -msgctxt "@action:button" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renomear Perfil" - -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Relatar um &Bug" - -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Relatar um problema" - -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Relatar um bug" - -msgctxt "@message:description" -msgid "Report a bug on UltiMaker Cura's issue tracker." -msgstr "Relatar um bug no issue tracker do UltiMaker Cura." - -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer mudanças na configuração" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Reestabelecer as Posições de Todos Os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Remover as Transformações de Todos Os Modelos" - -msgctxt "@info" -msgid "Reset to defaults." -msgstr "Restaurar aos defaults." - -msgctxt "@label" -msgid "Resolution" -msgstr "Resolução" - -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar Backup" - -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela no início" - -msgctxt "@label" -msgid "Resume" -msgstr "Continuar" - -msgctxt "@label" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -msgctxt "@button" -msgid "Retry?" -msgstr "Tentar novamente?" - -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Visão do Lado Direito" - -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Visão à Direita" - -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados-Raiz para validar confiança SSL" - -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware com Segurança" - -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Ficha de segurança" - -msgctxt "@action:button" -msgid "Save" -msgstr "Salvar" - -msgctxt "@option" -msgid "Save Cura project" -msgstr "Salvar o projeto Cura" - -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salvar o projeto Cura e imprimir o arquivo" - -msgctxt "@title:window" -msgid "Save Custom Profile" -msgstr "" - -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salvar Projeto" - -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salvar Projeto..." - -msgctxt "@action:button" -msgid "Save as new custom profile" -msgstr "" - -msgctxt "@action:button" -msgid "Save changes" -msgstr "" - -msgctxt "@button" -msgid "Save new profile" -msgstr "" - -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "Grava o arquivo .umm em um pendrive USB." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Salvar em Unidade Removível" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Salvar em Unidade Removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvo em Unidade Removível {0} como {1}" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Salvando" - -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Salvando na Unidade Removível {0}" - -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos minúsculos" - -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos grandes" - -msgctxt "@placeholder" -msgid "Search" -msgstr "Buscar" - -msgctxt "@info" -msgid "Search in the browser" -msgstr "Buscar no navegador" - -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Ajustes de busca" - -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Selecionar Todos Os Modelos" - -msgctxt "@title:window" -msgid "Select Printer" -msgstr "Selecione Impressora" - -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar Ajustes a Personalizar para este modelo" - -msgctxt "@text" -msgid "Select and install material profiles optimised for your UltiMaker 3D printers." -msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." - -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecione configuração" - -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar modelos ao carregar" - -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar ajustes" - -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar Atualizações" - -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione sua impressora da lista abaixo:" - -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar informação (anônima) de impressão" - -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-Code" - -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." - -msgctxt "@action:button" -msgid "Send crash report to UltiMaker" -msgstr "Enviar relatório de falha à UltiMaker" - -msgctxt "@action:button" -msgid "Send report" -msgstr "Enviar relatório" - -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando Trabalho de Impressão" - -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando material para a impressora" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentinela para Registro" - -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Biblioteca de comunicação serial" - -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir Como Extrusor Ativo" - -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade dos Ajustes" - -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ajustando preferências..." - -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando cena..." - -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilidade dos ajustes" - -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" - -msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes atualizados" - -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" -msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" - -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "@action:label" -msgid "Shell Thickness" -msgstr "" - -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" - -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "O Cura deve abrir no lugar onde foi fechado?" - -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" - -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" - -msgctxt "@info:tooltip" -msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" -msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" - -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." - -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" - -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" - -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Os modelos devem ser selecionados após serem carregados?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" - -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "O comportamento default de ampliação deve ser invertido?" - -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "A ampliação (zoom) deve se mover na direção do mouse?" - -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Exibir 5 Camadas Superiores Detalhadas" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Exibir Pasta de Configuração" - -msgctxt "@button" -msgid "Show Custom" -msgstr "" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Exibir &Documentação Online" - -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "Mostrar Resolução de Problemas Online" - -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Exibir tudo" - -msgctxt "@label" -msgid "Show all connected printers" -msgstr "Mostrar todas as impressoras conectadas" - -msgctxt "@info:tooltip" -msgid "Show an icon and notifications in the system notification area." -msgstr "Mostrar um ícone e notificações na área de notificações do sistema." - -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Exibir mensagem de alerta no leitor de G-Code." - -msgctxt "@action:button" -msgid "Show configuration folder" -msgstr "Mostrar a pasta de configuração" - -msgctxt "@action:button" -msgid "Show detailed crash report" -msgstr "Exibir relatório de falha detalhado" - -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Exibir diálogo de resumo ao salvar projeto" - -msgctxt "@tooltip:button" -msgid "Show your support for Cura with a donation." -msgstr "" - -msgctxt "@button" -msgid "Sign Out" -msgstr "Deslogar" - -msgctxt "@action:button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@title:header" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@info" -msgid "Sign in into UltiMaker Digital Factory" -msgstr "" - -msgctxt "@button" -msgid "Sign in to Digital Factory" -msgstr "" - -msgctxt "@label" -msgid "Sign in to the UltiMaker platform" -msgstr "Entre na plataforma UltiMaker" - -msgctxt "name" -msgid "Simulation View" -msgstr "Visão Simulada" - -msgctxt "@tooltip" -msgid "Skin" -msgstr "Contorno" - -msgctxt "@action:button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt (Saia)" - -msgctxt "@button" -msgid "Slice" -msgstr "Fatiar" - -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Fatiar automaticamente" - -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Fatiar automaticamente quando mudar ajustes." - -msgctxt "name" -msgid "Slice info" -msgstr "Informação de fatiamento" - -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Fatiamento falhado" - -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." - -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Fatiando..." - -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Suavização" - -msgctxt "name" -msgid "Solid View" -msgstr "Visão Sólida" - -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visão sólida" - -msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" -"\n" -"Clique para tornar estes ajustes visíveis." - -msgctxt "@info:status" -msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." -msgstr "" - -msgctxt "@info:title" -msgid "Some required packages are not installed" -msgstr "" - -msgctxt "@info %1 is the name of a profile" -msgid "Some setting-values defined in %1 were overridden." -msgstr "" - -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" -"\n" -"Clique para abrir o gerenciador de perfis." - -msgctxt "@action:label" -msgid "Some settings from current profile were overwritten." -msgstr "Alguns ajustes do perfil atual foram sobrescritos." - -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." - -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." - -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Alguma coisa deu errado..." - -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "@action:inmenu" -msgid "Sponsor Cura" -msgstr "" - -msgctxt "@label:button" -msgid "Sponsor Cura" -msgstr "" - -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versões estáveis ou beta" - -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Versões estáveis somente" - -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Formato de Triângulos de Stanford" - -msgctxt "@button" -msgid "Start" -msgstr "Iniciar" - -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da Mesa de Impressão" - -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "@label" -msgid "Start the slicing process" -msgstr "Inicia o processo de fatiamento" - -msgctxt "@label" -msgid "Starts" -msgstr "Inícios" - -msgctxt "@text" -msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." - -msgctxt "@label" -msgid "Strength" -msgstr "Força" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado para %1 com sucesso" - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com sucesso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Successfully imported profile {0}." -msgstr "Perfil {0} importado com sucesso." - -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Resumo - Projeto do Cura" - -msgctxt "@label" -msgid "Support" -msgstr "Suporte" - -msgctxt "@tooltip" -msgid "Support" -msgstr "Suporte" - -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de Suporte" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Apagador de Suporte" - -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Preenchimento de Suporte" - -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface de Suporte" - -msgctxt "@action:label" -msgid "Support Type" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Biblioteca de suporte para matemática acelerada" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de suporte para streaming e metadados de arquivo" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Biblioteca de suporte para manuseamento de arquivos STL" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Biblioteca de suporte para computação científica" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" - -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronizar perfis de material via USB" - -msgctxt "@action:button" -msgid "Sync materials" -msgstr "Sincronizar materiais" - -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronizar materiais usando USB" - -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@action:button" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -msgctxt "@button" -msgid "Syncing" -msgstr "Sincronizando" - -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -msgctxt "@title:groupbox" -msgid "System information" -msgstr "Informação do Sistema" - -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Ficha técnica" - -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização para aplicar na imagem." - -msgctxt "@text" -msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." -msgstr "" - -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" -msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" - -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "O backup excede o tamanho máximo de arquivo." - -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "A altura-base da mesa de impressão em milímetros." - -msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." - -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." - -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." - -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "As configurações não estão disponíveis porque a impressora está desconectada." - -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da mesa aquecida." - -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste hotend." - -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade da mesa de impressão em milímetros" - -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." - -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." - -msgctxt "@label" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" - -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." - -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" - -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" - -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes serão adicionados:" - -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" - -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Os seguintes materiais receberão novos perfis de material:" - -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O seguinte script está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" - -msgctxt "@label" -msgid "The following settings define the strength of your part." -msgstr "Os seguintes ajustes definem a força de sua peça." - -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." - -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." -msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." - -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "A distância máxima de cada pixel da \"Base\"." - -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" - -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O bico inserido neste extrusor." - -msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"O padrão do material de preenchimento da impressão:\n" -"\n" -"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" -"\n" -"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" -"\n" -"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." - -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." -msgstr "" - -msgctxt "@info:title" -msgid "The print job was successfully submitted" -msgstr "O trabalho de impressão foi submetido com sucesso" - -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." - -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está conectada." - -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" - -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "O estado provido não está correto." - -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "As notas de lançamento não puderam ser abertas." - -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "A resposta da Digital Factory parece estar corrompida." - -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "A resposta da Digital Factory veio sem informações importantes." - -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." - -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura em que pré-aquecer a mesa." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura com a qual pré-aquecer o hotend." - -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." - -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "A largura em milímetros na plataforma de impressão" - -msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." -msgid "Theme*:" -msgstr "Tema*:" - -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" - -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." - -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Não há perfis correspondendo à configuração deste extrusor." - -msgctxt "@info:status" -msgid "There is no active printer yet." -msgstr "Não há impressora ativa ainda." - -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Não foi encontrada nenhuma impressora em sua rede." - -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." - -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Houve um erro ao tentar restaurar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Houve um erro ao criar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Houve um erro ao transferir seu backup." - -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." - -msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" - -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." - -msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após o reinício." - -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." - -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Esta impressora não está ligada à Digital Factory:" -msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" - -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." - -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." - -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "This profile {0} contains incorrect data, could not import it." -msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." - -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." - -msgctxt "@label" -msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." -msgstr "" - -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Este ajuste tem um valor que é diferente do perfil.\n" -"\n" -"Clique para restaurar o valor do perfil." - -msgctxt "@item:tooltip" -msgid "This setting has been hidden by the active machine and will not be visible." -msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." - -msgctxt "@item:tooltip %1 is list of setting names" -msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." -msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." -msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." -msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." - -msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." - -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" -"\n" -"Clique para restaurar o valor calculado." - -msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." - -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" - -msgctxt "@info:warning" -msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" -msgstr "" - -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" - -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -msgstr "Tempo esgotado ao autenticar com o servidor da conta." - -msgctxt "@text" -msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." -msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." - -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" - -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." - -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" - -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Alternar Tela Cheia" - -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Topo / Base" - -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Visão Superior" - -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visão de Cima" - -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo total de impressão" - -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "Rastrear a impressão na Ultimaker Digital Factory" - -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidez" - -msgctxt "@tooltip" -msgid "Travel" -msgstr "Percurso" - -msgctxt "@label" -msgid "Travels" -msgstr "Percursos" - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor Trimesh" - -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@button" -msgid "Try again" -msgstr "Tentar novamente" - -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gerador de UFP" - -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "@button" -msgid "UltiMaker Account" -msgstr "Conta na UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Certified Material" -msgstr "Material Certificado UltiMaker" - -msgctxt "@text:window" -msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" - -msgctxt "@item:inlistbox" -msgid "UltiMaker Format Package" -msgstr "Pacote de Formato da UltiMaker" - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "" - -msgctxt "@info" -msgid "UltiMaker Verified Package" -msgstr "Pacote Verificado UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Verified Plug-in" -msgstr "Complemento Verificado UltiMaker" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "" - -msgctxt "@button" -msgid "UltiMaker printer" -msgstr "" - -msgctxt "@label:button" -msgid "UltiMaker support" -msgstr "Suporte UltiMaker" - -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digital Library da UltiMaker" - -msgctxt "@info:status" -msgid "Unable to add the profile." -msgstr "Não foi possível adicionar o perfil." - -msgctxt "@info:status" -msgid "Unable to find a location within the build volume for all objects" -msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" -msgstr "" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" - -msgctxt "@info" -msgid "Unable to reach the UltiMaker account server." -msgstr "Não foi possível contactar o servidor de contas da UltiMaker." - -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "Não foi possível ler o arquivo de dados de exemplo." - -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." - -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" - -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" - -msgctxt "@info" -msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." -msgstr "Não foi possível iniciar processo de sign-in. Verifique se outra tentativa de sign-in ainda está ativa." - -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Desagrupar Modelos" - -msgctxt "@button" -msgid "Uninstall" -msgstr "Desinstalar" - -msgctxt "@title:column Unit of measurement" -msgid "Unit" -msgstr "Unidade" - -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "Configuração de sistema universal de construção" - -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -msgctxt "@label unknown version of Cura" -msgid "Unknown" -msgstr "Desconhecida" - -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autor Desconhecido" - -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Pacote Desconhecido" - -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" - -msgctxt "@text" -msgid "Unknown error." -msgstr "Erro desconhecido." - -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular Material" - -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessivel" - -msgctxt "@label" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@button" -msgid "Update" -msgstr "Atualizar" - -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Atualizar existentes" - -msgctxt "@action:tooltip" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com ajustes/sobreposições atuais" - -msgctxt "@action:button" -msgid "Update profile." -msgstr "Atualizar perfil." - -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualize sua impressora" - -msgctxt "@label" -msgid "Updates" -msgstr "Atualizações" - -msgctxt "@label" -msgid "Updating firmware." -msgstr "Atualizando firmware." - -msgctxt "@button" -msgid "Updating..." -msgstr "Atualizando..." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "" - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar Firmware personalizado" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Transferindo trabalho de impressão para a impressora." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Enviando seu backup..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Usar uma única instância do Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Use cola para melhor aderência com essa combinação de materiais." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de Usuário" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funções de utilidade, incluindo um carregador de imagem" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Biblioteca de utilidade, incluindo geração Voronoi" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização de Versão de 2.1 para 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização de Versão de 2.2 para 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização de Versão de 2.5 para 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização de Versão de 2.6 para 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização de Versão de 2.7 para 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização de Versão 3.0 para 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização de Versão de 3.2 para 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização de Versão de 3.3 para 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização de Versão de 3.4 para 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização de Versão de 3.5 para 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização de Versão de 4.0 para 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização de Versão de 4.1 para 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização de Versão de 4.11 para 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização de Versão de 4.13 para 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização de Versão de 4.2 para 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização de Versão de 4.3 para 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização de Versão de 4.4 para 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização de Versão de 4.5 para 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização de Versão de 4.6.0 para 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização de Versão de 4.6.2 para 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização de Versão de 4.7 para 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização de Versão de 4.8 para 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização de Versão de 4.9 para 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização de Versão de 5.2 para 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Ver impressoras na Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Tipo de Visão" - -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Ver manuais de usuário online" - -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da área de visualização" - -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes Visíveis" - -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visitar sítio web de complementos" - -msgctxt "@tooltip:button" -msgid "Visit the UltiMaker website." -msgstr "Visita o website da UltiMaker." - -msgctxt "@label" -msgid "Visual" -msgstr "" - -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando por" - -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Aguardando resposta da Nuvem" - -msgctxt "@button" -msgid "Waiting for new printers" -msgstr "" - -msgctxt "@button" -msgid "Want more?" -msgstr "Quer mais?" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." -msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." - -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." - -msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" - -msgctxt "@info" -msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." - -msgctxt "@button" -msgid "Website" -msgstr "Sítio web" - -msgctxt "@label" -msgid "What printer would you like to setup?" -msgstr "Que impressora você gostaria de configurar?" - -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Que tipo de renderização de câmera deve ser usada?" - -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@label" -msgid "What's New" -msgstr "O Que Há de Novo" - -msgctxt "@title:window" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." - -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." - -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." - -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Por que eu preciso sincronizar perfis de material?" - -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Largura (mm)" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escreve em formato G-Code comprimido." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escreve em formato G-Code." - -msgctxt "@label" -msgid "X (Width)" -msgstr "X (largura)" - -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -msgctxt "name" -msgid "X-Ray View" -msgstr "Visão de Raios-X" - -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visão de Raios-X" - -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Arquivo X3D" - -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -msgctxt "@info" -msgid "Yes" -msgstr "Sim" - -msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -#, python-brace-format -msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" -msgstr[1] "" -"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." -msgstr "" - -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." - -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." - -msgctxt "@text:window, %1 is a profile name" -msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." - -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" - -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." - -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" - -msgctxt "@info:status" -msgid "You will receive a confirmation via email when the print job is approved" -msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" - -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Seu backup terminou de ser enviado." - -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Seus ajustes atuais coincidem com o perfil selecionado." - -msgctxt "@info" -msgid "Your new printer will automatically appear in Cura" -msgstr "Sua nova impressora vai automaticamente aparecer no Cura" - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" -" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" - -msgctxt "@label" -msgid "Z" -msgstr "Z" - -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de descoberta 'ZeroConf'" - -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Ampliar na direção do mouse" - -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." - -msgctxt "@text Placeholder for the username if it has been deleted" -msgid "deleted user" -msgstr "usuário removido" - -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Binário glTF" - -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embutido JSON" - -msgctxt "@label" -msgid "max" -msgstr "máx" - -msgctxt "@label" -msgid "min" -msgstr "mín" - -msgctxt "@label" -msgid "mm" -msgstr "mm" - -msgctxt "@info:status" -msgid "today" -msgstr "hoje" - -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" - -msgctxt "@label" -msgid "version: %1" -msgstr "versão: %1" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "{printer_name} será removida até a próxima sincronização de conta." - -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} complementos falharam em baixar" - -#, python-brace-format -#~ msgctxt "info:{0} gets replaced by a number of printers" -#~ msgid "... and {0} other" -#~ msgid_plural "... and {0} others" -#~ msgstr[0] "... e {0} outra" -#~ msgstr[1] "... e {0} outras" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Posicionar Seleção" - -#~ msgctxt "@tooltip:button" -#~ msgid "Become a 3D printing expert with UltiMaker e-learning." -#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." -#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." - -#~ msgctxt "@label" -#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." - -#~ msgctxt "@error:zip" -#~ msgid "Error writing 3mf file." -#~ msgstr "Erro ao escrever arquivo 3mf." - -#~ msgctxt "@label" -#~ msgid "Hex" -#~ msgstr "Hexa" - -#~ msgctxt "@action:button" -#~ msgid "Install Materials" -#~ msgstr "Instalar Materiais" - -#~ msgctxt "@title" -#~ msgid "Install missing Materials" -#~ msgstr "Instalar Materiais faltantes" - -#~ msgctxt "@action:button" -#~ msgid "Install missing material" -#~ msgstr "Instalar material faltante" - -#~ msgctxt "@info:title" -#~ msgid "Material profiles not installed" -#~ msgstr "Perfis de material não instalados" - -#~ msgctxt "@info:title" -#~ msgid "Simulation View" -#~ msgstr "Visão Simulada" - -#~ msgctxt "@label" -#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." -#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." - -#~ msgctxt "@info:status" -#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." - -#~ msgctxt "@error:zip" -#~ msgid "The operating system does not allow saving a project file to this location or with this file name." -#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." +# Cura +# Copyright (C) 2022 UltiMaker. +# This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"PO-Revision-Date: 2023-10-23 05:56+0200\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.3.2\n" + +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 de %2" + +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 sobreposto" +msgstr[1] "%1 sobrepostos" + +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 sobreposição" +msgstr[1] "%1, %2 sobreposições" + +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Adicionar Impressora..." + +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Posição da &câmera" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." + +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Descartar ajustes atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Editar" + +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportar..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "Arquivo (&F)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "A&grupar Modelos" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "Ajuda (&H)" + +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Co&mbinar Modelos" + +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplicar Modelo..." + +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Novo Projeto..." + +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Abrir Arquiv&o(s)..." + +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Im&pressora" + +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "Sair (&Q)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Refazer" + +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salvar Projeto..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Aju&stes" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Desfazer (&U)" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "At&ualizar perfil com valores e sobreposições atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Ver" + +msgctxt "@label" +msgid "*You will need to restart the application for these changes to have effect." +msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." + +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Adicione perfis de material e plug-ins do Marketplace\n" +"- Faça backup e sincronize seus perfis de materiais e plugins\n" +"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" + +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmitância de 1mm (%)" + +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistente de Modelo 3D" + +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Visão &3D" + +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Visão 3D" + +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Arquivo 3MF" + +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Gerador de 3MF" + +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O complemento de Escrita 3MF está corrompido." + +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Arquivo 3MF" + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." + +msgctxt "@label %i will be replaced with a profile name" +msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." +msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
    Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." + +#, python-brace-format +msgctxt "@label OpenGL renderer" +msgid "
  • OpenGL Renderer: {renderer}
  • " +msgstr "
  • Renderizador da OpenGL: {renderer}
  • " + +#, python-brace-format +msgctxt "@label OpenGL vendor" +msgid "
  • OpenGL Vendor: {vendor}
  • " +msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " + +#, python-brace-format +msgctxt "@label OpenGL version" +msgid "
  • OpenGL Version: {version}
  • " +msgstr "
  • Versão da OpenGL: {version}
  • " + +msgctxt "@label crash message" +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" +"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" +" " + +msgctxt "@label crash message" +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" +"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" +"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" +"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" +" " + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" +"

    {model_names}

    \n" +"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" +"

    Ver guia de qualidade de impressão

    " + +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" + +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Conexão de nuvem não está disponível para uma impressora" +msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" + +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." + +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Arquivo AMF" + +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor AMF" + +msgctxt "@label" +msgid "Abort" +msgstr "Abortar" + +msgctxt "@label" +msgid "Abort Print" +msgstr "Abortar Impressão" + +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abortar impressão" + +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abortado" + +msgctxt "@label" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@title:window The argument is the application name." +msgid "About %1" +msgstr "Sobre %1" + +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Sobre..." + +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." + +msgctxt "@label" +msgid "Account synced" +msgstr "Conta sincronizada" + +msgctxt "@label:status" +msgid "Action required" +msgstr "Necessária uma ação" + +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +msgctxt "@label" +msgid "Active print" +msgstr "Impressão ativa" + +msgctxt "@action:button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@action:button" +msgid "Add New" +msgstr "Adicionar Novo" + +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" + +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "Adicionar impressora UltiMaker via Digital Factory" + +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Adicionar uma impressora de Nuvem" + +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora de rede" + +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora local" + +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Adicionar ícone à bandeja do sistema *" + +msgctxt "@button" +msgid "Add local printer" +msgstr "Adicionar impressora local" + +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Adicionar prefixo de máquina ao nome do trabalho" + +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Adicionar ajustes de materiais e plugins do Marketplace" + +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." +msgid "Add more materials from Marketplace" +msgstr "Adicionar mais materiais ao Marketplace" + +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Adicionar impressora por IP" + +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Adicionar impressora por endereço IP" + +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Adicionando impressora {name} ({model}) da sua conta" + +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informação sobre Aderência" + +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do preenchimento da impressão." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." + +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Afetado Por" + +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Afeta" + +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos Os Arquivos (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos Os Tipos Suportados ({0})" + +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir enviar dados anônimos" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite carregar e exibir arquivos G-Code." + +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Sempre perguntar" + +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Sempre me perguntar" + +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Sempre descartar alterações da configuração" + +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Sempre importar modelos" + +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Sempre abrir como projeto" + +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Sempre transferir as alterações para o novo perfil" + +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" + +msgctxt "@label" +msgid "Annealing" +msgstr "Recozimento" + +msgctxt "@label" +msgid "Anonymous" +msgstr "Anônimo" + +msgctxt "@label Description for application component" +msgid "Application framework" +msgstr "Framework de Aplicações" + +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar deslocamentos de Extrusão ao G-Code" + +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Você está pronto para a impressão de nuvem?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Você tem certeza que quer abortar %1?" + +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Tem certeza que deseja abortar a impressão?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Você tem certeza que quer remover %1?" + +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." + +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Tem certeza que quer sair de %1?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Você tem certeza que quer mover %1 para o topo da fila?" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "Tem certeza que quer remover {printer_name} temporariamente?" + +msgctxt "@info:question" +msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." +msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" + +#, python-brace-format +msgctxt "@label {0} is the name of a printer that's about to be deleted." +msgid "Are you sure you wish to remove {0}? This cannot be undone!" +msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Posicionar Todos os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models in a grid" +msgstr "Organizar Todos os Modelos em Grade" + +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Fazer uma pergunta" + +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Auto Backup" + +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." + +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" + +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticamente atualizar Firmware" + +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras de rede disponíveis" + +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Imagem BMP" + +msgctxt "@button" +msgid "Back" +msgstr "Voltar" + +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Voltar" + +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" + +msgctxt "@button" +msgid "Backup Now" +msgstr "Backup Agora" + +msgctxt "@action:button" +msgid "Backup and Reset Configuration" +msgstr "Salvar e Restabelecer Configuração" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Permite backup e restauração da configuração." + +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" + +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Fazer backup e sincronizar os ajustes do Cura." + +msgctxt "@info:title" +msgid "Backups" +msgstr "Backups" + +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Visão de Baixo" + +msgctxt "@label" +msgid "Brand" +msgstr "Marca" + +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da mesa de impressão" + +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume de Impressão" + +msgctxt "@label" +msgid "Build plate" +msgstr "Mesa de Impressão" + +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da plataforma de impressão" + +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Materiais Empacotados" + +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Complementos Empacotados" + +msgctxt "@button" +msgid "Buy spool" +msgstr "Comprar carretel" + +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Por" + +msgctxt "@label Description for application dependency" +msgid "C/C++ Binding library" +msgstr "Biblioteca de Ligações C/C++" + +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA" + +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderização de câmera:" + +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Visão de câmera" + +msgctxt "@info:title" +msgid "Can't Find Location" +msgstr "Não Foi Encontrada Localização" + +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Não Foi Possível Abrir o Arquivo de Projeto" + +msgctxt "@label" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Não consegue conectar à sua impressora UltiMaker?" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Can't import profile from {0} before a printer is added." +msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" + +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Não foi possível escrever no arquivo UFP:" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Mensagem de alera no leitor de G-Code" + +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntralizar Modelo na Mesa" + +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centralizar Selecionados" + +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centralizar câmera quanto o item é selecionado" + +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Alterar scripts de pós-processamento ativos." + +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar material %1 de %2 para %3." + +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Alterar núcleo de impressão %1 de %2 para %3." + +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Alterações detectadas de sua conta UltiMaker" + +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações da sua conta" + +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Verificar tudo" + +msgctxt "@button" +msgid "Check for account updates" +msgstr "Verificar atualizações da conta" + +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Verificar atualizações na inicialização" + +msgctxt "@label" +msgid "Checking..." +msgstr "Verificando..." + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Verifica por atualizações de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." + +msgctxt "@label" +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "" +"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" +"\n" +"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" +"\n" +"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." + +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Esvaziar a Mesa de Impressão" + +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" + +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Clique no botão de exportar arquivo de material." + +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Fechando %1" + +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Encolher Todas As Categorias" + +msgctxt "@label" +msgid "Color" +msgstr "Cor" + +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modelo de Cor" + +msgctxt "@label" +msgid "Color scheme" +msgstr "Esquema de Cores" + +msgctxt "@info" +msgid "Compare and save." +msgstr "Comparar e salvar." + +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modo de Compatibilidade" + +msgctxt "@label Description for application dependency" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilidade entre Python 2 e 3" + +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Impressoras Compatíveis" + +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro de material compatível" + +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" + +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" + +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatível com Material Station" + +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" + +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Arquivo de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gerador de G-Code Comprimido" + +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações de Configuração" + +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuração não suportada" + +msgctxt "@header" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@label" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurar Cura..." + +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por Modelo" + +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurar a visibilidade dos ajustes..." + +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmar Mudança de Diâmetro" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar a Impressora de Rede" + +msgctxt "@action" +msgid "Connect via Network" +msgstr "Conectar pela rede" + +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Conectado pela rede" + +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras conectadas" + +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Conectado via USB" + +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "Conectado pela nuvem" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." + +msgctxt "@tooltip:button" +msgid "Consult the UltiMaker Community." +msgstr "Consultar a Comunidade UltiMaker." + +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Converter Imagem" + +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número da Ventoinha de Resfriamento" + +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "Copiar todos os valores alterados para todos os extrusores" + +msgctxt "@action:inmenu menubar:edit" +msgid "Copy to clipboard" +msgstr "Copiar para a área de transferência" + +msgctxt "@action:menu" +msgid "Copy value to all extruders" +msgstr "Copiar valor para todos os extrusores" + +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Custo por Metro" + +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível acessar informação de atualização." + +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Não foi possível conectar ao dispositivo." + +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" + +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." + +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Não foi possível importar material %1: %2" + +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Não foi possível interpretar a resposta de servidor." + +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Não foi possível conectar ao Marketplace." + +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." + +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Não foi possível salvar o arquivo de materiais para {}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível salvar em {0}: {1}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Não foi possível salvar em unidade removível {0}: {1}" + +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Não foi possível transferir os dados para a impressora." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"Sem permissão para executar processo." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O sistema operacional está bloqueando (antivírus?)" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O recurso está temporariamente indisponível" + +msgctxt "@title:window" +msgid "Crash Report" +msgstr "Relatório de Problema" + +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Criar Perfil" + +msgctxt "@text" +msgid "Create a free UltiMaker Account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@button" +msgid "Create a free UltiMaker account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Cria um volume em que os suportes não são impressos." + +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:button" +msgid "Create new" +msgstr "Criar novo" + +msgctxt "@button" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" + +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Cria projetos de impressão na Digital Library." + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" + +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Criando seu backup..." + +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis do Cura 15.04" + +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backups do Cura" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Backups Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil do Cura" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis do Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de Perfis do Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Arquivo de Projeto 3MF do Cura" + +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +msgctxt "@title:window" +msgid "Cura can't start" +msgstr "O Cura não consegue iniciar" + +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." + +msgctxt "@info:credit" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" +"Cura orgulhosamente usa os seguintes projetos open-source:" + +msgctxt "@label" +msgid "Cura language" +msgstr "Linguagem do Cura" + +msgctxt "@label Cura version number" +msgid "Cura version" +msgstr "Versão do Cura" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +msgctxt "@title:column" +msgid "Current changes" +msgstr "Alterações atuais" + +msgctxt "@header" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +msgctxt "@label" +msgid "Custom profile" +msgstr "Perfil personalizado" + +msgctxt "@info" +msgid "Custom profile name:" +msgstr "Nome de perfil personalizado:" + +msgctxt "@label" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@label:header" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@action:inmenu menubar:edit" +msgid "Cut" +msgstr "Cortar" + +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Malha de corte" + +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Mais escuro é mais alto" + +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dados Enviados" + +msgctxt "@label Description for application dependency" +msgid "Data interchange format" +msgstr "Formato de Intercâmbio de Dados" + +msgctxt "@button" +msgid "Decline" +msgstr "Recusar" + +msgctxt "@button" +msgid "Decline and close" +msgstr "Rejeitar e fechar" + +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Recusar e remover da conta" + +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +msgctxt "@label" +msgid "Default" +msgstr "Default" + +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " + +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamento default ao abrir um arquivo de projeto" + +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamento default ao abrir um arquivo de projeto: " + +msgctxt "@action:button" +msgid "Defaults" +msgstr "Defaults" + +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Define a espessura das paredes laterais, teto e base da sua peça." + +msgctxt "@label" +msgid "Delete" +msgstr "Remover" + +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Apagar o Backup" + +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Remover Modelo" + +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Remover Selecionados" + +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Remover trabalho de impressão" + +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +msgctxt "@label Description for development tool" +msgid "Dependency and package manager" +msgstr "Gestor de pacote e dependência" + +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profundidade (mm)" + +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivado de" + +msgctxt "@header" +msgid "Description" +msgstr "Descrição" + +msgctxt "@label" +msgid "Description" +msgstr "Descrição" + +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +msgctxt "@label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "@button" +msgid "Disable" +msgstr "Desabilitar" + +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desabilitar Extrusor" + +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "Descartar e não perguntar novamente" + +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Descartar alterações" + +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar ajustes atuais" + +msgctxt "@title:window" +msgid "Discard or Keep changes" +msgstr "Descartar ou Manter alterações" + +msgctxt "@button" +msgid "Dismiss" +msgstr "Dispensar" + +msgctxt "@label" +msgid "Display Name" +msgstr "Exibir Nome" + +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Exibir erros de modelo" + +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Exibir seções pendentes" + +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Não mostrar essa mensagem novamente" + +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" + +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Não exibir resumo do projeto ao salvar novamente" + +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "Não exibir este ajuste" + +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +msgctxt "@button" +msgid "Done" +msgstr "Feito" + +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgrade" + +msgctxt "@button" +msgid "Downgrading..." +msgstr "Fazendo downgrade..." + +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplicar Perfil" + +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." + +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" + +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Ejetar dispositivo removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." + +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" + +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar Extrusor" + +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." +msgstr "Habilita a impressão de brim ou raft. Adicionará uma área plana em volta do objeto ou abaixo dele que seja fácil de destacar depois. Desabilitar este ajuste resulta em um skirt em volta do objeto por default." + +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." + +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "@label" +msgid "End-to-end solution for fused filament 3D printing." +msgstr "Solução completa para impressão 3D com filamento fundido." + +msgctxt "@info:title" +msgid "EnginePlugin" +msgstr "EnginePlugin" + +msgctxt "@label" +msgid "Engineering" +msgstr "Engenharia" + +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Assegurar que os modelos sejam mantidos separados" + +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Entre o endereço IP da sua impressora na rede." + +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Entre o endereço IP de sua impressora." + +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + +msgctxt "@title:groupbox" +msgid "Error traceback" +msgstr "Traceback do erro" + +msgctxt "@label" +msgid "Estimated time left" +msgstr "Tempo restante estimado" + +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Sair da Tela Cheia" + +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos Os Materiais" + +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar Seleção..." + +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar arquivo de material" + +msgctxt "@info:title" +msgid "Export succeeded" +msgstr "Exportação concluída" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Exported profile to {0}" +msgstr "Perfil exportado para {0}" + +msgctxt "@tooltip:button" +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Estende o UltiMaker Cura com complementos e perfis de material." + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite scripts criados por usuários para pós-processamento" + +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Final do Extrusor" + +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Inicial do Extrusor" + +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) Desabilitado(s)" + +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhado" + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Falha em conectar à Digital Factory." + +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." + +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." + +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Falha em exportar material para %1: %2" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Failed to export profile to {0}: {1}" +msgstr "Falha ao exportar perfil para {0}: {1}" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to export profile to {0}: Writer plugin reported failure." +msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}: {1}" +msgstr "Falha ao importar perfil de {0}: {1}" + +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Falha em carregar pacotes:" + +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." + +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Falha em salvar o arquivo de materiais" + +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoritos" + +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do Filamento" + +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso do Filamento" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "O Arquivo Já Existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Arquivo Salvo" + +#, python-brace-format +msgctxt "@info:status" +msgid "File {0} does not contain any valid profile." +msgstr "Arquivo {0} não contém nenhum perfil válido." + +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +msgctxt "@info:title" +msgid "Finding Location" +msgstr "Buscando Localização" + +msgctxt "@info:status" +msgid "Finding new location for objects" +msgstr "Achando novos lugares para objetos" + +msgctxt "@action:button" +msgid "Finish" +msgstr "Finalizar" + +msgctxt "@label:status" +msgid "Finished" +msgstr "Finalizado" + +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 em %2" + +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização do Firmware" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador de Atualizações de Firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de Firmware" + +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." + +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." + +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." + +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização do Firmware completada." + +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." + +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de Firmware falhou devido a um erro desconhecido." + +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido a firmware não encontrado." + +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão do firmware" + +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." + +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Siga o procedimento para adicionar uma nova impressora" + +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." + +msgctxt "@label" +msgid "Font" +msgstr "Fonte" + +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." + +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." + +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." + +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" + +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Visão Frontal" + +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Viso de Frente" + +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Arquivo G" + +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Detalhes do G-Code" + +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Arquivo G-Code" + +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de Perfil de G-Code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-Code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Gerador de G-Code" + +msgctxt "@label" +msgid "G-code flavor" +msgstr "Sabor de G-Code" + +msgctxt "@label Description for application component" +msgid "G-code generator" +msgstr "Gerador de G-Code" + +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo binário." + +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo binário." + +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Imagem GIF" + +msgctxt "@label Description for application dependency" +msgid "GUI framework" +msgstr "Framework Gráfica" + +msgctxt "@label Description for application dependency" +msgid "GUI framework bindings" +msgstr "Ligações da Framework Gráfica" + +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." +msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "@label Description for development tool" +msgid "Generating Windows installers" +msgstr "Gerando instaladores Windows" + +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Ter notificações para atualizações de complementos" + +msgctxt "@action" +msgid "Get started" +msgstr "Começar" + +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globais" + +msgctxt "@label Description for application component" +msgid "Graphical user interface" +msgstr "Interface Gráfica de usuário" + +msgctxt "@label" +msgid "Grid Placement" +msgstr "Posicionamento em Grade" + +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" + +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." + +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." + +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" + +msgctxt "@label" +msgid "Heated bed" +msgstr "Mesa aquecida" + +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altura (mm)" + +msgctxt "@label" +msgid "Helpers" +msgstr "Assistentes" + +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Omitir todas as impressoras conectadas" + +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Ocultar este ajuste" + +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." + +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." + +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Como carregar novos perfis de material na minha impressora" + +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Recusar enviar dados anônimos" + +msgctxt "@label:status" +msgid "Idle" +msgstr "Ocioso" + +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" + +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" + +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de Imagens" + +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar Material" + +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importar Perfil" + +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importar todos como modelos" + +msgctxt "@action:button" +msgid "Import models" +msgstr "Importar modelos" + +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Em manutenção. Por favor verifique a impressora" + +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." + +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora:" + +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Para usar o pacote você precisará reiniciar o Cura" + +msgctxt "@label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "@tooltip" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "Densidade de Preenchimento" + +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Somente malha de preenchimento" + +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Preenchimento se sobrepondo a este modelo foi modificado." + +msgctxt "@info:title" +msgid "Information" +msgstr "Informação" + +msgctxt "@title" +msgid "Information" +msgstr "Informação" + +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializando Máquina Ativa..." + +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializando volume de impressão..." + +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializando motor..." + +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializando gestor de máquinas..." + +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interna" + +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Internas" + +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." + +msgctxt "@button" +msgid "Install" +msgstr "Instalar" + +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalar Materiais" + +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" + +msgctxt "@action:button" +msgid "Install Packages" +msgstr "Instalar Pacotes" + +msgctxt "@header" +msgid "Install Packages" +msgstr "Instala Pacotes" + +msgctxt "@header" +msgid "Install Plugins" +msgstr "Instalar Complementos" + +msgctxt "@action:button" +msgid "Install missing packages" +msgstr "Instalar pacotes faltantes" + +msgctxt "@title" +msgid "Install missing packages" +msgstr "Instala pacotes faltantes" + +msgctxt "@label" +msgid "Install missing packages from project file." +msgstr "Instala pacotes faltantes do arquivo de projeto." + +msgctxt "@button" +msgid "Install pending updates" +msgstr "Instalação aguardando atualizações" + +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiais Instalados" + +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Complementos Instalados" + +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." + +msgctxt "@action:label" +msgid "Intent" +msgstr "Objetivo" + +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +msgctxt "@label Description for application component" +msgid "Interprocess communication library" +msgstr "Biblioteca de comunicação interprocessos" + +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +msgctxt "@info:status" +msgid "Invalid file URL:" +msgstr "URL de arquivo inválida:" + +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverter a direção da ampliação de câmera." + +msgctxt "@label" +msgid "Is printed as support." +msgstr "Está impresso como suporte." + +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." + +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Imagem JPEG" + +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Imagem JPG" + +msgctxt "@label Description for application dependency" +msgid "JSON parser" +msgstr "Parser JSON" + +msgctxt "@label" +msgid "Job Name" +msgstr "Nome do Trabalho" + +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de Trote" + +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de Trote" + +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "Manter e não perguntar novamente" + +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Manter alterações" + +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Manter configurações da impressora" + +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Manter este ajuste visível" + +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última atualização: %1" + +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura de Camada" + +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Visão de Camadas" + +msgctxt "@button:label" +msgid "Learn More" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Aprenda como conectar sua impressora à Digital Factory" + +msgctxt "@tooltip:button" +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Saiba como começar com o UltiMaker Cura." + +msgctxt "@action" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button:label" +msgid "Learn more" +msgstr "Saber mais" + +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Saber mais sobre perfis de impressão do Cura" + +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Saiba mais sobre adicionar impressoras ao Cura" + +msgctxt "@label" +msgid "Learn more about project packages." +msgstr "Aprenda mais sobre pacotes de projeto" + +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Visão do Lado Esquerdo" + +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Visão à Esquerda" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de Perfis de Cura Legado" + +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Deixe os desenvolvedores saberem que algo está errado." + +msgctxt "@action" +msgid "Level build plate" +msgstr "Nivelar mesa" + +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Mais claro é mais alto" + +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linear" + +msgctxt "@label Description for development tool" +msgid "Linux cross-distribution application deployment" +msgstr "Implementação de aplicação multidistribuição em Linux" + +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." + +msgctxt "@button" +msgid "Load more" +msgstr "Carregar mais" + +msgctxt "@button" +msgid "Loading" +msgstr "Carregando" + +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." + +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Carregando configurações disponíveis da impressora..." + +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Carregando interface..." + +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Carregando máquinas..." + +msgctxt "@label:status" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@title" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impressoras locais" + +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Login falhou" + +msgctxt "@info:title" +msgid "Login failed" +msgstr "Login falhou" + +msgctxt "@title:groupbox" +msgid "Logs" +msgstr "Registros" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" + +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "A conexão à impressora foi perdida" + +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes da Máquina" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Ação de Ajustes de Máquina" + +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." + +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." + +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Administrar Materiais..." + +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Adm&inistrar Impressoras..." + +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Administrar perfis..." + +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerenciar Visibilidade dos Ajustes..." + +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerenciar backups" + +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no navegador" + +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gerenciar trabalhos de impressão" + +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir Impressora" + +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerenciar impressoras" + +msgctxt "@text" +msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." +msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gerencia extensões à aplicação e permite navegar extensões do website da UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gerencia conexões de rede com as impressoras de rede da UltiMaker." + +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +msgctxt "@label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" + +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Material" + +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +msgctxt "@title" +msgid "Material color picker" +msgstr "Seletor de cores do material" + +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" + +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" + +msgctxt "@action:label" +msgid "Material settings" +msgstr "Ajustes de material" + +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@label" +msgid "Materials compatible with active printer:" +msgstr "Materiais compatíveis com a impressora ativa:" + +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo de Malha" + +msgctxt "@action:label" +msgid "Mode" +msgstr "Modo" + +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelo" + +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Erros de Modelo" + +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "Modificar G-Code" + +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar ajustes para sobreposições" + +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Estágio de Monitor" + +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Monitorar impressão" + +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." + +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Monitora as impressoras na Ultimaker Digital Factory." + +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" + +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações em coleção anônima de dados" + +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Move o trabalho de impressão para o topo da fila" + +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mover pra a Posição Seguinte" + +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" + +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplicar Selecionados" + +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplicar Modelo Selecionado" +msgstr[1] "Multiplicar Modelos Selecionados" + +msgctxt "@info" +msgid "Multiply selected item and place them in a grid of build plate." +msgstr "Multiplica o item selecionado e o dispõe em grade na plataforma de impressão." + +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplicando e colocando objetos" + +msgctxt "@title" +msgid "My Backups" +msgstr "Meus backups" + +msgctxt "@label:button" +msgid "My printers" +msgstr "Minhas impressoras" + +msgctxt "@action:label" +msgid "Name" +msgstr "Nome" + +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impressoras habilitadas pela rede" + +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Novo firmware estável de %s disponível" + +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "Novo Perfil Personalizado" + +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "Novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." + +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." + +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nova impressora detectada na sua conta Ultimaker" +msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" + +msgctxt "@title:window" +msgid "New project" +msgstr "Novo projeto" + +msgctxt "@action:button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@info:title" +msgid "Nightly build" +msgstr "Compilação noturna" + +msgctxt "@info" +msgid "No" +msgstr "Não" + +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informação de compatibilidade" + +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." + +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Sem estimativa de custo disponível" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "No custom profile to import in file {0}" +msgstr "Não há perfil personalizado a importar no arquivo {0}" + +msgctxt "@label" +msgid "No items to select from" +msgstr "Sem itens para selecionar" + +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Não há camadas a exibir" + +msgctxt "@message" +msgid "No more results to load" +msgstr "Não há mais resultados a carregar" + +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Sem permissão para gravar o espaço de trabalho aqui." + +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenhuma impressora encontrada" + +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Nenhuma impressora encontrada em sua conta?" + +msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." +msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." +msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." + +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Não há resultados encontrados com o filtro atual" + +msgctxt "@label" +msgid "No time estimation available" +msgstr "Sem estimativa de tempo disponível" + +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "Impressora Não-UltiMaker" + +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" + +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" + +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Não é host de grupo" + +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Não conectado a nenhuma impressora" + +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Ausente no perfil" + +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Não sobreposto" + +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não Suportado" + +msgctxt "@label" +msgid "Not yet initialized" +msgstr "Ainda não inicializado" + +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Nada está exibido porque você precisa fatiar primeiro." + +msgctxt "@label" +msgid "Nozzle" +msgstr "Bico" + +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes do Bico" + +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Deslocamento X do Bico" + +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Deslocamento Y do Bico" + +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do bico" + +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +msgctxt "@action:button" +msgid "OK" +msgstr "Ok" + +msgctxt "@label" +msgid "OS language" +msgstr "Linguagem do SO" + +msgctxt "@label" +msgid "Object list" +msgstr "Lista de objetos" + +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Off" + +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Somente Exibir Camadas Superiores" + +#, python-brace-format +msgctxt "@info:status" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" + +msgctxt "@action:button" +msgid "Open" +msgstr "Abrir" + +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &Recente" + +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir Arquivo(s)" + +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Abrir Arquivo(s)..." + +msgctxt "@title:window" +msgid "Open Project" +msgstr "Abrir Projeto" + +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Abrir Arquivo de Projeto" + +msgctxt "@action:label" +msgid "Open With" +msgstr "Abrir Com" + +msgctxt "@action:button" +msgid "Open as project" +msgstr "Abrir como projeto" + +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Abrir arquivo(s)" + +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir o projeto mesmo assim" + +msgctxt "@title:window" +msgid "Open project file" +msgstr "Abrir arquivo de projeto" + +msgctxt "@label OpenGL version" +msgid "OpenGL" +msgstr "OpenGL" + +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrindo e salvando arquivos" + +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Otimizado para o Air Manager" + +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +msgid "Orthographic" +msgstr "Ortográfica" + +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfico" + +msgctxt "@tooltip" +msgid "Other" +msgstr "Outros" + +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." + +msgctxt "@label" +msgid "Other printers" +msgstr "Outras impressoras" + +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Externa" + +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Sobreposições neste modelo não são suportadas." + +msgctxt "@action:button" +msgid "Override" +msgstr "Sobrepor" + +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." + +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Sobrepõe %1 ajuste." +msgstr[1] "Sobrepõe %1 ajustes." + +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" + +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Imagem PNG" + +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" + +msgctxt "@label Description for development tool" +msgid "Packaging Python-applications" +msgstr "Empacotamento de aplicações Python" + +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Interpretando G-Code" + +msgctxt "@action:inmenu menubar:edit" +msgid "Paste from clipboard" +msgstr "Colar da área de transferência" + +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label" +msgid "Per Model Settings" +msgstr "Ajustes por Modelo" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de Ajustes Por Modelo" + +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:label" +msgid "Placement" +msgstr "Posicionamento" + +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Colocando Objeto" + +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Colocando Objetos" + +msgctxt "@label Type of platform" +msgid "Platform" +msgstr "Plataforma" + +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Por favor conecte sua impressora à rede." + +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Por favor entre um endereço IP válido." + +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." + +msgctxt "@info" +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Por favor certifique-se que sua impressora está conectada>\n" +"- Verifique se ela está ligada.\n" +"- Verifique se ela está conectada à rede.\n" +"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." + +msgctxt "@text" +msgid "Please name your printer" +msgstr "Por favor dê um nome à sua impressora" + +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Por favor prepare o G-Code antes de exportar." + +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Por favor dê um nome a este perfil." + +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, escolha um novo nome." + +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Por favor leia e concorde com a licença do complemento." + +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Por favor remova a impressão" + +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Por favor revise os ajustes e verifique se seus modelos:\n" +"- Cabem dentro do volume de impressão\n" +"- Estão associados a um extrusor habilitado\n" +"- Não estão todos configurados como malhas de modificação" + +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" + +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" + +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." + +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." + +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Por favor espere até que o trabalho atual tenha sido enviado." + +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acordo de Licença do Complemento" + +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Acordo de licença do complemento" + +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@label Description for application dependency" +msgid "Polygon clipping library" +msgstr "Biblioteca de recorte de polígonos" + +msgctxt "@label Description for application component" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" + +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Pós-Processamento" + +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-processamento" + +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de Pós-Processamento" + +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts de Pós-Processamento" + +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pré-aquecer" + +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Preparar" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Estágio de Preparação" + +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras pré-ajustadas" + +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "name" +msgid "Preview Stage" +msgstr "Estágio de Pré-visualização" + +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de Prime" + +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimir Modelo Selecionado Com:" +msgstr[1] "Imprimir Modelos Selecionados Com:" + +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimir Modelo Selecionado com %1" +msgstr[1] "Imprimir Modelos Selecionados com %1" + +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" + +msgctxt "@info:title" +msgid "Print error" +msgstr "Erro de impressão" + +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em Progresso" + +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." + +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Trabalho de impressão enviado à impressora com sucesso." + +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprime pela rede" + +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impressão" + +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@action:label" +msgid "Print with" +msgstr "Imprimir com" + +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupo de Impressora" + +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de Impressora" + +msgctxt "@label" +msgid "Printer control" +msgstr "Controle da Impressora" + +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "A impressora não aceita comandos" + +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de impressora" + +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Ajustes da impressora" + +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Impressoras adicionadas da Digital Factory:" + +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Impressoras faltando?" + +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes da Cabeça de Impressão" + +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimindo" + +msgctxt "@label" +msgid "Printing Time" +msgstr "Tempo de Impressão" + +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimindo..." + +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +msgctxt "@button" +msgid "Processing" +msgstr "Processando" + +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Processando Camadas" + +msgctxt "@label" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@label" +msgid "Profile author" +msgstr "Autor do perfil" + +msgctxt "@info:status" +msgid "Profile is missing a quality type." +msgstr "Falta um tipo de qualidade ao Perfil." + +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +#, python-brace-format +msgctxt "@info:status" +msgid "Profile {0} has an unknown file type or is corrupted." +msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." + +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles compatible with active printer:" +msgstr "Perfis compatíveis com a impressora ativa:" + +msgctxt "@label Description for application dependency" +msgid "Programming language" +msgstr "Linguagem de Programação" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Arquivo de projeto {0} está corrompido: {1}." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." +msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." + +msgctxt "@label" +msgid "Properties" +msgstr "Propriedades" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Provê ações de máquina para atualização do firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Provê um estágio de monitor no Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Provê uma visualização de malha sólida normal." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Provê um estágio de preparação no Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Provê uma etapa de pré-visualização ao Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Provê suporte a escrita e reconhecimento de drives a quente." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Provê suporte à exportação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Provê suporte à importação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Provê suporte a importar perfis de arquivos G-Code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Provê suporte a importação de perfis de versões legadas do Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Provê suporte à leitura de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Provê suporta à leitura de arquivos AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Provê suporte à leitura de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Provê suporte à leitura de arquivos X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Provê suporta a ler arquivos de modelo." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Provê suporte à escrita de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Provê Ajustes Por Modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Provê a visão de Raios-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Provê a ligação ao backend de fatiamento CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Provê a pré-visualização de dados de camada fatiados." + +msgctxt "@label" +msgid "PyQt version" +msgstr "Versão do PyQt" + +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Biblioteca de rastreamento de Erros Python" + +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Ligações de Python pra Clipper" + +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Ligações de Python para a libnest2d" + +msgctxt "@label" +msgid "Qt version" +msgstr "Versão do Qt" + +#, python-brace-format +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." + +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila Cheia" + +msgctxt "@label" +msgid "Queued" +msgstr "Enfileirados" + +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair de %1" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê G-Code de um arquivo comprimido." + +msgctxt "@button" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@label" +msgid "Recommended print settings" +msgstr "Ajustes recomendados de impressão" + +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Ajustes recomendados (para %1) foram alterados." + +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar Lista" + +msgctxt "@button" +msgid "Refreshing..." +msgstr "Atualizando..." + +msgctxt "@label" +msgid "Release Notes" +msgstr "Notas de lançamento" + +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recarregar Todos Os Modelos" + +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Lembrar minha escolha" + +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Unidade Removível" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de Dispositivo de Escrita Removível" + +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Remover impressoras" + +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "Remover impressoras?" + +msgctxt "@action:button" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Renomear Perfil" + +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Relatar um &Bug" + +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Relatar um problema" + +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Relatar um bug" + +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Relatar um bug no issue tracker do UltiMaker Cura." + +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer mudanças na configuração" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Reestabelecer as Posições de Todos Os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Remover as Transformações de Todos Os Modelos" + +msgctxt "@info" +msgid "Reset to defaults." +msgstr "Restaurar aos defaults." + +msgctxt "@label" +msgid "Resolution" +msgstr "Resolução" + +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar Backup" + +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurar posição da janela no início" + +msgctxt "@label" +msgid "Resume" +msgstr "Continuar" + +msgctxt "@label" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +msgctxt "@button" +msgid "Retry?" +msgstr "Tentar novamente?" + +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Visão do Lado Direito" + +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Visão à Direita" + +msgctxt "@label Description for application dependency" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificados-Raiz para validar confiança SSL" + +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware com Segurança" + +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Ficha de segurança" + +msgctxt "@action:button" +msgid "Save" +msgstr "Salvar" + +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salvar o projeto Cura" + +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Salvar o projeto Cura e imprimir o arquivo" + +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "Salvar Perfil Personalizado" + +msgctxt "@title:window" +msgid "Save Project" +msgstr "Salvar Projeto" + +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Salvar Projeto..." + +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "Salvar como novo perfil personalizado" + +msgctxt "@action:button" +msgid "Save changes" +msgstr "Salvar alterações" + +msgctxt "@button" +msgid "Save new profile" +msgstr "Salvar novo perfil" + +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Grava o arquivo .umm em um pendrive USB." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Salvar em Unidade Removível" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Salvar em Unidade Removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Salvo em Unidade Removível {0} como {1}" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Salvando" + +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Salvando na Unidade Removível {0}" + +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos minúsculos" + +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos grandes" + +msgctxt "@placeholder" +msgid "Search" +msgstr "Buscar" + +msgctxt "@info" +msgid "Search in the browser" +msgstr "Buscar no navegador" + +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Ajustes de busca" + +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar Todos Os Modelos" + +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Selecione Impressora" + +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar Ajustes a Personalizar para este modelo" + +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." + +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecione configuração" + +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selecionar modelos ao carregar" + +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar ajustes" + +msgctxt "@action" +msgid "Select upgrades" +msgstr "Selecionar Atualizações" + +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione sua impressora da lista abaixo:" + +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Enviar informação (anônima) de impressão" + +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-Code" + +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." + +msgctxt "@action:button" +msgid "Send crash report to UltiMaker" +msgstr "Enviar relatório de falha à UltiMaker" + +msgctxt "@action:button" +msgid "Send report" +msgstr "Enviar relatório" + +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Enviando Trabalho de Impressão" + +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Enviando material para a impressora" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentinela para Registro" + +msgctxt "@label Description for application dependency" +msgid "Serial communication library" +msgstr "Biblioteca de comunicação serial" + +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir Como Extrusor Ativo" + +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade dos Ajustes" + +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ajustando preferências..." + +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando cena..." + +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilidade dos ajustes" + +msgctxt "@label" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" + +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ajustes atualizados" + +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" + +msgctxt "@label" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "Espessura de Perímetro" + +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" + +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "O Cura deve abrir no lugar onde foi fechado?" + +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" + +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" + +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" + +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." + +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" + +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" + +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Os modelos devem ser selecionados após serem carregados?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" + +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "O comportamento default de ampliação deve ser invertido?" + +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "A ampliação (zoom) deve se mover na direção do mouse?" + +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Exibir 5 Camadas Superiores Detalhadas" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Exibir Pasta de Configuração" + +msgctxt "@button" +msgid "Show Custom" +msgstr "Mostrar Personalizado" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Exibir &Documentação Online" + +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Mostrar Resolução de Problemas Online" + +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Exibir tudo" + +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostrar todas as impressoras conectadas" + +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostrar um ícone e notificações na área de notificações do sistema." + +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Exibir mensagem de alerta no leitor de G-Code." + +msgctxt "@action:button" +msgid "Show configuration folder" +msgstr "Mostrar a pasta de configuração" + +msgctxt "@action:button" +msgid "Show detailed crash report" +msgstr "Exibir relatório de falha detalhado" + +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Exibir diálogo de resumo ao salvar projeto" + +msgctxt "@tooltip:button" +msgid "Show your support for Cura with a donation." +msgstr "Mostre seu suporte ao Cura com uma doação." + +msgctxt "@button" +msgid "Sign Out" +msgstr "Deslogar" + +msgctxt "@action:button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@title:header" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Fazer login na Ultimaker Digital Factory" + +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "Fazer login na Digital Factory" + +msgctxt "@label" +msgid "Sign in to the UltiMaker platform" +msgstr "Entre na plataforma UltiMaker" + +msgctxt "name" +msgid "Simulation View" +msgstr "Visão Simulada" + +msgctxt "@tooltip" +msgid "Skin" +msgstr "Contorno" + +msgctxt "@action:button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt (Saia)" + +msgctxt "@button" +msgid "Slice" +msgstr "Fatiar" + +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Fatiar automaticamente" + +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Fatiar automaticamente quando mudar ajustes." + +msgctxt "name" +msgid "Slice info" +msgstr "Informação de fatiamento" + +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Fatiamento falhado" + +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." + +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Fatiando..." + +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Suavização" + +msgctxt "name" +msgid "Solid View" +msgstr "Visão Sólida" + +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Visão sólida" + +msgctxt "@label" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" +"\n" +"Clique para tornar estes ajustes visíveis." + +msgctxt "@info:status" +msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." +msgstr "Alguns dos pacotes usados no arquivo de projeto não estão atualmente instalados no Cura, isto pode produzir resultados de impressão não desejados. Recomendamos fortemente instalar todos os pacotes requeridos pelo MarketPlace." + +msgctxt "@info:title" +msgid "Some required packages are not installed" +msgstr "Alguns pacotes requeridos não estão instalados" + +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Alguns valores de ajustes definidos em %1 foram sobrepostos." + +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" +"\n" +"Clique para abrir o gerenciador de perfis." + +msgctxt "@action:label" +msgid "Some settings from current profile were overwritten." +msgstr "Alguns ajustes do perfil atual foram sobrescritos." + +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." + +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." + +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Alguma coisa deu errado..." + +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "@action:inmenu" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@label:button" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versões estáveis ou beta" + +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Versões estáveis somente" + +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Formato de Triângulos de Stanford" + +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Iniciar Nivelamento da Mesa de Impressão" + +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "@label" +msgid "Start the slicing process" +msgstr "Inicia o processo de fatiamento" + +msgctxt "@label" +msgid "Starts" +msgstr "Inícios" + +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." + +msgctxt "@label" +msgid "Strength" +msgstr "Força" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado para %1 com sucesso" + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com sucesso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Successfully imported profile {0}." +msgstr "Perfil {0} importado com sucesso." + +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Resumo - Projeto do Cura" + +msgctxt "@label" +msgid "Support" +msgstr "Suporte" + +msgctxt "@tooltip" +msgid "Support" +msgstr "Suporte" + +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de Suporte" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Apagador de Suporte" + +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Preenchimento de Suporte" + +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface de Suporte" + +msgctxt "@action:label" +msgid "Support Type" +msgstr "Tipo de Suporte" + +msgctxt "@label Description for application dependency" +msgid "Support library for faster math" +msgstr "Biblioteca de suporte para matemática acelerada" + +msgctxt "@label Description for application component" +msgid "Support library for file metadata and streaming" +msgstr "Biblioteca de suporte para streaming e metadados de arquivo" + +msgctxt "@label Description for application component" +msgid "Support library for handling 3MF files" +msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling STL files" +msgstr "Biblioteca de suporte para manuseamento de arquivos STL" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling triangular meshes" +msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" + +msgctxt "@label Description for application dependency" +msgid "Support library for scientific computing" +msgstr "Biblioteca de suporte para computação científica" + +msgctxt "@label Description for application dependency" +msgid "Support library for system keyring access" +msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" + +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronizar perfis de material via USB" + +msgctxt "@action:button" +msgid "Sync materials" +msgstr "Sincronizar materiais" + +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizar materiais usando USB" + +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@action:button" +msgid "Sync with Printers" +msgstr "Sincronizar com Impressoras" + +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +msgctxt "@title:groupbox" +msgid "System information" +msgstr "Informação do Sistema" + +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Ficha técnica" + +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "A quantidade de suavização para aplicar na imagem." + +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "O perfil de recozimento requer pós-processamento em um forno depois da impressão terminar. Este perfil retém a acuidade dimensional da parte impressão depois do recozimento e melhora a força, rigidez e resistência térmica." + +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" +msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" + +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "O backup excede o tamanho máximo de arquivo." + +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "A altura-base da mesa de impressão em milímetros." + +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." + +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." + +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." + +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "As configurações não estão disponíveis porque a impressora está desconectada." + +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da mesa aquecida." + +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste hotend." + +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade da mesa de impressão em milímetros" + +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." + +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." + +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" + +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." + +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" + +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" + +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes serão adicionados:" + +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" + +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Os seguintes materiais receberão novos perfis de material:" + +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O seguinte script está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" + +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Os seguintes ajustes definem a força de sua peça." + +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." + +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." +msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." + +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel da \"Base\"." + +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" + +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O bico inserido neste extrusor." + +msgctxt "@label" +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"O padrão do material de preenchimento da impressão:\n" +"\n" +"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" +"\n" +"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" +"\n" +"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." + +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." +msgstr "O complemento associado com o projeto Cura não foi encontrado no Ultimaker Marketplace. Como o complemento pode ser necessário para fatiar o projeto, pode não ser possível corretamente fatiar este arquivo." + +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "O trabalho de impressão foi submetido com sucesso" + +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." + +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está conectada." + +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" + +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado provido não está correto." + +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "As notas de lançamento não puderam ser abertas." + +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "A resposta da Digital Factory parece estar corrompida." + +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "A resposta da Digital Factory veio sem informações importantes." + +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." + +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura em que pré-aquecer a mesa." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura com a qual pré-aquecer o hotend." + +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." + +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na plataforma de impressão" + +msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." +msgid "Theme*:" +msgstr "Tema*:" + +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" + +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." + +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Não há perfis correspondendo à configuração deste extrusor." + +msgctxt "@info:status" +msgid "There is no active printer yet." +msgstr "Não há impressora ativa ainda." + +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Não foi encontrada nenhuma impressora em sua rede." + +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." + +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Houve um erro ao tentar restaurar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Houve um erro ao criar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Houve um erro ao transferir seu backup." + +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." + +msgctxt "@text:window" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" + +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." + +msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após o reinício." + +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." + +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Esta impressora não está ligada à Digital Factory:" +msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" + +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." + +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." + +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "This profile {0} contains incorrect data, could not import it." +msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." + +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." + +msgctxt "@label" +msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." +msgstr "Este projeto contém materiais ou complementos que não estão atualmente instalados no Cura.
    Instale os pacotes faltantes e abra novamente o projeto." + +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Este ajuste tem um valor que é diferente do perfil.\n" +"\n" +"Clique para restaurar o valor do perfil." + +msgctxt "@item:tooltip" +msgid "This setting has been hidden by the active machine and will not be visible." +msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." + +msgctxt "@item:tooltip %1 is list of setting names" +msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." +msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." +msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." +msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." + +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." + +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" +"\n" +"Clique para restaurar o valor calculado." + +msgctxt "@label" +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." + +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" + +msgctxt "@info:warning" +msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" +msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" + +msgctxt "@label" +msgid "Time estimation" +msgstr "Estimativa de tempo" + +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Tempo esgotado ao autenticar com o servidor da conta." + +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." + +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" + +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." + +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" + +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Alternar Tela Cheia" + +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Topo / Base" + +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Visão Superior" + +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Visão de Cima" + +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo total de impressão" + +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Rastrear a impressão na Ultimaker Digital Factory" + +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidez" + +msgctxt "@tooltip" +msgid "Travel" +msgstr "Percurso" + +msgctxt "@label" +msgid "Travels" +msgstr "Percursos" + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor Trimesh" + +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@button" +msgid "Try again" +msgstr "Tentar novamente" + +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Gerador de UFP" + +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "@button" +msgid "UltiMaker Account" +msgstr "Conta na UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Material Certificado UltiMaker" + +msgctxt "@text:window" +msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" + +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Pacote de Formato da UltiMaker" + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexão de Rede UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Pacote Verificado UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Complemento Verificado UltiMaker" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ações de máquina UltiMaker" + +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "Impressora UltiMaker" + +msgctxt "@label:button" +msgid "UltiMaker support" +msgstr "Suporte UltiMaker" + +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digital Library da UltiMaker" + +msgctxt "@info:status" +msgid "Unable to add the profile." +msgstr "Não foi possível adicionar o perfil." + +msgctxt "@info:status" +msgid "Unable to find a location within the build volume for all objects" +msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" +msgstr "Não foi possível encontrar o executável do servidor local de EnginePlugin para: {self._plugin_id}" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Não foi possível matar o processo EnginePlugin: {self._plugin_id}\n" +"Acesso negado." + +msgctxt "@info" +msgid "Unable to reach the UltiMaker account server." +msgstr "Não foi possível contactar o servidor de contas da UltiMaker." + +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Não foi possível ler o arquivo de dados de exemplo." + +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." + +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" + +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" + +msgctxt "@info" +msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." +msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." + +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Desagrupar Modelos" + +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" + +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "Unidade" + +msgctxt "@label Description for development tool" +msgid "Universal build system configuration" +msgstr "Configuração de sistema universal de construção" + +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +msgctxt "@label unknown version of Cura" +msgid "Unknown" +msgstr "Desconhecida" + +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autor Desconhecido" + +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Pacote Desconhecido" + +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" + +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular Material" + +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessivel" + +msgctxt "@label" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@button" +msgid "Update" +msgstr "Atualizar" + +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Atualizar existentes" + +msgctxt "@action:tooltip" +msgid "Update profile with current settings/overrides" +msgstr "Atualizar perfil com ajustes/sobreposições atuais" + +msgctxt "@action:button" +msgid "Update profile." +msgstr "Atualizar perfil." + +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Atualize sua impressora" + +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +msgctxt "@label" +msgid "Updating firmware." +msgstr "Atualizando firmware." + +msgctxt "@button" +msgid "Updating..." +msgstr "Atualizando..." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar Firmware personalizado" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Transferindo trabalho de impressão para a impressora." + +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Enviando seu backup..." + +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Usar uma única instância do Cura" + +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Use cola para melhor aderência com essa combinação de materiais." + +msgctxt "@label" +msgid "User Agreement" +msgstr "Contrato de Usuário" + +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Funções de utilidade, incluindo um carregador de imagem" + +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Biblioteca de utilidade, incluindo geração Voronoi" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização de Versão de 2.1 para 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização de Versão de 2.2 para 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização de Versão de 2.5 para 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização de Versão de 2.6 para 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização de Versão de 2.7 para 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização de Versão 3.0 para 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização de Versão de 3.2 para 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização de Versão de 3.3 para 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização de Versão de 3.4 para 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização de Versão de 3.5 para 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização de Versão de 4.0 para 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização de Versão de 4.1 para 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização de Versão de 4.11 para 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização de Versão de 4.13 para 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização de Versão de 4.2 para 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização de Versão de 4.3 para 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização de Versão de 4.4 para 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização de Versão de 4.5 para 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização de Versão de 4.6.0 para 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização de Versão de 4.6.2 para 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização de Versão de 4.7 para 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização de Versão de 4.8 para 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização de Versão de 4.9 para 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização de Versão de 5.2 para 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização de Versão de 5.3 para 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização de Versão de 5.4 para 5.5" + +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Ver impressoras na Digital Factory" + +msgctxt "@label" +msgid "View type" +msgstr "Tipo de Visão" + +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Ver manuais de usuário online" + +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da área de visualização" + +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes Visíveis" + +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visitar sítio web de complementos" + +msgctxt "@tooltip:button" +msgid "Visit the UltiMaker website." +msgstr "Visita o website da UltiMaker." + +msgctxt "@label" +msgid "Visual" +msgstr "Visual" + +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando por" + +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Aguardando resposta da Nuvem" + +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "Esperando por novas impressoras" + +msgctxt "@button" +msgid "Want more?" +msgstr "Quer mais?" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Aviso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." +msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." + +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." + +msgctxt "@text:window" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" + +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." + +msgctxt "@button" +msgid "Website" +msgstr "Sítio web" + +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Que impressora você gostaria de configurar?" + +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Que tipo de renderização de câmera deve ser usada?" + +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@label" +msgid "What's New" +msgstr "O Que Há de Novo" + +msgctxt "@title:window" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." + +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." + +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." + +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Por que eu preciso sincronizar perfis de material?" + +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Largura (mm)" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escreve em formato G-Code comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escreve em formato G-Code." + +msgctxt "@label" +msgid "X (Width)" +msgstr "X (largura)" + +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +msgctxt "name" +msgid "X-Ray View" +msgstr "Visão de Raios-X" + +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visão de Raios-X" + +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Arquivo X3D" + +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +msgctxt "@info" +msgid "Yes" +msgstr "Sim" + +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +#, python-brace-format +msgctxt "@label" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" +msgstr[1] "" +"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "Você está tentando conectar a uma impressora que não está rodando UltiMaker Connect. Por favor atualize a impressora para o firmware mais recente." + +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." + +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." + +msgctxt "@text:window, %1 is a profile name" +msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." +msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." + +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" + +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." + +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" + +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" + +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Seu backup terminou de ser enviado." + +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Seus ajustes atuais coincidem com o perfil selecionado." + +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Sua nova impressora vai automaticamente aparecer no Cura" + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" +" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" + +msgctxt "@label" +msgid "Z" +msgstr "Z" + +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +msgctxt "@label Description for application dependency" +msgid "ZeroConf discovery library" +msgstr "Biblioteca de descoberta 'ZeroConf'" + +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Ampliar na direção do mouse" + +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." + +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "usuário removido" + +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Binário glTF" + +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embutido JSON" + +msgctxt "@label" +msgid "max" +msgstr "máx" + +msgctxt "@label" +msgid "min" +msgstr "mín" + +msgctxt "@label" +msgid "mm" +msgstr "mm" + +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +msgctxt "@label" +msgid "version: %1" +msgstr "versão: %1" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "{printer_name} será removida até a próxima sincronização de conta." + +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} complementos falharam em baixar" + +#, python-brace-format +#~ msgctxt "info:{0} gets replaced by a number of printers" +#~ msgid "... and {0} other" +#~ msgid_plural "... and {0} others" +#~ msgstr[0] "... e {0} outra" +#~ msgstr[1] "... e {0} outras" + +#~ msgctxt "@action:inmenu menubar:edit" +#~ msgid "Arrange Selection" +#~ msgstr "Posicionar Seleção" + +#~ msgctxt "@tooltip:button" +#~ msgid "Become a 3D printing expert with UltiMaker e-learning." +#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." + +#~ msgctxt "@info:status" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." + +#~ msgctxt "@label" +#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." + +#~ msgctxt "@error:zip" +#~ msgid "Error writing 3mf file." +#~ msgstr "Erro ao escrever arquivo 3mf." + +#~ msgctxt "@label" +#~ msgid "Hex" +#~ msgstr "Hexa" + +#~ msgctxt "@action:button" +#~ msgid "Install Materials" +#~ msgstr "Instalar Materiais" + +#~ msgctxt "@title" +#~ msgid "Install missing Materials" +#~ msgstr "Instalar Materiais faltantes" + +#~ msgctxt "@action:button" +#~ msgid "Install missing material" +#~ msgstr "Instalar material faltante" + +#~ msgctxt "@info:title" +#~ msgid "Material profiles not installed" +#~ msgstr "Perfis de material não instalados" + +#~ msgctxt "@info:title" +#~ msgid "Simulation View" +#~ msgstr "Visão Simulada" + +#~ msgctxt "@label" +#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." + +#~ msgctxt "@info:status" +#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." + +#~ msgctxt "@error:zip" +#~ msgid "The operating system does not allow saving a project file to this location or with this file name." +#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 4f4f651031e..4b930306afc 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -1,6737 +1,6741 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" -"PO-Revision-Date: 2023-06-25 18:17+0200\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.1\n" - -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." - -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." - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." - -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão)" - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta de Purga do Extrusor" - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Máximo Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamanho da Topografia de Camadas Adaptativas" - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." - -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" -"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendência à Aderência" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade de preenchimento da impressão." - -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." - -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" - -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Todos de Uma Vez" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar a Remoção de Malhas" - -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternar Direções de Parede" - -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Sempre Escrever a Ferramenta Ativa" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Sempre retrair quando se mover para iniciar uma parede externa." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade de deslocamento aplicado às bases do suporte." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha Anti-Pendente" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Anti-escorrimento" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Anti-escorrimento" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Partes Impressas nas Viagens" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes No Percurso" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Atrás" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Atrás à Esquerda" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Atrás à Direita" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambos se sobrepõem" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Camada Inicial do Padrão da Base" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Inferior" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura de Remoção do Contorno Inferior" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidade de Galho" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diâmetro de Galho" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ângulo de Diâmetro de Galho" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação de Quebra" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação de Quebra" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de Quebra de Preparação" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Quebra" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Quebra" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Quebra" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Quebrar Suportes em Pedaços" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade de Ventoinha da Ponte" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte Tem Camadas Múltiplas" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade de Segundo Contorno da Ponte" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do Contorno de Ponte" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do Contorno de Ponte" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do Contorno de Ponte" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar de Suporte de Contorno de Ponte" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo de Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desengrenagem de Parede de Ponte" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da Parede de Ponte" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da Parede de Ponte" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância do Brim" - -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Brim Dentro da Margem a Evitar" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Contagem de Linhas do Brim" - -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Somente Para Fora" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim Substitui Suporte" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura do Brim" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Mesa" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de Aderência à Mesa" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo de Aderência da Mesa de Impressão" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Plataforma de Impressão" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Mesa" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura da Mesa de Impressão" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da Mesa de Impressão da Camada Inicial" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do Volume de Impressão" - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centralizar Objeto" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de Desengrenagem" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de Desengrenagem" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de Linha de Comando" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo de Suporte Cônico" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura Mínima do Suporte Cônico" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar Linhas de Preenchimento" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar Polígonos do Preenchimento" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar Linhas de Suporte" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar os Ziguezagues do Suporte" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar Polígonos do Topo e Base" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de Resfriamento" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruzado 3D" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho de Bolso do Cruzado 3D" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem de Densidade do Preenchimento Cruzado" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" - -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Cobertura de Subdivisão Cúbica" - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de Corte" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Default" - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Default da Plataforma de Impressão" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Default do Filamento" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Default de Impressão" - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk Default nos eixos X-Y" - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "O Jerk Default em Z" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O valor default de jerk para movimentos no plano horizontal." - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O valor default de jerk para movimento na direção Z." - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O valor default de jerk para movimentação do filamento." - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento de Diâmetro para o Modelo" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas Proibidas" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." - -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distância da parte inferior do suporte até a impressão." - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distância do topo do suporte à impressão." - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." - -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." - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da Cobertura de Trabalho" - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitação da Cobertura de Trabalho" - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da Cobertura de Trabalho" - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de Suporte Abaixo" - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusão Dual" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Habilitar Controle de Aceleração" - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar Ajustes de Ponte" - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar Desengrenagem" - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Habilitar Suporte Cônico" - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar Cobertura de Trabalho" - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "" - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar Passar a Ferro" - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Habilitar Controle de Jerk" - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar Controle de Temperatura do Bico" - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Habilitar Cobertura de Escorrimento" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Habilitar Massa de Purga" - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Habilitar Torre de Purga" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Habilitar Refrigeração de Impressão" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar Retração" - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar Brim de Suporte" - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar Base de Suporte" - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar Interface de Suporte" - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar Teto de Suporte" - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Habilitar Aceleração de Percurso" - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Habilitar Jerk de Percurso" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento de Purga do Fim do Filamento" - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade de Purga do Fim do Filamento" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em Todo Lugar" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expôr Costura" - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensa" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de Paredes de Preenchimento Extras" - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Contagem de Paredes Extras de Contorno" - -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." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X da Purga do Extrusor" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y da Purga do Extrusor" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z de Purga do Extrusor" - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusores Compartilham Aquecedor" - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusores Compartilham o Bico" - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de Velocidade de Resfriamento de Extrusão" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade da Ventoinha" - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Sobrepor Velocidade de Ventoinha" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Recursos que não foram completamente desenvolvidos ainda." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro da Engrenagem de Alimentação" - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração de Firmware" - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de Suporte da Primeira Camada" - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Raio de Equalização de Fluxo" - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de Compensação da Taxa de Fluxo" - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de Fluxo de Temperatura" - -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." - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensação de fluxo nos filetes da base da primeira camada" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo em filetes de preenchimento." - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensação de fluxo em filetes do teto ou base do suporte." - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo em filetes de torre de purga." - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de Fluxo em filetes de Skirt e Brim." - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nos filetes da base do suporte." - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo em filetes do teto de suporte." - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo em filetes de estruturas de suporte." - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo no filete de parede mais externo." - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo em filetes do topo e base." - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo em filetes das paredes." - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "" - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "" - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da Descarga de Purga" - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade de Descarga de Purga" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frente" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frente à Esquerda" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frente à Direita" - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Contorno Felpudo Externo Apenas" - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância de Pontos do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura do Contorno Felpudo" - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Sabor de G-Code" - -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no final da impressão - separados por \n" -"." - -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no início da impressão - separados por \n" -"." - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. É ajustado automaticamente." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Gerar Estrutura Interligada" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Gerar Suporte" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual" - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Passos Graduais de Preenchimento" - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual de Suporte" - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Passos de Preenchimento Gradual de Suporte" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem Estabilização de Temperatura do Volume de Impressão" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Mesa Aquecida" - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de Aquecimento" - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da Zona de Aquecimento" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Costura" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Costura" - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão Horizontal do Furo" - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Horizontal" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." - -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 "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "De quanto o filamento deve ser retraído para se destacar completamente." - -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." - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Quão rápido purgar o material depois de alternar para um material diferente." - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." - -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." - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Mesa" - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas de Material" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" - -msgctxt "infill description" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração do Preenchimento" - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Preenchimento Antes das Paredes" - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Preenchimento" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor do Preenchimento" - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Preenchimento" - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Preenchimento" - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura da Camada de Preenchimento" - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções de Filetes de Preenchimento" - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância da Linha de Preenchimento" - -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de Filete de Preenchimento" - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largura de Extrusão do Preenchimento" - -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malha de Preenchimento" - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo de Seções Pendentes do Preenchimento" - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição de Preenchimento" - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Preenchimento" - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade de Preenchimento" - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Suporte do Preenchimento" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Otimização de Percurso de Preenchimento" - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância de Varredura do Preenchimento" - -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocamento X do Preenchimento" - -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocamento do Preenchimento Y" - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas Inferiores Iniciais" - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial da Ventoinha" - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da Camada Inicial" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Fluxo da Base da Camada Inicial" - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diâmetro da Camada Inicial" - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Inicial de Camada" - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura da Primeira Camada" - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal da Camada Inicial" - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Fluxo de Parede Interna da Camada Inicial" - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largura de Extrusão da Camada Inicial" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Fluxo de Parede Externa da Camada Inicial" - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de Impressão da Camada Inicial" - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk de Impressão da Camada Inicial" - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de Impressão da Camada Inicial" - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade da Camada Inicial" - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância de Filetes da Camada Inicial de Suporte" - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de Percurso da Camada Inicial" - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk de Percurso da Camada Inicial" - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de Percurso da Camada Inicial" - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição em Z das Camadas Iniciais" - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura Inicial de Impressão" - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração das Paredes Interiores" - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor da Parede Interior" - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Internas" - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade da Parede Interior" - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Fluxo da(s) Parede(s) Interna(s)" - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largura de Extrusão das Paredes Internas" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De Dentro Pra Fora" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linhas de interface preferidas" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interface preferida" - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Contagem de Camadas das Vigas Interligadas" - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largura da Viga Interligada" - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Prevenção de Fronteira de Interligação" - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidade de Interligação" - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientação da Estrutura de Interligação" - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Passar a Ferro Somente Camada Mais Alta" - -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Passar a Ferro" - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Passagem a Ferro" - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Penetração da Passagem a Ferro" - -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Passar a Ferro" - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaçamento de Passagem a Ferro" - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Passagem a Ferro" - -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Passar o Ferro" - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origem é no Centro" - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "É material de suporte" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Desconectadas" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de Camada" - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Inicial da Camada" - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Inicial da Camada" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Espessura da camada intermediária do raft." - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Espessura de camada das camadas superiores do raft." - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar Cabeça" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de Poda do Preenchimento Relâmpago" - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de Retificação do Preenchimento Relâmpago" - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de Suporte do Preenchimento Relâmpago" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitar Alcance de Galho" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Mesa" - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da Cabeça com Ventoinha" - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura do Volume" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Mesa" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos da máquina" - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Torna Seções Pendentes Imprimíveis" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Faz as áreas de suporte menores na base que na seção pendente." - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Faz as malhas mais adequadas para impressão 3D." - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do Material" - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de Material Entre Limpezas" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Máxima Distância de Combing Sem Retração" - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração Máxima em X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Máxima em Y" - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Máxima em Z" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ângulo Máximo de Galho" - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio Máximo" - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio Máximo de Área de Extrusão" - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima da Ventoinha" - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo Máximo do Modelo" - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área Máxima de Furo de Seções Pendentes" - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração Máxima de Descanso" - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Contagem de Retrações Máxima" - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Máximo do Contorno para Expansão" - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de Extrusão" - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade Máxima em X" - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Máxima em Y" - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Máxima em Z" - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado por Torres" - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Máxima Resolução de Percurso" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "A aceleração máxima para o motor da impressora na direção X" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleração máxima para a entrada de filamento no hotend." - -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 "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." - -msgctxt "max_extrusion_before_wipe description" -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 "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição de Malhas Combinadas" - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correções de Malha" - -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posição X da Malha" - -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posição Y da Malha" - -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posição Z da Malha" - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Hierarquia do Processamento de Malha" - -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz de Rotação da Malha" - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Meio" - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura Mínima do Molde" - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínima em Temperatura de Espera" - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento de Parede de Ponte Mínimo" - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Par" - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Janela de Distância de Extrusão Mínima" - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mínimo Tamanho de Detalhe" - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura Mínima Para O Modelo" - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área Mínima para Preenchimento" - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo Mínimo de Camada" - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Ímpar" - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mínima Circunferência do Polígono" - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima de Contorno para Expansão" - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área Mínima de Suporte" - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área Mínima de Base de Suporte" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área Mínima de Interface de Suporte" - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área Mínima de Teto de Suporte" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância Mínima de Suporte X/Y" - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Fina" - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume Mínimo Antes da Desengrenagem" - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largura Mínina de Filete de Parede" - -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 "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." - -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 "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -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 "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do Molde" - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura de Teto do Molde" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Passagem a Ferro Monotônica" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da Superfície Monotônica Superior" - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Monotônica Superior/Inferior" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator de Movimento Sem Carga" - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Contorno nas Lacunas Z" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Jeitos não-tradicionais de imprimir seus modelos." - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhuma" - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Contorno" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Externa" - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do Bico" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do bico" - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas Proibidas para o Bico" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Bico" - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do Bico" - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Avanço Extra da Troca de Bico" - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de Avanço da Troca de Bico" - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de Retração da Troca do Bico" - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de Extrusores Habilitados" - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de Camadas Mais Lentas" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes com que mover o bico através da varredura." - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" - -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Deslocamento aplicado ao objeto na direção X." - -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Deslocamento aplicado ao objeto na direção Y." - -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Deslocamento com o Extrusor" - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Na plataforma de impressão quando possível" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "No modelo se requerido" - -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Um de Cada Vez" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." - -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da Cobertura de Escorrimento" - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da Cobertura de Escorrimento" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Alcance Ótimo de Galho" - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem de Impressão de Paredes" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro Externo do Bico" - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da Parede Exterior" - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor da Parede Externa" - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo da Parede Externa" - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Penetração da Parede Externa" - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largura de Extrusão da Parede Externa" - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade da Parede Exterior" - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância de Varredura da Parede Externa" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De Fora Pra Dentro" - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo de Parede Pendente" - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade de Parede Pendente" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa após desfazimento da retração." - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ângulo Preferido de Galho" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da Torre de Purga" - -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim da Torre de Purga" - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da Torre de Purga" - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Purga" - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largura de Extrusão da Torre de Purga" - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume Mínimo da Torre de Purga" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho da Torre de Purga" - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da Torre de Purga" - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da Torre de Purga" - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da Torre de Purga" - -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração da Impressão" - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de Impressão" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de Impressão da Camada Inicial" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Vão Aéreo do Raft" - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da Base do Raft" - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade de Ventoinha da Base do Raft" - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento de Filete de Base do Raft" - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largura de Linha da Base do Raft" - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração de Impressão da Base do Raft" - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de Impressão da Base do Raft" - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade de Impressão da Base do Raft" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Contagem de Paredes da Base do Raft" - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional do Raft" - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade de Ventoinha no Raft" - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do Meio do Raft" - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade de Ventoinha do Meio do Raft" - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas Centrais do Raft" - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largura da Linha do Meio do Raft" - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração de Impressão do Meio do Raft" - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de Impressão do Meio do Raft" - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade de Impressão do Meio do Raft" - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração de Impressão do Raft" - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de Impressão do Raft" - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade de Impressão do Raft" - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Amaciamento do Raft" - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor do Topo do Raft" - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade da Ventoinha para o Topo do Raft" - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura da Camada Superior do Raft" - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largura do Filete Superior do Raft" - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração de Impressão do Topo do Raft" - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de Impressão do Topo do Raft" - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade de Impressão do Topo do Raft" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" - -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Aleatorizar o Começo do Preenchimento" - -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." - -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." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Regular da Ventoinha" - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidade Regular da Ventoinha na Altura" - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidade Regular da Ventoinha na Camada" - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão Relativa" - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos os Furos" - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover Interseções de Malha" - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover Cantos Internos de Raft" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferência de Descanso" - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes da Parede Externa" - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrai em Mudança de Camada" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." - -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." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância da Retração" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Quantidade Adicional de Avanço da Retração" - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Percurso Mínimo para Retração" - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de Avanço da Retração" - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade de Recolhimento de Retração" - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Velocidade de Escala da Ventoinha A 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento" - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "A Cena Tem Malhas de Suporte" - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência do Canto da Costura" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes usados para imprimir com vários extrusores." - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração Inicial do Bico Compartilhado" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto Mais Agudo" - -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais Curto" - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Exibir Variantes de Máquina" - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Contorno" - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Contorno" - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância de Expansão do Contorno" - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição do Contorno" - -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Contorno" - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura de Remoção de Contorno" - -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." - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância do Skirt" - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura do Skirt" - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Contagem de linhas de Skirt" - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração para Skirt e Brim" - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do Skirt/Brim" - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Skirt/Brim" - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Skirt e Brim" - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largura de Extrusão do Brim e Skirt" - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mínimo Comprimento do Skirt e Brim" - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade do Skirt e Brim" - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância de Fatiamento" - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento Máximo do Aspecto Pequeno" - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de Aspecto Pequeno" - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho Máximo de Furos Pequenos" - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "" - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Largura do Teto/Base Pequenos" - -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 "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "" - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Brim Inteligente" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Suavizar Contornos Espiralizados" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." - -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." - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" - -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade com que mover o eixo Z durante o salto." - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar o Contorno Externo" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura de Espera" - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" - -msgctxt "support description" -msgid "Support" -msgstr "Suporte" - -msgctxt "support label" -msgid "Support" -msgstr "Suporte" - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração do Suporte" - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância Inferior do Suporte" - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Número de Filetes do Brim de Suporte" - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura do Brim de Suporte" - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Contagem de Linhas de Pedaço de Suporte" - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do Pedaço de Suporte" - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade das Distâncias de Suporte" - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor do Suporte" - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração da Base do Suporte" - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade da Base do Suporte" - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor da Base do Suporte" - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo da Base de Suporte" - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão Horizontal da Base do Suporte" - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk da Base do Suporte" - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções de Filete da Base do Suporte" - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância de Filetes da Base de Suporte" - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largura de Extrusão da Base do Suporte" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão de Base de Suporte" - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade de Base do Suporte" - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura da Base de Suporte" - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão Horizontal do Suporte" - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração do Preenchimento do Suporte" - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor do Preenchimento do Suporte" - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk de Preenchimento de Suporte" - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura de Camada do Preenchimento de Suporte" - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção de Filete do Preenchimento de Suporte" - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade do Preenchimento do Suporte" - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da Interface de Suporte" - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidade da Interface de Suporte" - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor da Interface de Suporte" - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo de Interface de Suporte" - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão Horizontal da Interface de Suporte" - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface de Suporte" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções do Filete de Interface de Suporte" - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largura de Extrusão da Interface do Suporte" - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da Interface de Suporte" - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridade de Interface de Suporte" - -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução da Interface de Suporte" - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da Interface de Suporte" - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura da Interface de Suporte" - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância de União do Suporte" - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância das Linhas do Suporte" - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largura de Extrusão do Suporte" - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de Suporte" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo para Caracterizar Seções Pendentes" - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão do Suporte" - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação dos Suportes" - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do Teto de Suporte" - -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do Teto de Suporte" - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor do Teto do Suporte" - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto de Suporte" - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão Horizontal do Teto de Suporte" - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Teto de Suporte" - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções de Filete do Teto do Suporte" - -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância de Filetes do Teto de Suporte" - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largura de Extrusão do Teto do Suporte" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão de Teto de Suporte" - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do Teto de Suporte" - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do Topo do Suporte" - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade do Suporte" - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de Suporte" - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância Superior do Suporte" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do Suporte" - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância em Z do Suporte" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Filetes de suporte preferidos" - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Suporte preferido" - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade de Ventoinha do Contorno Suportado" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" - -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia de Superfície" - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de Superficie" - -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendência de aderência da superfície." - -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia de superfície." - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." - -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 "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleração durante a impressão da camada inicial." - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleração para a camada inicial." - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleração para percursos na camada inicial." - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Aceleração com que se imprimem as paredes interiores." - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o preenchimento é impresso." - -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com que o recurso de passar a ferro é feito." - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleração com que se realiza a impressão." - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que as camadas de base do raft são impressas." - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleração com que se imprime o preenchimento dos suportes." - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada intermediária do raft é impressa." - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleração com que se imprime a parede exterior." - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleração com que a torre de purga é impressa." - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleração com que as estruturas de suporte são impressas." - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleração com que se imprimem as paredes." - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com a qual as camadas da superfície superior são impressas." - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleração com que as camadas superiores e inferiores são impressas." - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleração com que se realizam os percursos." - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -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." - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." - -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." - -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área imprimível." - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro da torre especial." - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da engrenagem que traciona o material no alimentador." - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "A diferença em tamanho da próxima camada comparada à anterior." - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as trajetórias de passagem a ferro." - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade de ventoinha para a camada base do raft." - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade de ventoina para a camada intermediária do raft." - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade da ventoinha para a impressão do raft." - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade da ventoinha para as camadas superiores do raft." - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) do volume imprimível." - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "A altura acima das partes horizontais do modelo onde criar o molde." - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferença de altura ao realizar um Salto Z." - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao executar um Salto Z." - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." - -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." - -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 "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." - -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"A distância horizontal entre o skirt a primeira camada da impressão.\n" -"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." - -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo X." - -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com o qual a camada de base do raft é impressa." - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com o qual a camada intermediária do raft é impressa." - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com o qual o raft é impresso." - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com o qual as camadas superiores do raft são impressas." - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "O comprimento de filamento retornado durante uma retração." - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da plataforma de impressão presente na impressora." - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A variação de altura máxima permitida para a camada de base." - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." - -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima para o motor da impressora na direção X." - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima de entrada de filamento no hotend." - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidade mínima de entrada de filamento no hotend." - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." - -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." - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nome do seu modelo de impressora 3D." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de preenchimento que suportam arestas de contorno." - -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 da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." - -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." - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Diâmetro exterior do bico (a ponta do hotend)." - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão das camadas superiores." - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Padrão ou Estampa das camadas superiores e inferiores." - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão na base da impressão na primeira camada." - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão com o qual as bases do suporte são impressas." - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão com o qual o teto do suporte é impresso." - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." - -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidade em que se imprime o preenchimento." - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidade em que se realiza a impressão." - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "A velocidade com a qual as paredes de ponte são impressas." - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." - -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." - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." - -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." - -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." - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." - -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." - -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." - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." - -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." - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade em que as ventoinhas giram." - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade em que o raft é impresso." - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidade em que se imprimem as paredes." - -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade com que as camadas superiores são impressas." - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidade em que as camadas superiores e inferiores são impressas." - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidade em que ocorrem os movimentos de percurso." - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." - -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." - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." - -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." - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura usada para impressão." - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do preenchimento extra que suporta arestas de contorno." - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-Code a ser gerado." - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área imprimível." - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "A largura da torre de purga." - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de purga." - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." - -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." - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "A coordenada X da posição da torre de purga." - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "A coordenada Y da posição da torre de purga." - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." - -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." - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diâmetro da Ponta" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Superior" - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura de Remoção do Contorno Superior" - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração da Superfície Superior" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor da Superfície Superior" - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo do Contorno da Superfície Superior" - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk da Superfície Superior" - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas da Superfície Superior" - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções dos Filetes da Superfície Superior" - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largura de extrusão da Superfície Superior" - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão da Superfície Superior" - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade da Superfície Superior" - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração Superior/Inferior" - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior/Inferior" - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo de Topo/Base" - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções de Linha Superior/Inferior" - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largura de Extrusão Superior/Inferior" - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior/Inferior" - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior/Inferior" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando a Mesa" - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da Torre" - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do Teto da Torre" - -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 "travel label" -msgid "Travel" -msgstr "Percurso" - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de Percurso" - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância de Desvio de Percurso" - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Percurso" - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de Percurso" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulo" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diâmetro do Tronco" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volumes de Sobreposição de Uniões" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Usar Camadas Adaptativas" - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar Torres" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." - -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificado pelo Usuário" - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Vertical" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Aguardar o Aquecimento da Mesa" - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Aguardar Aquecimento do Bico" - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração da Parede" - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Contagem de Distribuição de Parede" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor das Paredes" - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo de Parede" - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk da Parede" - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número de Filetes da Parede" - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largura de Extrusão da Parede" - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordem de Parede" - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade da Parede" - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura de Parede" - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de Transição de Parede" - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância de Filtro da Transição de Parede" - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem de Filtro de Transição de Parede" - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo-Limite de Transição de Parede" - -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -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 "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." - -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." - -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." - -msgctxt "wipe_hop_enable description" -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 "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." - -msgctxt "retraction_hop_enabled 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, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Decide se a plataforma de impressão pode ser aquecida." - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." - -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "clean_between_layers description" -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 "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." - -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 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 "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." - -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 "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largura de um filete de preenchimento." - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Largura de um filete usado no teto ou base do suporte." - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Largura de extrusão de um filete das áreas no topo da peça." - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largura de um filete usado na torre de purga." - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largura de um filete usado na base do suporte." - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largura de um filete usado no teto do suporte." - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largura de um filete usado nas estruturas de suporte." - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largura de um filete que faz parte de uma parede." - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da Varredura de Limpeza" - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do Salto de Limpeza" - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar Bico Inativo na Torre de Purga" - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância de Movimentação da Limpeza" - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar o Bico Entre Camadas" - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa de Limpeza" - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de Repetições de Limpeza" - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de Retração da Limpeza" - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitar Retração de Limpeza" - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade Extra de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade da Retração da Retração de Limpeza" - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade da Retração de Limpeza" - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z da Limpeza" - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do Salto Z da Limpeza" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dentro do Preenchimento" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X na Direção Positiva" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Localização X onde o script de limpeza iniciará." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y na Direção Positiva" - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z na Direção Positiva" - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z Após Troca de Extrusor" - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto Z Após Troca de Altura do Extrusor" - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do Salto Z" - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z Somente Sobre Partes Impressas" - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z Ao Retrair" - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Costura em Z" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Costura Z" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costura Z Relativa" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Coordenada X da Costura Z" - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Coordenada Y da Costura Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "travel description" -msgid "travel" -msgstr "percurso" - - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - - -#~ 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." - -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite das Camadas Adaptativas" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação máxima das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Tamanho de passo da variação das camadas adaptativas" - -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Adicionar Limite de Filete Central" - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Aguardar o aquecimento da mesa de impressão" -#~ msgstr "Esperar a que la placa de impresión se caliente" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Bolso Alternados de Cruzado 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterna a Rotação do Contorno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Temperatura Automática" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Costas" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Seção Pendente Máxima da Parede de Ponte" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma da mesa de impressão" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centralizar Objeto" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de Purga Circular" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Compensar" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Sobreposições da Parede Interna" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede Externa" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de resfriamento" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raio de Subdivisão Cúbica" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas proibidas" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" -#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sobreposição de Extrusão Dual" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suportes" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code Final" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Comprimento de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocidade de Purga de Fim de Filamento" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizar Fluxo de Filamento" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todos os lugares" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expande Contorno da Base Para Preenchimento" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir Contornos Inferiores" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir Contorno Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir Contorno do Topo Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir Contornos Superiores" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de Descanso do Filamento" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Preenche Lacunas Entre Paredes" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrar Pequenas Lacunas" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da Primeira Camada" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Fator de compensaçõ de taxa de fluxo" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de G-Code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tem mesa de impressão aquecida" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Tornar Objetos Ocos" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenas Lacunas em Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura da mesa de impressão" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas dos materiais" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Order das Malhas de Preenchimento" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Deslocamento em Z da Camada Inicial" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor das Paredes Internas" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "A origem está no centro" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Nó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Limitar Retrações de Suporte" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono Da Cabeça da Máquina" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidada da mesa" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça da máquina e da ventoinha" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura do volume de impressão" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largura da mesa" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faz a torre de purga na forma circular." - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade Máxima para Equalização de Fluxo" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidade Máxima em Z" - -#~ 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 "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posição X da malha" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posição Y da malha" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posição Z da malha" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mínimo Fluxo da Parede" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." - -#~ 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." - -#~ 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 not be generated." -#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ 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 not be generated." -#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Evita Contornos" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lugar nenhum" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do bico" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do bico" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de Extrusores habilitados" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Deslocamento do Extrusor" - -#~ 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 excesive stringing within the support structure." -#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." - -#~ 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." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes das interiores" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro externo do bico" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir Retração" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de Purga da Torre de Purga" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da Torre de Purga" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento de Linhas do Raft" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrico)" - -#~ 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." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrair" - -#~ 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. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de Purga da Retração" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar variantes da máquina" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Raio de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Raio de contração do material em porcentagem." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pular Algumas Conexões de Ziguezague" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." - -#~ 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 adhestion and accuracy." -#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ 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 adhestion and accuracy." -#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_skin_width description" -#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." -#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo de Espaguete" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Preenchimento em Espaguete" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume Extra do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura Máxima do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos do Preenchimento de Espaguete" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Penetração do Espaguete" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Limite de Filete Central Dividido" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Iniciar Camadas com a Mesma Parte" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Espessura da Base do Suporte" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distância entre Linhas da Interface de Suporte" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 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: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" -#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A distância máxima em mm a compensar." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "A distância mínima entre o exterior do molde e do modelo." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." - -#~ 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 "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." - -#~ 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 "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de G-Code a ser gerado para a impressora." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suporte de Árvore" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Ângulo do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Diâmetro de Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Distância dos Galhos do Suporte em Árvore" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Resolução de Colisão do Suporte em Árvore" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" - -#~ 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_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura de Parede do Suporte em Árvore" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Usar camadas adaptativas" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Espera da Base de IA" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Velocidade de Impressão da Base da IA" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Fluxo de Conexão da IA" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Altura da Conexão IA" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Velocidade de Impressão Descendente de IA" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Arrasto de IA" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Facilitador Ascendente da IA" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Queda de IA" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Espera Plana de IA" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Fluxo Plano de IA" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Fluxo da IA" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Velocidade de Impressão Horizontal de IA" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Tamanho do Nó de IA" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Espaço Livre para o Bico em IA" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Arrasto do Topo de IA" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Queda do Topo de IA" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Distância de Penetração do Teto da IA" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Retardo exterior del techo en IA" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Velocidade da IA" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Endireitar Filetes Descendentes de IA" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Estratégia de IA" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Espera do Topo de IA" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Velocidade de Impressão Ascendente da IA" - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ 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." -#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." - -#~ 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 "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 "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 "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 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 "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar Bico Depois da Troca" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z da Limpeza Quando Retraída" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Impressão em Arame" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Camadas de Amenização do Deslocamento Z" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "reparos_de_categoria" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" +# Cura +# Copyright (C) 2022 Ultimaker B.V. +# This file is distributed under the same license as the Cura package. +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"PO-Revision-Date: 2023-10-23 06:17+0200\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.3.2\n" + +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." + +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." + +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." + +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." + +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." + +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." + +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." + +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." + +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." + +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão)" + +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta de Purga do Extrusor" + +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Máximo Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamanho da Topografia de Camadas Adaptativas" + +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." + +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" +"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendência à Aderência" + +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade de preenchimento da impressão." + +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." + +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." + +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." + +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" + +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Todos de Uma Vez" + +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" + +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" + +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar a Remoção de Malhas" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar Direções de Parede" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" + +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Sempre Escrever a Ferramenta Ativa" + +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Sempre retrair quando se mover para iniciar uma parede externa." + +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." + +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." + +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." + +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade de deslocamento aplicado às bases do suporte." + +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." + +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." + +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." + +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha Anti-Pendente" + +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Anti-escorrimento" + +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Anti-escorrimento" + +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." + +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Partes Impressas nas Viagens" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes No Percurso" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Atrás" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Atrás à Esquerda" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Atrás à Direita" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambos se sobrepõem" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Camada Inicial do Padrão da Base" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Inferior" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura de Remoção do Contorno Inferior" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidade de Galho" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diâmetro de Galho" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ângulo de Diâmetro de Galho" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação de Quebra" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação de Quebra" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de Quebra de Preparação" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Quebra" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Quebra" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Quebra" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Quebrar Suportes em Pedaços" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade de Ventoinha da Ponte" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte Tem Camadas Múltiplas" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade de Segundo Contorno da Ponte" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do Contorno de Ponte" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do Contorno de Ponte" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do Contorno de Ponte" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar de Suporte de Contorno de Ponte" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo de Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desengrenagem de Parede de Ponte" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da Parede de Ponte" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da Parede de Ponte" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância do Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Brim Dentro da Margem a Evitar" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Contagem de Linhas do Brim" + +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim Somente Para Fora" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim Substitui Suporte" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura do Brim" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Mesa" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de Aderência à Mesa" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo de Aderência da Mesa de Impressão" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Plataforma de Impressão" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Mesa" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura da Mesa de Impressão" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da Mesa de Impressão da Camada Inicial" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do Volume de Impressão" + +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centralizar Objeto" + +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de Desengrenagem" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de Desengrenagem" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de Linha de Comando" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo de Suporte Cônico" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura Mínima do Suporte Cônico" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar Linhas de Preenchimento" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar Polígonos do Preenchimento" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar Linhas de Suporte" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar os Ziguezagues do Suporte" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar Polígonos do Topo e Base" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de Resfriamento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruzado 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho de Bolso do Cruzado 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem de Densidade do Preenchimento Cruzado" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Cobertura de Subdivisão Cúbica" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de Corte" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Default" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Default da Plataforma de Impressão" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Default do Filamento" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Default de Impressão" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk Default nos eixos X-Y" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "O Jerk Default em Z" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O valor default de jerk para movimentos no plano horizontal." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O valor default de jerk para movimento na direção Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O valor default de jerk para movimentação do filamento." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento de Diâmetro para o Modelo" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas Proibidas" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Distância da parte inferior do suporte até a impressão." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distância do topo do suporte à impressão." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." + +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." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da Cobertura de Trabalho" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitação da Cobertura de Trabalho" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da Cobertura de Trabalho" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de Suporte Abaixo" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusão Dual" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Habilitar Controle de Aceleração" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar Ajustes de Ponte" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar Desengrenagem" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Habilitar Suporte Cônico" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar Cobertura de Trabalho" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Habilitar Movimento Fluido" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar Passar a Ferro" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Habilitar Controle de Jerk" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar Controle de Temperatura do Bico" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Habilitar Cobertura de Escorrimento" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Habilitar Massa de Purga" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Habilitar Torre de Purga" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Habilitar Refrigeração de Impressão" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar Retração" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar Brim de Suporte" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar Base de Suporte" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar Interface de Suporte" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar Teto de Suporte" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar Aceleração de Percurso" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Habilitar Jerk de Percurso" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento de Purga do Fim do Filamento" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade de Purga do Fim do Filamento" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em Todo Lugar" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expôr Costura" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensa" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de Paredes de Preenchimento Extras" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Contagem de Paredes Extras de Contorno" + +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." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X da Purga do Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y da Purga do Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z de Purga do Extrusor" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusores Compartilham Aquecedor" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusores Compartilham o Bico" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de Velocidade de Resfriamento de Extrusão" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade da Ventoinha" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Sobrepor Velocidade de Ventoinha" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Recursos que não foram completamente desenvolvidos ainda." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro da Engrenagem de Alimentação" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração de Firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de Suporte da Primeira Camada" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Raio de Equalização de Fluxo" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de Compensação da Taxa de Fluxo" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de Fluxo de Temperatura" + +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." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensação de fluxo nos filetes da base da primeira camada" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo em filetes de preenchimento." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensação de fluxo em filetes do teto ou base do suporte." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo em filetes de torre de purga." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de Fluxo em filetes de Skirt e Brim." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nos filetes da base do suporte." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo em filetes do teto de suporte." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo em filetes de estruturas de suporte." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo no filete de parede mais externo." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo em filetes do topo e base." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo em filetes das paredes." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ângulo de Movimento Fluido" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distância de Deslocamento do Movimento Fluido" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Distância Pequena do Movimento Fluido" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da Descarga de Purga" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade de Descarga de Purga" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frente" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frente à Esquerda" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frente à Direita" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Contorno Felpudo Externo Apenas" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância de Pontos do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura do Contorno Felpudo" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Sabor de G-Code" + +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no final da impressão - separados por \n" +"." + +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no início da impressão - separados por \n" +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. É ajustado automaticamente." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar Estrutura Interligada" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Gerar Suporte" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Passos Graduais de Preenchimento" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual de Suporte" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Passos de Preenchimento Gradual de Suporte" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem Estabilização de Temperatura do Volume de Impressão" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Mesa Aquecida" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de Aquecimento" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da Zona de Aquecimento" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Costura" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Costura" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão Horizontal do Furo" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Horizontal" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." + +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 "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "De quanto o filamento deve ser retraído para se destacar completamente." + +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." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Quão rápido purgar o material depois de alternar para um material diferente." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." + +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." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Mesa" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas de Material" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" + +msgctxt "infill description" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração do Preenchimento" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Preenchimento Antes das Paredes" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Preenchimento" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor do Preenchimento" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Preenchimento" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Preenchimento" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura da Camada de Preenchimento" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções de Filetes de Preenchimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância da Linha de Preenchimento" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de Filete de Preenchimento" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largura de Extrusão do Preenchimento" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malha de Preenchimento" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo de Seções Pendentes do Preenchimento" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição de Preenchimento" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade de Preenchimento" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Suporte do Preenchimento" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Otimização de Percurso de Preenchimento" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância de Varredura do Preenchimento" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocamento X do Preenchimento" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocamento do Preenchimento Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas Inferiores Iniciais" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial da Ventoinha" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da Camada Inicial" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo da Base da Camada Inicial" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diâmetro da Camada Inicial" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Inicial de Camada" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura da Primeira Camada" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal da Camada Inicial" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo de Parede Interna da Camada Inicial" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largura de Extrusão da Camada Inicial" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo de Parede Externa da Camada Inicial" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de Impressão da Camada Inicial" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk de Impressão da Camada Inicial" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de Impressão da Camada Inicial" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade da Camada Inicial" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância de Filetes da Camada Inicial de Suporte" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de Percurso da Camada Inicial" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk de Percurso da Camada Inicial" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de Percurso da Camada Inicial" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição em Z das Camadas Iniciais" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura Inicial de Impressão" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração das Paredes Interiores" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor da Parede Interior" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Internas" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade da Parede Interior" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Fluxo da(s) Parede(s) Interna(s)" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largura de Extrusão das Paredes Internas" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De Dentro Pra Fora" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linhas de interface preferidas" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interface preferida" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de Camadas das Vigas Interligadas" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura da Viga Interligada" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenção de Fronteira de Interligação" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de Interligação" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da Estrutura de Interligação" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Passar a Ferro Somente Camada Mais Alta" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Passar a Ferro" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Passagem a Ferro" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Penetração da Passagem a Ferro" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Passar a Ferro" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaçamento de Passagem a Ferro" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Passagem a Ferro" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Passar o Ferro" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origem é no Centro" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "É material de suporte" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Desconectadas" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de Camada" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Inicial da Camada" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Inicial da Camada" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Espessura da camada intermediária do raft." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Espessura de camada das camadas superiores do raft." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar Cabeça" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de Poda do Preenchimento Relâmpago" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de Retificação do Preenchimento Relâmpago" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de Suporte do Preenchimento Relâmpago" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitar Alcance de Galho" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Mesa" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da Cabeça com Ventoinha" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura do Volume" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Mesa" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos da máquina" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Torna Seções Pendentes Imprimíveis" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Faz as áreas de suporte menores na base que na seção pendente." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Faz as malhas mais adequadas para impressão 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do Material" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de Material Entre Limpezas" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Máxima Distância de Combing Sem Retração" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração Máxima em X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Máxima em Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Máxima em Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ângulo Máximo de Galho" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio Máximo" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio Máximo de Área de Extrusão" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima da Ventoinha" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo Máximo do Modelo" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área Máxima de Furo de Seções Pendentes" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração Máxima de Descanso" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Contagem de Retrações Máxima" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Máximo do Contorno para Expansão" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de Extrusão" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade Máxima em X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Máxima em Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Máxima em Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado por Torres" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Máxima Resolução de Percurso" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "A aceleração máxima para o motor da impressora na direção X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleração máxima para a entrada de filamento no hotend." + +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 "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." + +msgctxt "max_extrusion_before_wipe description" +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 "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição de Malhas Combinadas" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correções de Malha" + +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posição X da Malha" + +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posição Y da Malha" + +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posição Z da Malha" + +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Hierarquia do Processamento de Malha" + +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz de Rotação da Malha" + +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Meio" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura Mínima do Molde" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínima em Temperatura de Espera" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento de Parede de Ponte Mínimo" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Par" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Janela de Distância de Extrusão Mínima" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mínimo Tamanho de Detalhe" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura Mínima Para O Modelo" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área Mínima para Preenchimento" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo Mínimo de Camada" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Ímpar" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mínima Circunferência do Polígono" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima de Contorno para Expansão" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área Mínima de Suporte" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área Mínima de Base de Suporte" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área Mínima de Interface de Suporte" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área Mínima de Teto de Suporte" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância Mínima de Suporte X/Y" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Fina" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume Mínimo Antes da Desengrenagem" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largura Mínina de Filete de Parede" + +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 "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." + +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 "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +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 "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do Molde" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura de Teto do Molde" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Passagem a Ferro Monotônica" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da Superfície Monotônica Superior" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Monotônica Superior/Inferior" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator de Movimento Sem Carga" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Contorno nas Lacunas Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Jeitos não-tradicionais de imprimir seus modelos." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhuma" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Contorno" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Externa" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do Bico" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do bico" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas Proibidas para o Bico" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Bico" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do Bico" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Avanço Extra da Troca de Bico" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de Avanço da Troca de Bico" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de Retração da Troca do Bico" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de Extrusores Habilitados" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de Camadas Mais Lentas" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes com que mover o bico através da varredura." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Deslocamento aplicado ao objeto na direção X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Deslocamento aplicado ao objeto na direção Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Deslocamento com o Extrusor" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Na plataforma de impressão quando possível" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "No modelo se requerido" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Um de Cada Vez" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." + +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da Cobertura de Escorrimento" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da Cobertura de Escorrimento" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Alcance Ótimo de Galho" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem de Impressão de Paredes" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro Externo do Bico" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da Parede Exterior" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor da Parede Externa" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo da Parede Externa" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Penetração da Parede Externa" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largura de Extrusão da Parede Externa" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade da Parede Exterior" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância de Varredura da Parede Externa" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De Fora Pra Dentro" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo de Parede Pendente" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade de Parede Pendente" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa após desfazimento da retração." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ângulo Preferido de Galho" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da Torre de Purga" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Brim da Torre de Purga" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da Torre de Purga" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Purga" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largura de Extrusão da Torre de Purga" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume Mínimo da Torre de Purga" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho da Torre de Purga" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da Torre de Purga" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da Torre de Purga" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da Torre de Purga" + +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração da Impressão" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de Impressão" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de Impressão da Camada Inicial" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Vão Aéreo do Raft" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da Base do Raft" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade de Ventoinha da Base do Raft" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento de Filete de Base do Raft" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largura de Linha da Base do Raft" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração de Impressão da Base do Raft" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de Impressão da Base do Raft" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade de Impressão da Base do Raft" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Contagem de Paredes da Base do Raft" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional do Raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade de Ventoinha no Raft" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do Meio do Raft" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade de Ventoinha do Meio do Raft" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas Centrais do Raft" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largura da Linha do Meio do Raft" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração de Impressão do Meio do Raft" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de Impressão do Meio do Raft" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade de Impressão do Meio do Raft" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração de Impressão do Raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de Impressão do Raft" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade de Impressão do Raft" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Amaciamento do Raft" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor do Topo do Raft" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade da Ventoinha para o Topo do Raft" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura da Camada Superior do Raft" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largura do Filete Superior do Raft" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração de Impressão do Topo do Raft" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de Impressão do Topo do Raft" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade de Impressão do Topo do Raft" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Aleatorizar o Começo do Preenchimento" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." + +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." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Regular da Ventoinha" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidade Regular da Ventoinha na Altura" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidade Regular da Ventoinha na Camada" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão Relativa" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos os Furos" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover Interseções de Malha" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover Cantos Internos de Raft" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferência de Descanso" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes da Parede Externa" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrai em Mudança de Camada" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." + +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." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância da Retração" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Quantidade Adicional de Avanço da Retração" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Percurso Mínimo para Retração" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de Avanço da Retração" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade de Recolhimento de Retração" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Velocidade de Escala da Ventoinha A 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "A Cena Tem Malhas de Suporte" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência do Canto da Costura" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes usados para imprimir com vários extrusores." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração Inicial do Bico Compartilhado" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto Mais Agudo" + +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais Curto" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Exibir Variantes de Máquina" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Contorno" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Contorno" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância de Expansão do Contorno" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição do Contorno" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Contorno" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura de Remoção de Contorno" + +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." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância do Skirt" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura do Skirt" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Contagem de linhas de Skirt" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração para Skirt e Brim" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do Skirt/Brim" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Skirt/Brim" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Skirt e Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largura de Extrusão do Brim e Skirt" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mínimo Comprimento do Skirt e Brim" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade do Skirt e Brim" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância de Fatiamento" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento Máximo do Aspecto Pequeno" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de Aspecto Pequeno" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho Máximo de Furos Pequenos" + +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Pequena Base/Teto Na Superfície" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Largura do Teto/Base Pequenos" + +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 "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')" + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Brim Inteligente" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Suavizar Contornos Espiralizados" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." + +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." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" + +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade com que mover o eixo Z durante o salto." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar o Contorno Externo" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura de Espera" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Suporte" + +msgctxt "support label" +msgid "Support" +msgstr "Suporte" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração do Suporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância Inferior do Suporte" + +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Número de Filetes do Brim de Suporte" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura do Brim de Suporte" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Contagem de Linhas de Pedaço de Suporte" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do Pedaço de Suporte" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade das Distâncias de Suporte" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor do Suporte" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração da Base do Suporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade da Base do Suporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor da Base do Suporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo da Base de Suporte" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão Horizontal da Base do Suporte" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk da Base do Suporte" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções de Filete da Base do Suporte" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância de Filetes da Base de Suporte" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largura de Extrusão da Base do Suporte" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão de Base de Suporte" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade de Base do Suporte" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura da Base de Suporte" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão Horizontal do Suporte" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração do Preenchimento do Suporte" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor do Preenchimento do Suporte" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk de Preenchimento de Suporte" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura de Camada do Preenchimento de Suporte" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção de Filete do Preenchimento de Suporte" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade do Preenchimento do Suporte" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da Interface de Suporte" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da Interface de Suporte" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor da Interface de Suporte" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo de Interface de Suporte" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão Horizontal da Interface de Suporte" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface de Suporte" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções do Filete de Interface de Suporte" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largura de Extrusão da Interface do Suporte" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da Interface de Suporte" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridade de Interface de Suporte" + +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolução da Interface de Suporte" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da Interface de Suporte" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura da Interface de Suporte" + +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância de União do Suporte" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância das Linhas do Suporte" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largura de Extrusão do Suporte" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de Suporte" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo para Caracterizar Seções Pendentes" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão do Suporte" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação dos Suportes" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do Teto de Suporte" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do Teto de Suporte" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor do Teto do Suporte" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto de Suporte" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão Horizontal do Teto de Suporte" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Teto de Suporte" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções de Filete do Teto do Suporte" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância de Filetes do Teto de Suporte" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largura de Extrusão do Teto do Suporte" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão de Teto de Suporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do Teto de Suporte" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do Topo do Suporte" + +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade do Suporte" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de Suporte" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância Superior do Suporte" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do Suporte" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância em Z do Suporte" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Filetes de suporte preferidos" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Suporte preferido" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade de Ventoinha do Contorno Suportado" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia de Superfície" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de Superficie" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendência de aderência da superfície." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia de superfície." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." + +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 "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleração durante a impressão da camada inicial." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleração para a camada inicial." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleração para percursos na camada inicial." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Aceleração com que se imprimem as paredes interiores." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o preenchimento é impresso." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com que o recurso de passar a ferro é feito." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleração com que se realiza a impressão." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que as camadas de base do raft são impressas." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleração com que se imprime o preenchimento dos suportes." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada intermediária do raft é impressa." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleração com que se imprime a parede exterior." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleração com que a torre de purga é impressa." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleração com que as estruturas de suporte são impressas." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleração com que se imprimem as paredes." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com a qual as camadas da superfície superior são impressas." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleração com que as camadas superiores e inferiores são impressas." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleração com que se realizam os percursos." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +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." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." + +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área imprimível." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro da torre especial." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da engrenagem que traciona o material no alimentador." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "A diferença em tamanho da próxima camada comparada à anterior." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as trajetórias de passagem a ferro." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." + +#, fuzzy +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade de ventoinha para a camada base do raft." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade de ventoina para a camada intermediária do raft." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade da ventoinha para a impressão do raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade da ventoinha para as camadas superiores do raft." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) do volume imprimível." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "A altura acima das partes horizontais do modelo onde criar o molde." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferença de altura ao realizar um Salto Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao executar um Salto Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." + +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." + +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 "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." + +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"A distância horizontal entre o skirt a primeira camada da impressão.\n" +"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com o qual a camada de base do raft é impressa." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com o qual a camada intermediária do raft é impressa." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com o qual o raft é impresso." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com o qual as camadas superiores do raft são impressas." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "O comprimento de filamento retornado durante uma retração." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da plataforma de impressão presente na impressora." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A variação de altura máxima permitida para a camada de base." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima para o motor da impressora na direção X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima de entrada de filamento no hotend." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidade mínima de entrada de filamento no hotend." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." + +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." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nome do seu modelo de impressora 3D." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de preenchimento que suportam arestas de contorno." + +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 da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." + +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." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Diâmetro exterior do bico (a ponta do hotend)." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão das camadas superiores." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Padrão ou Estampa das camadas superiores e inferiores." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão na base da impressão na primeira camada." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão com o qual as bases do suporte são impressas." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão com o qual o teto do suporte é impresso." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." + +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidade em que se imprime o preenchimento." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidade em que se realiza a impressão." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "A velocidade com a qual as paredes de ponte são impressas." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." + +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." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." + +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." + +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." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." + +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." + +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." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." + +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." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade em que as ventoinhas giram." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade em que o raft é impresso." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidade em que se imprimem as paredes." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade com que as camadas superiores são impressas." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidade em que as camadas superiores e inferiores são impressas." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidade em que ocorrem os movimentos de percurso." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." + +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." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." + +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." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura usada para impressão." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do preenchimento extra que suporta arestas de contorno." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-Code a ser gerado." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área imprimível." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." + +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura da torre de purga." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de purga." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." + +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." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "A coordenada X da posição da torre de purga." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "A coordenada Y da posição da torre de purga." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." + +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." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diâmetro da Ponta" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Superior" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura de Remoção do Contorno Superior" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração da Superfície Superior" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor da Superfície Superior" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo do Contorno da Superfície Superior" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk da Superfície Superior" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas da Superfície Superior" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções dos Filetes da Superfície Superior" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largura de extrusão da Superfície Superior" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão da Superfície Superior" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade da Superfície Superior" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração Superior/Inferior" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior/Inferior" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo de Topo/Base" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções de Linha Superior/Inferior" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largura de Extrusão Superior/Inferior" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior/Inferior" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior/Inferior" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando a Mesa" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da Torre" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do Teto da Torre" + +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 "travel label" +msgid "Travel" +msgstr "Percurso" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de Percurso" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância de Desvio de Percurso" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Percurso" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de Percurso" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulo" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diâmetro do Tronco" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volumes de Sobreposição de Uniões" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Usar Camadas Adaptativas" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar Torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificado pelo Usuário" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Vertical" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Aguardar o Aquecimento da Mesa" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Aguardar Aquecimento do Bico" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração da Parede" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Contagem de Distribuição de Parede" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor das Paredes" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo de Parede" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk da Parede" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número de Filetes da Parede" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largura de Extrusão da Parede" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordem de Parede" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade da Parede" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura de Parede" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de Transição de Parede" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância de Filtro da Transição de Parede" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem de Filtro de Transição de Parede" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo-Limite de Transição de Parede" + +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +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 "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." + +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo':" + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." + +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." + +msgctxt "wipe_hop_enable description" +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 "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." + +msgctxt "retraction_hop_enabled 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, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Decide se a plataforma de impressão pode ser aquecida." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "clean_between_layers description" +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 "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." + +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 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 "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." + +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 "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largura de um filete de preenchimento." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Largura de um filete usado no teto ou base do suporte." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Largura de extrusão de um filete das áreas no topo da peça." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largura de um filete usado na torre de purga." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largura de um filete usado na base do suporte." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largura de um filete usado no teto do suporte." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largura de um filete usado nas estruturas de suporte." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largura de um filete que faz parte de uma parede." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da Varredura de Limpeza" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do Salto de Limpeza" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar Bico Inativo na Torre de Purga" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância de Movimentação da Limpeza" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar o Bico Entre Camadas" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa de Limpeza" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de Repetições de Limpeza" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de Retração da Limpeza" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitar Retração de Limpeza" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade Extra de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade da Retração da Retração de Limpeza" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade da Retração de Limpeza" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z da Limpeza" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do Salto Z da Limpeza" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dentro do Preenchimento" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X na Direção Positiva" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Localização X onde o script de limpeza iniciará." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y na Direção Positiva" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z na Direção Positiva" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z Após Troca de Extrusor" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto Z Após Troca de Altura do Extrusor" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do Salto Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z Somente Sobre Partes Impressas" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z Ao Retrair" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Costura em Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Costura Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costura Z Relativa" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Coordenada X da Costura Z" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Coordenada Y da Costura Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "travel description" +msgid "travel" +msgstr "percurso" + +# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual habilitado" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para alterações de fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração máxima de fluxo da camada inicial" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho de passo da discretização de fluxo gradual" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada passo na alteração de fluxo gradual" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Duração de reset do fluxo" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." + +#~ 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 "machine_head_with_fans_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps included)." +#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." + +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." + +#~ msgctxt "sub_div_rad_mult description" +#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." +#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "Limite das Camadas Adaptativas" + +#~ msgctxt "adaptive_layer_height_variation label" +#~ msgid "Adaptive layers maximum variation" +#~ msgstr "Variação máxima das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive layers threshold" +#~ msgstr "Limite das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_variation_step label" +#~ msgid "Adaptive layers variation step size" +#~ msgstr "Tamanho de passo da variação das camadas adaptativas" + +#~ msgctxt "wall_add_middle_threshold label" +#~ msgid "Add Middle Line Threshold" +#~ msgstr "Adicionar Limite de Filete Central" + +#~ msgctxt "support_interface_density description" +#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." + +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Aguardar o aquecimento da mesa de impressão" +#~ msgstr "Esperar a que la placa de impresión se caliente" + +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "Bolso Alternados de Cruzado 3D" + +#~ msgctxt "skin_alternate_rotation label" +#~ msgid "Alternate Skin Rotation" +#~ msgstr "Alterna a Rotação do Contorno" + +#~ msgctxt "skin_alternate_rotation description" +#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." +#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." + +#~ msgctxt "hole_xy_offset description" +#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." +#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Temperatura Automática" + +#~ msgctxt "z_seam_type option back" +#~ msgid "Back" +#~ msgstr "Costas" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Seção Pendente Máxima da Parede de Ponte" + +#~ msgctxt "machine_shape label" +#~ msgid "Build plate shape" +#~ msgstr "Forma da mesa de impressão" + +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "Centralizar Objeto" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." + +#~ msgctxt "prime_tower_circular label" +#~ msgid "Circular Prime Tower" +#~ msgstr "Torre de Purga Circular" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensar" + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Compensar Sobreposições da Parede Interna" + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede Externa" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled description" +#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" +#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." + +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "zig_zaggify_infill description" +#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." + +#~ msgctxt "connect_skin_polygons description" +#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." +#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." + +#~ msgctxt "z_seam_corner description" +#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." +#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." + +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "Velocidade de resfriamento" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." + +#~ msgctxt "sub_div_rad_mult label" +#~ msgid "Cubic Subdivision Radius" +#~ msgstr "Raio de Subdivisão Cúbica" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "inset_direction description" +#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." +#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." + +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "Áreas proibidas" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_interface_line_distance description" +#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." +#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." +#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" +#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "multiple_mesh_overlap label" +#~ msgid "Dual Extrusion Overlap" +#~ msgstr "Sobreposição de Extrusão Dual" + +#~ msgctxt "support_enable label" +#~ msgid "Enable Support" +#~ msgstr "Habilitar Suportes" + +#~ msgctxt "support_enable description" +#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." +#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ msgstr "G-Code Final" + +#~ msgctxt "material_end_of_filament_purge_length label" +#~ msgid "End Of Filament Purge Length" +#~ msgstr "Comprimento de Purga de Fim de Filamento" + +#~ msgctxt "material_end_of_filament_purge_speed label" +#~ msgid "End Of Filament Purge Speed" +#~ msgstr "Velocidade de Purga de Fim de Filamento" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Equalizar Fluxo de Filamento" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Em todos os lugares" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "Expande Contorno da Base Para Preenchimento" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Lower Skins" +#~ msgstr "Expandir Contornos Inferiores" + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "Expandir Contorno Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "Expandir Contorno do Topo Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Upper Skins" +#~ msgstr "Expandir Contornos Superiores" + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Distância de Descanso do Filamento" + +#~ msgctxt "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Preenche Lacunas Entre Paredes" + +#~ msgctxt "fill_perimeter_gaps description" +#~ msgid "Fills the gaps between walls where no walls fit." +#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." + +#~ msgctxt "filter_out_tiny_gaps label" +#~ msgid "Filter Out Tiny Gaps" +#~ msgstr "Filtrar Pequenas Lacunas" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." +#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." + +#~ msgctxt "small_feature_speed_factor_0 label" +#~ msgid "First Layer Speed" +#~ msgstr "Velocidade da Primeira Camada" + +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." + +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." + +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "Fator de compensaçõ de taxa de fluxo" + +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code Flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "material_guid description" +#~ msgid "GUID of the material. This is set automatically. " +#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " + +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "Altura do eixo" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "Tipo de G-Code" + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." + +#~ msgctxt "machine_heated_bed label" +#~ msgid "Has heated build plate" +#~ msgstr "Tem mesa de impressão aquecida" + +#~ msgctxt "machine_nozzle_heat_up_speed label" +#~ msgid "Heat up speed" +#~ msgstr "Velocidade de aquecimento" + +#~ msgctxt "machine_heat_zone_length label" +#~ msgid "Heat zone length" +#~ msgstr "Comprimento da zona de aquecimento" + +#~ msgctxt "infill_hollow label" +#~ msgid "Hollow Out Objects" +#~ msgstr "Tornar Objetos Ocos" + +#~ msgctxt "support_tree_branch_distance description" +#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." + +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." + +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "Ignorar Pequenas Lacunas em Z" + +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." + +#~ msgctxt "material_bed_temp_prepend label" +#~ msgid "Include build plate temperature" +#~ msgstr "Incluir temperatura da mesa de impressão" + +#~ msgctxt "material_print_temp_prepend label" +#~ msgid "Include material temperatures" +#~ msgstr "Incluir temperaturas dos materiais" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Order das Malhas de Preenchimento" + +#~ msgctxt "z_offset_layer_0 label" +#~ msgid "Initial Layer Z Offset" +#~ msgstr "Deslocamento em Z da Camada Inicial" + +#~ msgctxt "wall_x_extruder_nr label" +#~ msgid "Inner Walls Extruder" +#~ msgstr "Extrusor das Paredes Internas" + +#~ msgctxt "machine_center_is_zero label" +#~ msgid "Is center origin" +#~ msgstr "A origem está no centro" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nó" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Limitar Retrações de Suporte" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "Polígono Da Cabeça da Máquina" + +#~ msgctxt "machine_depth label" +#~ msgid "Machine depth" +#~ msgstr "Profundidada da mesa" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "Polígono da cabeça da máquina e da ventoinha" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "Polígono da cabeça da máquina" + +#~ msgctxt "machine_height label" +#~ msgid "Machine height" +#~ msgstr "Altura do volume de impressão" + +#~ msgctxt "machine_width label" +#~ msgid "Machine width" +#~ msgstr "Largura da mesa" + +#~ msgctxt "prime_tower_circular description" +#~ msgid "Make the prime tower as a circular shape." +#~ msgstr "Faz a torre de purga na forma circular." + +#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_end_of_filament_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_maximum_park_duration description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_no_load_move_factor description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidade Máxima de Alimentação" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Velocidade Máxima para Equalização de Fluxo" + +#~ msgctxt "max_feedrate_z_override label" +#~ msgid "Maximum Z Speed" +#~ msgstr "Velocidade Máxima em Z" + +#~ 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 "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." + +#~ msgctxt "mesh_position_x label" +#~ msgid "Mesh position x" +#~ msgstr "Posição X da malha" + +#~ msgctxt "mesh_position_y label" +#~ msgid "Mesh position y" +#~ msgstr "Posição Y da malha" + +#~ msgctxt "mesh_position_z label" +#~ msgid "Mesh position z" +#~ msgstr "Posição Z da malha" + +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "Diâmetro mínimo" + +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Mínimo Fluxo da Parede" + +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." + +#~ 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." + +#~ 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 not be generated." +#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." + +#~ 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 not be generated." +#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." + +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." + +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ msgstr "Evita Contornos" + +#~ msgctxt "meshfix_keep_open_polygons description" +#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." +#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." + +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Em lugar nenhum" + +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "Ângulo do bico" + +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "Comprimento do bico" + +#~ msgctxt "extruders_enabled_count label" +#~ msgid "Number of Extruders that are enabled" +#~ msgstr "Número de Extrusores habilitados" + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "Deslocamento do Extrusor" + +#~ 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 excesive stringing within the support structure." +#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." + +#~ 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." + +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." + +#~ msgctxt "optimize_wall_printing_order description" +#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." +#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." + +#~ msgctxt "support_infill_angles description" +#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Paredes exteriores antes das interiores" + +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "Diametro externo do bico" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferir Retração" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume de Purga da Torre de Purga" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Espessura da Torre de Purga" + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaçamento de Linhas do Raft" + +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." + +#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +#~ msgid "RepRap (Marlin/Sprinter)" +#~ msgstr "RepRap (Marlin/Sprinter)" + +#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" +#~ msgid "RepRap (Volumetric)" +#~ msgstr "RepRap (Volumétrico)" + +#~ 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." + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrair" + +#~ 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. " + +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "Velocidade de Purga da Retração" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Perímetro" + +#~ msgctxt "machine_show_variants label" +#~ msgid "Show machine variants" +#~ msgstr "Mostrar variantes da máquina" + +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Raio de Contração" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "Raio de contração do material em porcentagem." + +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ msgstr "Pular Algumas Conexões de Ziguezague" + +#~ msgctxt "support_zag_skip_count description" +#~ msgid "Skip one in every N connection lines to make the support structure easier to break." +#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +#~ msgctxt "support_skip_some_zags description" +#~ msgid "Skip some ZigZags connections to make the support structure easier to break." +#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." + +#~ 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 adhestion and accuracy." +#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ 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 adhestion and accuracy." +#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ msgctxt "small_skin_width description" +#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." + +#~ msgctxt "smooth_spiralized_contours description" +#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Fluxo de Espaguete" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Preenchimento em Espaguete" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Volume Extra do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Altura Máxima do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Passos do Preenchimento de Espaguete" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Penetração do Espaguete" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "magic_spiralize description" +#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." +#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." + +#~ msgctxt "wall_split_middle_threshold label" +#~ msgid "Split Middle Line Threshold" +#~ msgstr "Limite de Filete Central Dividido" + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "G-Code Inicial" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "Iniciar Camadas com a Mesma Parte" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." + +#~ msgctxt "support_bottom_height label" +#~ msgid "Support Bottom Thickness" +#~ msgstr "Espessura da Base do Suporte" + +#~ msgctxt "support_interface_line_distance label" +#~ msgid "Support Interface Line Distance" +#~ msgstr "Distância entre Linhas da Interface de Suporte" + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "Tetraédrico" + +#~ msgctxt "acceleration_support_interface description" +#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." +#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." + +#~ msgctxt "infill_overlap description" +#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 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: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." + +#~ msgctxt "support_tree_angle description" +#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "expand_skins_expand_distance description" +#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." +#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "z_offset_layer_0 description" +#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." +#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." + +#~ msgctxt "support_interface_extruder_nr description" +#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." +#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." + +#~ msgctxt "support_bottom_stair_step_height description" +#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." + +#~ msgctxt "skirt_gap description" +#~ msgid "" +#~ "The horizontal distance between the skirt and the first layer of the print.\n" +#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." +#~ msgstr "" +#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" +#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." + +#~ msgctxt "infill_offset_x description" +#~ msgid "The infill pattern is offset this distance along the X axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." + +#~ msgctxt "infill_offset_y description" +#~ msgid "The infill pattern is offset this distance along the Y axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." + +#~ msgctxt "adaptive_layer_height_variation description" +#~ msgid "The maximum allowed height different from the base layer height in mm." +#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." + +#~ msgctxt "meshfix_maximum_deviation description" +#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." +#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." + +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." +#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." + +#~ msgctxt "flow_rate_max_extrusion_offset description" +#~ msgid "The maximum distance in mm to compensate." +#~ msgstr "A distância máxima em mm a compensar." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." + +#~ msgctxt "jerk_support_interface description" +#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." +#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." + +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "A distância mínima entre o exterior do molde e do modelo." + +#~ msgctxt "min_odd_wall_line_width description" +#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," +#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." + +#~ 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 "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." + +#~ msgctxt "wall_add_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." + +#~ msgctxt "wall_split_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." + +#~ msgctxt "speed_support_interface description" +#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." +#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +#~ msgctxt "build_volume_temperature description" +#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." +#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." + +#~ msgctxt "material_print_temperature description" +#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." +#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." +#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." + +#~ msgctxt "wall_thickness description" +#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." + +#~ msgctxt "support_bottom_height description" +#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." +#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." + +#~ 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 "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "Tipo de G-Code a ser gerado para a impressora." + +#~ msgctxt "raft_smoothing description" +#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." + +#~ msgctxt "max_skin_angle_for_expansion description" +#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." +#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Suporte de Árvore" + +#~ msgctxt "support_tree_angle label" +#~ msgid "Tree Support Branch Angle" +#~ msgstr "Ângulo do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter label" +#~ msgid "Tree Support Branch Diameter" +#~ msgstr "Diâmetro de Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter_angle label" +#~ msgid "Tree Support Branch Diameter Angle" +#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_distance label" +#~ msgid "Tree Support Branch Distance" +#~ msgstr "Distância dos Galhos do Suporte em Árvore" + +#~ msgctxt "support_tree_collision_resolution label" +#~ msgid "Tree Support Collision Resolution" +#~ msgstr "Resolução de Colisão do Suporte em Árvore" + +#~ msgctxt "support_tree_max_diameter label" +#~ msgid "Tree Support Trunk Diameter" +#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" + +#~ 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_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "Espessura de Parede do Suporte em Árvore" + +#~ msgctxt "adaptive_layer_height_enabled label" +#~ msgid "Use adaptive layers" +#~ msgstr "Usar camadas adaptativas" + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." +#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Espera da Base de IA" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocidade de Impressão da Base da IA" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Fluxo de Conexão da IA" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altura da Conexão IA" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocidade de Impressão Descendente de IA" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Arrasto de IA" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Facilitador Ascendente da IA" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Queda de IA" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Espera Plana de IA" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Fluxo Plano de IA" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Fluxo da IA" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocidade de Impressão Horizontal de IA" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Tamanho do Nó de IA" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Espaço Livre para o Bico em IA" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Arrasto do Topo de IA" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Queda do Topo de IA" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distância de Penetração do Teto da IA" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Retardo exterior del techo en IA" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocidade da IA" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Endireitar Filetes Descendentes de IA" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Estratégia de IA" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Espera do Topo de IA" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocidade de Impressão Ascendente da IA" + +#, fuzzy +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Wait for build plate heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ msgctxt "material_print_temp_wait label" +#~ msgid "Wait for nozzle heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ 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." +#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." + +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." + +#~ msgctxt "z_offset_taper_layers description" +#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." +#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." + +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." + +#~ 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 "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 "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 "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 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 "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." + +#~ msgctxt "support_interface_line_width description" +#~ msgid "Width of a single support interface line." +#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpar Bico Depois da Troca" + +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "Salto Z da Limpeza Quando Retraída" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impressão em Arame" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Camadas de Amenização do Deslocamento Z" + +#~ msgctxt "support_zag_skip_count label" +#~ msgid "ZigZag Connection Skip Count" +#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "categoria_blackmagic" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "reparos_de_categoria" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "experimental!" From 513454075142d5e4074252027810cc9bd87f2948 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 23 Oct 2023 11:19:04 +0200 Subject: [PATCH 048/121] Remove unused extra argument --- cura/Snapshot.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 53090a5fec3..8b162403f8f 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -37,11 +37,10 @@ def getImageBoundaries(image: QImage): return min_x, max_x, min_y, max_y @staticmethod - def isometric_snapshot(width: int = 300, height: int = 300, *, root: Optional[SceneNode] = None) -> Optional[ - QImage]: + def isometric_snapshot(width: int = 300, height: int = 300) -> Optional[QImage]: """Create an isometric snapshot of the scene.""" - root = Application.getInstance().getController().getScene().getRoot() if root is None else root + root = Application.getInstance().getController().getScene().getRoot() # the direction the camera is looking at to create the isometric view iso_view_dir = Vector(-1, -1, -1).normalized() From 6c2a468c1896fcb4f82e95a186806a604691e986 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 23 Oct 2023 11:19:28 +0200 Subject: [PATCH 049/121] Reuse `node_bounds` utility function --- cura/Snapshot.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 8b162403f8f..4fd8f57b941 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -140,14 +140,7 @@ def snapshot(width = 300, height = 300): camera = Camera("snapshot", root) # determine zoom and look at - bbox = None - for node in DepthFirstIterator(root): - if not getattr(node, "_outside_buildarea", False): - if node.callDecoration("isSliceable") and node.getMeshData() and node.isVisible() and not node.callDecoration("isNonThumbnailVisibleMesh"): - if bbox is None: - bbox = node.getBoundingBox() - else: - bbox = bbox + node.getBoundingBox() + bbox = Snapshot.node_bounds(root) # If there is no bounding box, it means that there is no model in the buildplate if bbox is None: Logger.log("w", "Unable to create snapshot as we seem to have an empty buildplate") From e999ba8ffd7a371af016eeeb51f9bac93d3dec44 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 23 Oct 2023 13:12:40 +0200 Subject: [PATCH 050/121] Update AppImage build configuration This update removes various icon-theme exclusions from the AppImage build configuration and includes specific hicolor icon files. It also adds new environment variables and path mappings for handling user data more efficiently within the AppImage. This aims to optimize the packing process and improve the resultant AppImage's compatibility and performance. Contributes to CURA-11132 --- packaging/AppImage-builder/AppImageBuilder.yml.jinja | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 2d9d3f48e07..cede44755a1 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -48,12 +48,10 @@ AppDir: main include: - xdg-desktop-portal-kde:amd64 - exclude: - - hicolor-icon-theme - - adwaita-icon-theme - - humanity-icon-theme + exclude: [] files: - include: [] + include: + - usr/share/icons/hicolor/* exclude: - usr/share/man - usr/share/doc/*/README.* @@ -67,6 +65,9 @@ AppDir: QT_PLUGIN_PATH: "$APPDIR/qt/plugins" QML2_IMPORT_PATH: "$APPDIR/qt/qml" QT_QPA_PLATFORMTHEME: xdgdesktopportal + XDG_DATA_HOME: "$APPDIR/usr/share" + path_mappings: + - /usr/share:$APPDIR/usr/share test: fedora-30: image: appimagecrafters/tests-env:fedora-30 From dd2a80876f10a1c3b5e2e8ad331526e3a3b6ca1f Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 23 Oct 2023 14:52:05 +0200 Subject: [PATCH 051/121] Update package dependencies in AppImageBuilder The changes include adding several packages to the list of dependencies for the AppImage-builder, such as libgtk, librsvg2, imagemagick and icon themes. Furthermore, adjustments were made to the runtime environment variables (GDK_PIXBUF_MODULEDIR and GDK_PIXBUF_MODULE_FILE). Excluded file paths were also updated to exclude unnecessary documentation files. Contributes to CURA-11132 --- .../AppImageBuilder.yml.jinja | 28 +++++++++++++------ 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index cede44755a1..1cf321d7a5c 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -47,17 +47,26 @@ AppDir: - sourceline: deb https://packagecloud.io/slacktechnologies/slack/debian/ jessie main include: - - xdg-desktop-portal-kde:amd64 + - xdg-desktop-portal-kde + - libgtk-3-0 + - librsvg2-2 + - librsvg2-common + - libgdk-pixbuf2.0-0 + - libgdk-pixbuf2.0-bin + - libgdk-pixbuf2.0-common + - imagemagick + - shared-mime-info + - gnome-icon-theme-symbolic + - hicolor-icon-theme exclude: [] files: - include: - - usr/share/icons/hicolor/* + include: [] exclude: - - usr/share/man - - usr/share/doc/*/README.* - - usr/share/doc/*/changelog.* - - usr/share/doc/*/NEWS.* - - usr/share/doc/*/TODO.* + - usr/share/man + - usr/share/doc/*/README.* + - usr/share/doc/*/changelog.* + - usr/share/doc/*/NEWS.* + - usr/share/doc/*/TODO.* runtime: env: APPDIR_LIBRARY_PATH: "$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" @@ -65,7 +74,8 @@ AppDir: QT_PLUGIN_PATH: "$APPDIR/qt/plugins" QML2_IMPORT_PATH: "$APPDIR/qt/qml" QT_QPA_PLATFORMTHEME: xdgdesktopportal - XDG_DATA_HOME: "$APPDIR/usr/share" + GDK_PIXBUF_MODULEDIR: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders + GDK_PIXBUF_MODULE_FILE: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache path_mappings: - /usr/share:$APPDIR/usr/share test: From 87a02c6ea20120f2a008f2cc6fba58a2c6438f9c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 23 Oct 2023 15:26:15 +0200 Subject: [PATCH 052/121] Specify both OS and Arch for Mac --- .github/workflows/macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 01a64f5180a..89da0ac0862 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -90,7 +90,7 @@ env: jobs: cura-installer-create: - runs-on: ${{ inputs.operating_system }} + runs-on: [${{ inputs.operating_system }}, ${{ inputs.architecture }}] outputs: INSTALLER_FILENAME: ${{ steps.filename.outputs.INSTALLER_FILENAME }} From 52c9b4bea82f08b09305a6d778cc98399be3e917 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 23 Oct 2023 15:32:29 +0200 Subject: [PATCH 053/121] Use specific self-hosted label --- .github/workflows/macos.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 89da0ac0862..71236d30bda 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -38,7 +38,8 @@ on: default: 'macos-11' type: choice options: - - self-hosted + - self-hosted-X64 + - self-hosted-ARM64 - macos-11 - macos-12 workflow_call: @@ -90,7 +91,7 @@ env: jobs: cura-installer-create: - runs-on: [${{ inputs.operating_system }}, ${{ inputs.architecture }}] + runs-on: ${{ inputs.operating_system }} outputs: INSTALLER_FILENAME: ${{ steps.filename.outputs.INSTALLER_FILENAME }} From b83d3ebae71e4b5651319d3dd099595317f50003 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 23 Oct 2023 15:49:53 +0200 Subject: [PATCH 054/121] Use older version of Python --- .github/workflows/macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 71236d30bda..2d916a0b486 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -103,7 +103,7 @@ jobs: - name: Setup Python and pip uses: actions/setup-python@v4 with: - python-version: '3.10.x' + python-version: '3.8.x' cache: 'pip' cache-dependency-path: .github/workflows/requirements-conan-package.txt From b5a76427c8969377780d0f8fd15d304ff309cd9e Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 23 Oct 2023 15:56:29 +0200 Subject: [PATCH 055/121] Use newer version of Python --- .github/workflows/macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2d916a0b486..3aa324cf0ff 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -103,7 +103,7 @@ jobs: - name: Setup Python and pip uses: actions/setup-python@v4 with: - python-version: '3.8.x' + python-version: '3.11.x' cache: 'pip' cache-dependency-path: .github/workflows/requirements-conan-package.txt From aa03e9236bf82c771e116e6c037bdb291827e8b6 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 23 Oct 2023 16:22:55 +0200 Subject: [PATCH 056/121] Change defaults for Mac runners --- .github/workflows/installers.yml | 4 ++-- .github/workflows/macos.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 140248b6647..fa2f73998b7 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -95,7 +95,7 @@ jobs: enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} architecture: X64 - operating_system: macos-12 + operating_system: self-hosted-X64 secrets: inherit macos-arm-installer: @@ -107,7 +107,7 @@ jobs: enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} architecture: ARM64 - operating_system: self-hosted + operating_system: self-hosted-ARM64 secrets: inherit # Run and update nightly release when the nightly input is set to true or if the schedule is triggered diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 3aa324cf0ff..78b4c23fef2 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -27,7 +27,7 @@ on: architecture: description: 'Architecture' required: true - default: 'X64' + default: 'ARM64' type: choice options: - X64 @@ -35,7 +35,7 @@ on: operating_system: description: 'OS' required: true - default: 'macos-11' + default: 'self-hosted-ARM64' type: choice options: - self-hosted-X64 @@ -67,12 +67,12 @@ on: architecture: description: 'Architecture' required: true - default: 'X64' + default: 'ARM64' type: string operating_system: description: 'OS' required: true - default: 'macos-11' + default: 'self-hosted-ARM64' type: string env: From 57a7cdc08ccaffd6305ab358c59739cedfd27d10 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 24 Oct 2023 08:28:13 +0200 Subject: [PATCH 057/121] Use `LD_LIBRARY_PATH` Hoping that setting the `LD_LIBRARY_PATH` will ensure the correct glibc is used. And ensure that glibc is installed Contributes to CURA-11145 --- packaging/AppImage-builder/AppImageBuilder.yml.jinja | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 1cf321d7a5c..fde58a86508 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -48,6 +48,7 @@ AppDir: main include: - xdg-desktop-portal-kde + - glibc-source - libgtk-3-0 - librsvg2-2 - librsvg2-common @@ -70,6 +71,7 @@ AppDir: runtime: env: APPDIR_LIBRARY_PATH: "$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" + LD_LIBRARY_PATH: "$APPDIR:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" PYTHONPATH: "$APPDIR" QT_PLUGIN_PATH: "$APPDIR/qt/plugins" QML2_IMPORT_PATH: "$APPDIR/qt/qml" From 888c9e4bead9d5746023535cdb2d9578572c519b Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 24 Oct 2023 09:22:45 +0200 Subject: [PATCH 058/121] Add runtime compat to `LD_LIBRARY_PATH` That file containst libstdc++.so Contributes to CURA-11145 --- packaging/AppImage-builder/AppImageBuilder.yml.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index fde58a86508..992082e5c64 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -70,8 +70,8 @@ AppDir: - usr/share/doc/*/TODO.* runtime: env: - APPDIR_LIBRARY_PATH: "$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" - LD_LIBRARY_PATH: "$APPDIR:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" + APPDIR_LIBRARY_PATH: "$APPDIR:$APPDIR/runtime/compat/:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" + LD_LIBRARY_PATH: "$APPDIR:$APPDIR/runtime/compat/:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders" PYTHONPATH: "$APPDIR" QT_PLUGIN_PATH: "$APPDIR/qt/plugins" QML2_IMPORT_PATH: "$APPDIR/qt/qml" From 0a0236ff09457132dae7f3c9ac131f229287340a Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Tue, 24 Oct 2023 12:36:48 +0200 Subject: [PATCH 059/121] Restore EOL. part of CURA-11217 --- resources/i18n/pt_BR/cura.po | 11236 +++++++-------- resources/i18n/pt_BR/fdmprinter.def.json.po | 13482 +++++++++--------- 2 files changed, 12359 insertions(+), 12359 deletions(-) diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 6dce2be4d71..0179ae338b5 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -1,5618 +1,5618 @@ -# Cura -# Copyright (C) 2022 UltiMaker. -# This file is distributed under the same license as the Cura package. -# Ultimaker , 2022. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" -"PO-Revision-Date: 2023-10-23 05:56+0200\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.2\n" - -#, python-format -msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." -msgid "%(width).1f x %(depth).1f x %(height).1f mm" -msgstr "%(width).1f x %(depth).1f x %(height).1f mm" - -msgctxt "@action:label" -msgid "%1 & material" -msgstr "%1 & material" - -msgctxt "@action:label" -msgid "%1 out of %2" -msgstr "%1 de %2" - -msgctxt "@action:label" -msgid "%1 override" -msgid_plural "%1 overrides" -msgstr[0] "%1 sobreposto" -msgstr[1] "%1 sobrepostos" - -msgctxt "@action:label" -msgid "%1, %2 override" -msgid_plural "%1, %2 overrides" -msgstr[0] "%1, %2 sobreposição" -msgstr[1] "%1, %2 sobreposições" - -msgctxt "@label g for grams" -msgid "%1g" -msgstr "%1g" - -msgctxt "@label m for meter" -msgid "%1m" -msgstr "%1m" - -msgctxt "@action:inmenu menubar:printer" -msgid "&Add Printer..." -msgstr "&Adicionar Impressora..." - -msgctxt "@action:inmenu menubar:view" -msgid "&Camera position" -msgstr "Posição da &câmera" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Create profile from current settings/overrides..." -msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." - -msgctxt "@action:inmenu menubar:profile" -msgid "&Discard current changes" -msgstr "&Descartar ajustes atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Edit" -msgstr "&Editar" - -msgctxt "@title:menu menubar:file" -msgid "&Export..." -msgstr "&Exportar..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&File" -msgstr "Arquivo (&F)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Group Models" -msgstr "A&grupar Modelos" - -msgctxt "@title:menu menubar:toplevel" -msgid "&Help" -msgstr "Ajuda (&H)" - -msgctxt "@title:menu" -msgid "&Material" -msgstr "&Material" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Merge Models" -msgstr "Co&mbinar Modelos" - -msgctxt "@action:inmenu" -msgid "&Multiply Model..." -msgstr "&Multiplicar Modelo..." - -msgctxt "@action:inmenu menubar:file" -msgid "&New Project..." -msgstr "&Novo Projeto..." - -msgctxt "@action:inmenu menubar:file" -msgid "&Open File(s)..." -msgstr "Abrir Arquiv&o(s)..." - -msgctxt "@title:menu menubar:settings" -msgid "&Printer" -msgstr "Im&pressora" - -msgctxt "@action:inmenu menubar:file" -msgid "&Quit" -msgstr "Sair (&Q)" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Redo" -msgstr "&Refazer" - -msgctxt "@title:menu menubar:file" -msgid "&Save Project..." -msgstr "&Salvar Projeto..." - -msgctxt "@title:menu menubar:toplevel" -msgid "&Settings" -msgstr "Aju&stes" - -msgctxt "@action:inmenu menubar:edit" -msgid "&Undo" -msgstr "Desfazer (&U)" - -msgctxt "@action:inmenu menubar:profile" -msgid "&Update profile with current settings/overrides" -msgstr "At&ualizar perfil com valores e sobreposições atuais" - -msgctxt "@title:menu menubar:toplevel" -msgid "&View" -msgstr "&Ver" - -msgctxt "@label" -msgid "*You will need to restart the application for these changes to have effect." -msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." - -msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "" -"- Adicione perfis de material e plug-ins do Marketplace\n" -"- Faça backup e sincronize seus perfis de materiais e plugins\n" -"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" - -msgctxt "@heading" -msgid "-- incomplete --" -msgstr "-- incompleto --" - -msgctxt "@action:label" -msgid "1mm Transmittance (%)" -msgstr "Transmitância de 1mm (%)" - -msgctxt "@info:title" -msgid "3D Model Assistant" -msgstr "Assistente de Modelo 3D" - -msgctxt "@action:inmenu menubar:view" -msgid "3D View" -msgstr "Visão &3D" - -msgctxt "@info:tooltip" -msgid "3D View" -msgstr "Visão 3D" - -msgctxt "@item:inlistbox" -msgid "3MF File" -msgstr "Arquivo 3MF" - -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "name" -msgid "3MF Writer" -msgstr "Gerador de 3MF" - -msgctxt "@error:zip" -msgid "3MF Writer plug-in is corrupt." -msgstr "O complemento de Escrita 3MF está corrompido." - -msgctxt "@item:inlistbox" -msgid "3MF file" -msgstr "Arquivo 3MF" - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is active and you overwrote some settings." -msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." - -msgctxt "@info, %1 is the name of the custom profile" -msgid "%1 custom profile is overriding some settings." -msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." - -msgctxt "@label %i will be replaced with a profile name" -msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." -msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
    Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." - -#, python-brace-format -msgctxt "@label OpenGL renderer" -msgid "
  • OpenGL Renderer: {renderer}
  • " -msgstr "
  • Renderizador da OpenGL: {renderer}
  • " - -#, python-brace-format -msgctxt "@label OpenGL vendor" -msgid "
  • OpenGL Vendor: {vendor}
  • " -msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " - -#, python-brace-format -msgctxt "@label OpenGL version" -msgid "
  • OpenGL Version: {version}
  • " -msgstr "
  • Versão da OpenGL: {version}
  • " - -msgctxt "@label crash message" -msgid "" -"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" -"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" -" " -msgstr "" -"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" -"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" -" " - -msgctxt "@label crash message" -msgid "" -"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" -" " -msgstr "" -"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" -"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" -"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" -"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" -" " - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" -"

    {model_names}

    \n" -"

    Find out how to ensure the best possible print quality and reliability.

    \n" -"

    View print quality guide

    " -msgstr "" -"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" -"

    {model_names}

    \n" -"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" -"

    Ver guia de qualidade de impressão

    " - -msgctxt "@label" -msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" -msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" - -msgctxt "info:status" -msgid "A cloud connection is not available for a printer" -msgid_plural "A cloud connection is not available for some printers" -msgstr[0] "Conexão de nuvem não está disponível para uma impressora" -msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" - -msgctxt "@message" -msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." -msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." - -msgctxt "@item:inlistbox" -msgid "AMF File" -msgstr "Arquivo AMF" - -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor AMF" - -msgctxt "@label" -msgid "Abort" -msgstr "Abortar" - -msgctxt "@label" -msgid "Abort Print" -msgstr "Abortar Impressão" - -msgctxt "@window:title" -msgid "Abort print" -msgstr "Abortar impressão" - -msgctxt "@label:status" -msgid "Aborted" -msgstr "Abortado" - -msgctxt "@label" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@label:status" -msgid "Aborting..." -msgstr "Abortando..." - -msgctxt "@title:window The argument is the application name." -msgid "About %1" -msgstr "Sobre %1" - -msgctxt "@action:inmenu menubar:help" -msgid "About..." -msgstr "Sobre..." - -msgctxt "@button" -msgid "Accept" -msgstr "Aceitar" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." - -msgctxt "@label" -msgid "Account synced" -msgstr "Conta sincronizada" - -msgctxt "@label:status" -msgid "Action required" -msgstr "Necessária uma ação" - -msgctxt "@action:button" -msgid "Activate" -msgstr "Ativar" - -msgctxt "@label" -msgid "Active print" -msgstr "Impressão ativa" - -msgctxt "@action:button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@button" -msgid "Add" -msgstr "Adicionar" - -msgctxt "@action:button" -msgid "Add New" -msgstr "Adicionar Novo" - -msgctxt "@title:window" -msgid "Add Printer" -msgstr "Adicionar Impressora" - -msgctxt "@button" -msgid "Add UltiMaker printer via Digital Factory" -msgstr "Adicionar impressora UltiMaker via Digital Factory" - -msgctxt "@label" -msgid "Add a Cloud printer" -msgstr "Adicionar uma impressora de Nuvem" - -msgctxt "@label" -msgid "Add a networked printer" -msgstr "Adicionar uma impressora de rede" - -msgctxt "@label" -msgid "Add a non-networked printer" -msgstr "Adicionar uma impressora local" - -msgctxt "@action" -msgid "Add a script" -msgstr "Adicionar um script" - -msgctxt "@option:check" -msgid "Add icon to system tray *" -msgstr "Adicionar ícone à bandeja do sistema *" - -msgctxt "@button" -msgid "Add local printer" -msgstr "Adicionar impressora local" - -msgctxt "@option:check" -msgid "Add machine prefix to job name" -msgstr "Adicionar prefixo de máquina ao nome do trabalho" - -msgctxt "@text" -msgid "Add material settings and plugins from the Marketplace" -msgstr "Adicionar ajustes de materiais e plugins do Marketplace" - -msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." -msgid "Add more materials from Marketplace" -msgstr "Adicionar mais materiais ao Marketplace" - -msgctxt "@button" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer" -msgstr "Adicionar impressora" - -msgctxt "@label" -msgid "Add printer by IP" -msgstr "Adicionar impressora por IP" - -msgctxt "@label" -msgid "Add printer by IP address" -msgstr "Adicionar impressora por endereço IP" - -msgctxt "@button" -msgid "Add printer manually" -msgstr "Adicionar impressora manualmente" - -#, python-brace-format -msgctxt "info:status Filled in with printer name and printer model." -msgid "Adding printer {name} ({model}) from your account" -msgstr "Adicionando impressora {name} ({model}) da sua conta" - -msgctxt "@label" -msgid "Address" -msgstr "Endereço" - -msgctxt "@label" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "@label" -msgid "Adhesion Information" -msgstr "Informação sobre Aderência" - -msgctxt "@label" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do preenchimento da impressão." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." - -msgctxt "@label Header for list of settings." -msgid "Affected By" -msgstr "Afetado Por" - -msgctxt "@label Header for list of settings." -msgid "Affects" -msgstr "Afeta" - -msgctxt "@button" -msgid "Agree" -msgstr "Concordar" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos Os Arquivos (*)" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos Os Tipos Suportados ({0})" - -msgctxt "@text:window" -msgid "Allow sending anonymous data" -msgstr "Permitir enviar dados anônimos" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite carregar e exibir arquivos G-Code." - -msgctxt "@option:discardOrKeep" -msgid "Always ask me this" -msgstr "Sempre perguntar" - -msgctxt "@option:openProject" -msgid "Always ask me this" -msgstr "Sempre me perguntar" - -msgctxt "@option:discardOrKeep" -msgid "Always discard changed settings" -msgstr "Sempre descartar alterações da configuração" - -msgctxt "@option:openProject" -msgid "Always import models" -msgstr "Sempre importar modelos" - -msgctxt "@option:openProject" -msgid "Always open as a project" -msgstr "Sempre abrir como projeto" - -msgctxt "@option:discardOrKeep" -msgid "Always transfer changed settings to new profile" -msgstr "Sempre transferir as alterações para o novo perfil" - -msgctxt "@info:tooltip" -msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" - -msgctxt "@label" -msgid "Annealing" -msgstr "Recozimento" - -msgctxt "@label" -msgid "Anonymous" -msgstr "Anônimo" - -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Framework de Aplicações" - -msgctxt "@label" -msgid "Apply Extruder offsets to GCode" -msgstr "Aplicar deslocamentos de Extrusão ao G-Code" - -msgctxt "@info:title" -msgid "Are you ready for cloud printing?" -msgstr "Você está pronto para a impressão de nuvem?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to abort %1?" -msgstr "Você tem certeza que quer abortar %1?" - -msgctxt "@label" -msgid "Are you sure you want to abort the print?" -msgstr "Tem certeza que deseja abortar a impressão?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to delete %1?" -msgstr "Você tem certeza que quer remover %1?" - -msgctxt "@dialog:info" -msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." - -msgctxt "@label %1 is the application name" -msgid "Are you sure you want to exit %1?" -msgstr "Tem certeza que quer sair de %1?" - -msgctxt "@label %1 is the name of a print job." -msgid "Are you sure you want to move %1 to the top of the queue?" -msgstr "Você tem certeza que quer mover %1 para o topo da fila?" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "Are you sure you want to remove {printer_name} temporarily?" -msgstr "Tem certeza que quer remover {printer_name} temporariamente?" - -msgctxt "@info:question" -msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." -msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" - -#, python-brace-format -msgctxt "@label {0} is the name of a printer that's about to be deleted." -msgid "Are you sure you wish to remove {0}? This cannot be undone!" -msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models" -msgstr "Posicionar Todos os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Arrange All Models in a grid" -msgstr "Organizar Todos os Modelos em Grade" - -msgctxt "@label:button" -msgid "Ask a question" -msgstr "Fazer uma pergunta" - -msgctxt "@checkbox:description" -msgid "Auto Backup" -msgstr "Auto Backup" - -msgctxt "@checkbox:description" -msgid "Automatically create a backup each day that Cura is started." -msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." - -msgctxt "@option:check" -msgid "Automatically drop models to the build plate" -msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" - -msgctxt "@action:button" -msgid "Automatically upgrade Firmware" -msgstr "Automaticamente atualizar Firmware" - -msgctxt "@label" -msgid "Available networked printers" -msgstr "Impressoras de rede disponíveis" - -msgctxt "@item:inlistbox" -msgid "BMP Image" -msgstr "Imagem BMP" - -msgctxt "@button" -msgid "Back" -msgstr "Voltar" - -msgctxt "@button:tooltip" -msgid "Back" -msgstr "Voltar" - -msgctxt "@info:title" -msgid "Backup" -msgstr "Backup" - -msgctxt "@button" -msgid "Backup Now" -msgstr "Backup Agora" - -msgctxt "@action:button" -msgid "Backup and Reset Configuration" -msgstr "Salvar e Restabelecer Configuração" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Permite backup e restauração da configuração." - -msgctxt "@text" -msgid "Backup and sync your material settings and plugins" -msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" - -msgctxt "@description" -msgid "Backup and synchronize your Cura settings." -msgstr "Fazer backup e sincronizar os ajustes do Cura." - -msgctxt "@info:title" -msgid "Backups" -msgstr "Backups" - -msgctxt "@action:label" -msgid "Base (mm)" -msgstr "Base (mm)" - -msgctxt "@action:inmenu menubar:view" -msgid "Bottom View" -msgstr "Visão de Baixo" - -msgctxt "@label" -msgid "Brand" -msgstr "Marca" - -msgctxt "@title" -msgid "Build Plate Leveling" -msgstr "Nivelamento da mesa de impressão" - -msgctxt "@info:title" -msgid "Build Volume" -msgstr "Volume de Impressão" - -msgctxt "@label" -msgid "Build plate" -msgstr "Mesa de Impressão" - -msgctxt "@label" -msgid "Build plate shape" -msgstr "Forma da plataforma de impressão" - -msgctxt "@label" -msgid "Bundled Materials" -msgstr "Materiais Empacotados" - -msgctxt "@label" -msgid "Bundled Plugins" -msgstr "Complementos Empacotados" - -msgctxt "@button" -msgid "Buy spool" -msgstr "Comprar carretel" - -msgctxt "@label Is followed by the name of an author" -msgid "By" -msgstr "Por" - -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "Biblioteca de Ligações C/C++" - -msgctxt "@item:inlistbox" -msgid "COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA" - -msgctxt "@info:status" -msgid "Calculated" -msgstr "Calculado" - -msgctxt "@window:text" -msgid "Camera rendering:" -msgstr "Renderização de câmera:" - -msgctxt "@action:inmenu menubar:view" -msgid "Camera view" -msgstr "Visão de câmera" - -msgctxt "@info:title" -msgid "Can't Find Location" -msgstr "Não Foi Encontrada Localização" - -msgctxt "@info:title" -msgid "Can't Open Project File" -msgstr "Não Foi Possível Abrir o Arquivo de Projeto" - -msgctxt "@label" -msgid "Can't connect to your UltiMaker printer?" -msgstr "Não consegue conectar à sua impressora UltiMaker?" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Can't import profile from {0} before a printer is added." -msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Can't open any other file if G-code is loading. Skipped importing {0}" -msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" - -msgctxt "@info:error" -msgid "Can't write to UFP file:" -msgstr "Não foi possível escrever no arquivo UFP:" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@button Cancel pre-heating" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@option:check" -msgid "Caution message in g-code reader" -msgstr "Mensagem de alera no leitor de G-Code" - -msgctxt "@action:inmenu" -msgid "Ce&nter Model on Platform" -msgstr "Ce&ntralizar Modelo na Mesa" - -msgctxt "@action:inmenu menubar:edit" -msgid "Center Selected" -msgstr "Centralizar Selecionados" - -msgctxt "@action:button" -msgid "Center camera when item is selected" -msgstr "Centralizar câmera quanto o item é selecionado" - -msgctxt "@info:tooltip" -msgid "Change active post-processing scripts." -msgstr "Alterar scripts de pós-processamento ativos." - -msgctxt "@label" -msgid "Change material %1 from %2 to %3." -msgstr "Alterar material %1 de %2 para %3." - -msgctxt "@label" -msgid "Change print core %1 from %2 to %3." -msgstr "Alterar núcleo de impressão %1 de %2 para %3." - -msgctxt "@info:title" -msgid "Changes detected from your UltiMaker account" -msgstr "Alterações detectadas de sua conta UltiMaker" - -msgctxt "@title" -msgid "Changes from your account" -msgstr "Alterações da sua conta" - -msgctxt "@label:textbox" -msgid "Check all" -msgstr "Verificar tudo" - -msgctxt "@button" -msgid "Check for account updates" -msgstr "Verificar atualizações da conta" - -msgctxt "@option:check" -msgid "Check for updates on start" -msgstr "Verificar atualizações na inicialização" - -msgctxt "@label" -msgid "Checking..." -msgstr "Verificando..." - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Verifica por atualizações de firmware." - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." - -msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "" -"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" -"\n" -"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" -"\n" -"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." - -msgctxt "@action:inmenu menubar:edit" -msgid "Clear Build Plate" -msgstr "Esvaziar a Mesa de Impressão" - -msgctxt "@option:check" -msgid "Clear buildplate before loading model into the single instance" -msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" - -msgctxt "@text" -msgid "Click the export material archive button." -msgstr "Clique no botão de exportar arquivo de material." - -msgctxt "@action:button" -msgid "Close" -msgstr "Fechar" - -msgctxt "@title:window %1 is the application name" -msgid "Closing %1" -msgstr "Fechando %1" - -msgctxt "@action:inmenu" -msgid "Collapse All Categories" -msgstr "Encolher Todas As Categorias" - -msgctxt "@label" -msgid "Color" -msgstr "Cor" - -msgctxt "@action:label" -msgid "Color Model" -msgstr "Modelo de Cor" - -msgctxt "@label" -msgid "Color scheme" -msgstr "Esquema de Cores" - -msgctxt "@info" -msgid "Compare and save." -msgstr "Comparar e salvar." - -msgctxt "@label" -msgid "Compatibility Mode" -msgstr "Modo de Compatibilidade" - -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "Compatibilidade entre Python 2 e 3" - -msgctxt "@title:label" -msgid "Compatible Printers" -msgstr "Impressoras Compatíveis" - -msgctxt "@label" -msgid "Compatible material diameter" -msgstr "Diâmetro de material compatível" - -msgctxt "@header" -msgid "Compatible printers" -msgstr "Impressoras compatíveis" - -msgctxt "@header" -msgid "Compatible support materials" -msgstr "Materiais de suporte compatíveis" - -msgctxt "@header" -msgid "Compatible with Material Station" -msgstr "Compatível com Material Station" - -msgctxt "@item:inlistbox" -msgid "Compressed COLLADA Digital Asset Exchange" -msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" - -msgctxt "@item:inlistbox" -msgid "Compressed G-code File" -msgstr "Arquivo de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-Code Comprimido" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gerador de G-Code Comprimido" - -msgctxt "@title:window" -msgid "Configuration Changes" -msgstr "Alterações de Configuração" - -msgctxt "@error" -msgid "Configuration not supported" -msgstr "Configuração não suportada" - -msgctxt "@header" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@label" -msgid "Configurations" -msgstr "Configurações" - -msgctxt "@action:inmenu" -msgid "Configure Cura..." -msgstr "Configurar Cura..." - -msgctxt "@info:tooltip" -msgid "Configure Per Model Settings" -msgstr "Configurar ajustes por Modelo" - -msgctxt "@action" -msgid "Configure group" -msgstr "Configurar grupo" - -msgctxt "@action:menu" -msgid "Configure setting visibility..." -msgstr "Configurar a visibilidade dos ajustes..." - -msgctxt "@title:window" -msgid "Confirm Diameter Change" -msgstr "Confirmar Mudança de Diâmetro" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -msgctxt "@action:button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@button" -msgid "Connect" -msgstr "Conectar" - -msgctxt "@title:window" -msgid "Connect to Networked Printer" -msgstr "Conectar a Impressora de Rede" - -msgctxt "@action" -msgid "Connect via Network" -msgstr "Conectar pela rede" - -msgctxt "@info:status" -msgid "Connected over the network" -msgstr "Conectado pela rede" - -msgctxt "@label" -msgid "Connected printers" -msgstr "Impressoras conectadas" - -msgctxt "@info:status" -msgid "Connected via USB" -msgstr "Conectado via USB" - -msgctxt "@info:status" -msgid "Connected via cloud" -msgstr "Conectado pela nuvem" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." - -msgctxt "@tooltip:button" -msgid "Consult the UltiMaker Community." -msgstr "Consultar a Comunidade UltiMaker." - -msgctxt "@title:window" -msgid "Convert Image" -msgstr "Converter Imagem" - -msgctxt "@label" -msgid "Cooling Fan Number" -msgstr "Número da Ventoinha de Resfriamento" - -msgctxt "@action:menu" -msgid "Copy all changed values to all extruders" -msgstr "Copiar todos os valores alterados para todos os extrusores" - -msgctxt "@action:inmenu menubar:edit" -msgid "Copy to clipboard" -msgstr "Copiar para a área de transferência" - -msgctxt "@action:menu" -msgid "Copy value to all extruders" -msgstr "Copiar valor para todos os extrusores" - -msgctxt "@label" -msgid "Cost per Meter" -msgstr "Custo por Metro" - -msgctxt "@info" -msgid "Could not access update information." -msgstr "Não foi possível acessar informação de atualização." - -msgctxt "@label" -msgid "Could not connect to device." -msgstr "Não foi possível conectar ao dispositivo." - -msgctxt "@info:backup_failed" -msgid "Could not create archive from user data directory: {}" -msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" - -#, python-brace-format -msgctxt "@info:status Don't translate the tag {device}!" -msgid "Could not find a file name when trying to write to {device}." -msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." - -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not import material %1: %2" -msgstr "Não foi possível importar material %1: %2" - -msgctxt "@info:error" -msgid "Could not interpret the server's response." -msgstr "Não foi possível interpretar a resposta de servidor." - -msgctxt "@info:error" -msgid "Could not reach Marketplace." -msgstr "Não foi possível conectar ao Marketplace." - -msgctxt "@message" -msgid "Could not read response." -msgstr "Não foi possível ler a resposta." - -msgctxt "@message:text" -msgid "Could not save material archive to {}:" -msgstr "Não foi possível salvar o arquivo de materiais para {}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível salvar em {0}: {1}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Could not save to removable drive {0}: {1}" -msgstr "Não foi possível salvar em unidade removível {0}: {1}" - -msgctxt "@info:text" -msgid "Could not upload the data to the printer." -msgstr "Não foi possível transferir os dados para a impressora." - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"Sem permissão para executar processo." - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"O sistema operacional está bloqueando (antivírus?)" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "" -"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" -"O recurso está temporariamente indisponível" - -msgctxt "@title:window" -msgid "Crash Report" -msgstr "Relatório de Problema" - -msgctxt "@title:window" -msgid "Create Profile" -msgstr "Criar Perfil" - -msgctxt "@text" -msgid "Create a free UltiMaker Account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@button" -msgid "Create a free UltiMaker account" -msgstr "Criar uma conta UltiMaker gratuita" - -msgctxt "@info:tooltip" -msgid "Create a volume in which supports are not printed." -msgstr "Cria um volume em que os suportes não são impressos." - -msgctxt "@action:ComboBox Save settings in a new profile" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:button" -msgid "Create new" -msgstr "Criar novo" - -msgctxt "@button" -msgid "Create new" -msgstr "Criar novos" - -msgctxt "@action:tooltip" -msgid "Create new profile from current settings/overrides" -msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" - -msgctxt "@tooltip:button" -msgid "Create print projects in Digital Library." -msgstr "Cria projetos de impressão na Digital Library." - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" - -msgctxt "@info:backup_status" -msgid "Creating your backup..." -msgstr "Criando seu backup..." - -msgctxt "@item:inlistbox" -msgid "Cura 15.04 profiles" -msgstr "Perfis do Cura 15.04" - -msgctxt "@title:window" -msgid "Cura Backups" -msgstr "Backups do Cura" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Backups Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Profile" -msgstr "Perfil do Cura" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis do Cura" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de Perfis do Cura" - -msgctxt "@item:inlistbox" -msgid "Cura Project 3MF file" -msgstr "Arquivo de Projeto 3MF do Cura" - -msgctxt "@backuplist:label" -msgid "Cura Version" -msgstr "Versão do Cura" - -msgctxt "@title:window" -msgid "Cura can't start" -msgstr "O Cura não consegue iniciar" - -#, python-brace-format -msgctxt "@info:status" -msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." -msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." - -msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "" -"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" -"Cura orgulhosamente usa os seguintes projetos open-source:" - -msgctxt "@label" -msgid "Cura language" -msgstr "Linguagem do Cura" - -msgctxt "@label Cura version number" -msgid "Cura version" -msgstr "Versão do Cura" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "@label" -msgid "Currency:" -msgstr "Moeda:" - -msgctxt "@title:column" -msgid "Current" -msgstr "Atual" - -msgctxt "@title:column" -msgid "Current changes" -msgstr "Alterações atuais" - -msgctxt "@header" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@title:tab" -msgid "Custom" -msgstr "Personalizado" - -msgctxt "@label" -msgid "Custom Material" -msgstr "Material Personalizado" - -msgctxt "@label" -msgid "Custom profile" -msgstr "Perfil personalizado" - -msgctxt "@info" -msgid "Custom profile name:" -msgstr "Nome de perfil personalizado:" - -msgctxt "@label" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@label:header" -msgid "Custom profiles" -msgstr "Perfis personalizados" - -msgctxt "@action:inmenu menubar:edit" -msgid "Cut" -msgstr "Cortar" - -msgctxt "@item:inlistbox" -msgid "Cutting mesh" -msgstr "Malha de corte" - -msgctxt "@item:inlistbox" -msgid "Darker is higher" -msgstr "Mais escuro é mais alto" - -msgctxt "@info:title" -msgid "Data Sent" -msgstr "Dados Enviados" - -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Formato de Intercâmbio de Dados" - -msgctxt "@button" -msgid "Decline" -msgstr "Recusar" - -msgctxt "@button" -msgid "Decline and close" -msgstr "Rejeitar e fechar" - -msgctxt "@button" -msgid "Decline and remove from account" -msgstr "Recusar e remover da conta" - -msgctxt "@info:No intent profile selected" -msgid "Default" -msgstr "Default" - -msgctxt "@label" -msgid "Default" -msgstr "Default" - -msgctxt "@window:text" -msgid "Default behavior for changed setting values when switching to a different profile: " -msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " - -msgctxt "@info:tooltip" -msgid "Default behavior when opening a project file" -msgstr "Comportamento default ao abrir um arquivo de projeto" - -msgctxt "@window:text" -msgid "Default behavior when opening a project file: " -msgstr "Comportamento default ao abrir um arquivo de projeto: " - -msgctxt "@action:button" -msgid "Defaults" -msgstr "Defaults" - -msgctxt "@label" -msgid "Defines the thickness of your part side walls, roof and floor." -msgstr "Define a espessura das paredes laterais, teto e base da sua peça." - -msgctxt "@label" -msgid "Delete" -msgstr "Remover" - -msgctxt "@dialog:title" -msgid "Delete Backup" -msgstr "Apagar o Backup" - -msgctxt "@action:inmenu" -msgid "Delete Model" -msgstr "Remover Modelo" - -msgctxt "@action:inmenu menubar:edit" -msgid "Delete Selected" -msgstr "Remover Selecionados" - -msgctxt "@window:title" -msgid "Delete print job" -msgstr "Remover trabalho de impressão" - -msgctxt "@label" -msgid "Density" -msgstr "Densidade" - -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "Gestor de pacote e dependência" - -msgctxt "@action:label" -msgid "Depth (mm)" -msgstr "Profundidade (mm)" - -msgctxt "@action:label" -msgid "Derivative from" -msgstr "Derivado de" - -msgctxt "@header" -msgid "Description" -msgstr "Descrição" - -msgctxt "@label" -msgid "Description" -msgstr "Descrição" - -msgctxt "@action:button" -msgid "Details" -msgstr "Detalhes" - -msgctxt "@label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "@button" -msgid "Disable" -msgstr "Desabilitar" - -msgctxt "@action:inmenu" -msgid "Disable Extruder" -msgstr "Desabilitar Extrusor" - -msgctxt "@option:discardOrKeep" -msgid "Discard and never ask again" -msgstr "Descartar e não perguntar novamente" - -msgctxt "@action:button" -msgid "Discard changes" -msgstr "Descartar alterações" - -msgctxt "@action:button" -msgid "Discard current changes" -msgstr "Descartar ajustes atuais" - -msgctxt "@title:window" -msgid "Discard or Keep changes" -msgstr "Descartar ou Manter alterações" - -msgctxt "@button" -msgid "Dismiss" -msgstr "Dispensar" - -msgctxt "@label" -msgid "Display Name" -msgstr "Exibir Nome" - -msgctxt "@option:check" -msgid "Display model errors" -msgstr "Exibir erros de modelo" - -msgctxt "@option:check" -msgid "Display overhang" -msgstr "Exibir seções pendentes" - -msgctxt "@info:option_text" -msgid "Do not show this message again" -msgstr "Não mostrar essa mensagem novamente" - -msgctxt "@info:generic" -msgid "Do you want to sync material and software packages with your account?" -msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" - -msgctxt "@action:label" -msgid "Don't show project summary on save again" -msgstr "Não exibir resumo do projeto ao salvar novamente" - -msgctxt "@action:menu" -msgid "Don't show this setting" -msgstr "Não exibir este ajuste" - -msgctxt "@label" -msgid "Don't support overlaps" -msgstr "Não suportar sobreposições" - -msgctxt "@button" -msgid "Done" -msgstr "Feito" - -msgctxt "@button" -msgid "Downgrade" -msgstr "Downgrade" - -msgctxt "@button" -msgid "Downgrading..." -msgstr "Fazendo downgrade..." - -msgctxt "@label" -msgid "Draft" -msgstr "Rascunho" - -msgctxt "@action:button" -msgid "Duplicate" -msgstr "Duplicar" - -msgctxt "@title:window" -msgid "Duplicate Profile" -msgstr "Duplicar Perfil" - -msgctxt "@backup_limit_info" -msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." -msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." - -msgctxt "@title:menu menubar:toplevel" -msgid "E&xtensions" -msgstr "E&xtensões" - -msgctxt "@action:button" -msgid "Edit" -msgstr "Editar" - -msgctxt "@action:button" -msgid "Eject" -msgstr "Ejetar" - -#, python-brace-format -msgctxt "@action" -msgid "Eject removable device {0}" -msgstr "Ejetar dispositivo removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." - -msgctxt "@label" -msgid "Empty" -msgstr "Vazio" - -msgctxt "@button" -msgid "Enable" -msgstr "Habilitar" - -msgctxt "@action:inmenu" -msgid "Enable Extruder" -msgstr "Habilitar Extrusor" - -msgctxt "@label" -msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." -msgstr "Habilita a impressão de brim ou raft. Adicionará uma área plana em volta do objeto ou abaixo dele que seja fácil de destacar depois. Desabilitar este ajuste resulta em um skirt em volta do objeto por default." - -msgctxt "@label" -msgid "Enabled" -msgstr "Habilitado" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." - -msgctxt "@title:label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "@label" -msgid "End-to-end solution for fused filament 3D printing." -msgstr "Solução completa para impressão 3D com filamento fundido." - -msgctxt "@info:title" -msgid "EnginePlugin" -msgstr "EnginePlugin" - -msgctxt "@label" -msgid "Engineering" -msgstr "Engenharia" - -msgctxt "@option:check" -msgid "Ensure models are kept apart" -msgstr "Assegurar que os modelos sejam mantidos separados" - -msgctxt "@label" -msgid "Enter the IP address of your printer on the network." -msgstr "Entre o endereço IP da sua impressora na rede." - -msgctxt "@text" -msgid "Enter your printer's IP address." -msgstr "Entre o endereço IP de sua impressora." - -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" - -msgctxt "@title:groupbox" -msgid "Error traceback" -msgstr "Traceback do erro" - -msgctxt "@label" -msgid "Estimated time left" -msgstr "Tempo restante estimado" - -msgctxt "@action:inmenu" -msgid "Exit Full Screen" -msgstr "Sair da Tela Cheia" - -msgctxt "@label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "@action:button" -msgid "Export" -msgstr "Exportar" - -msgctxt "@title:window" -msgid "Export All Materials" -msgstr "Exportar Todos Os Materiais" - -msgctxt "@title:window" -msgid "Export Material" -msgstr "Exportar Material" - -msgctxt "@title:window" -msgid "Export Profile" -msgstr "Exportar Perfil" - -msgctxt "@action:inmenu menubar:file" -msgid "Export Selection..." -msgstr "Exportar Seleção..." - -msgctxt "@button" -msgid "Export material archive" -msgstr "Exportar arquivo de material" - -msgctxt "@info:title" -msgid "Export succeeded" -msgstr "Exportação concluída" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Exported profile to {0}" -msgstr "Perfil exportado para {0}" - -msgctxt "@tooltip:button" -msgid "Extend UltiMaker Cura with plugins and material profiles." -msgstr "Estende o UltiMaker Cura com complementos e perfis de material." - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite scripts criados por usuários para pós-processamento" - -msgctxt "@label" -msgid "Extruder" -msgstr "Extrusor" - -msgctxt "@action:label" -msgid "Extruder %1" -msgstr "Extrusor %1" - -msgctxt "@title:label" -msgid "Extruder End G-code" -msgstr "G-Code Final do Extrusor" - -msgctxt "@title:label" -msgid "Extruder Start G-code" -msgstr "G-Code Inicial do Extrusor" - -msgctxt "@info:title" -msgid "Extruder(s) Disabled" -msgstr "Extrusor(es) Desabilitado(s)" - -msgctxt "@label:status" -msgid "Failed" -msgstr "Falhado" - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory to sync materials with some of the printers." -msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." - -msgctxt "@text:error" -msgid "Failed to connect to Digital Factory." -msgstr "Falha em conectar à Digital Factory." - -msgctxt "@text:error" -msgid "Failed to create archive of materials to sync with printers." -msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." - -#, python-brace-format -msgctxt "@info:status" -msgid "Failed to eject {0}. Another program may be using the drive." -msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." - -msgctxt "@info:status Don't translate the XML tags and !" -msgid "Failed to export material to %1: %2" -msgstr "Falha em exportar material para %1: %2" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Failed to export profile to {0}: {1}" -msgstr "Falha ao exportar perfil para {0}: {1}" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to export profile to {0}: Writer plugin reported failure." -msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tag !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}:" -msgstr "Erro ao importar perfil de {0}:" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "Failed to import profile from {0}: {1}" -msgstr "Falha ao importar perfil de {0}: {1}" - -msgctxt "@button" -msgid "Failed to load packages:" -msgstr "Falha em carregar pacotes:" - -msgctxt "@text:error" -msgid "Failed to load the archive of materials to sync it with printers." -msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." - -msgctxt "@message:title" -msgid "Failed to save material archive" -msgstr "Falha em salvar o arquivo de materiais" - -msgctxt "@label:category menu label" -msgid "Favorites" -msgstr "Favoritos" - -msgctxt "@label" -msgid "Filament Cost" -msgstr "Custo do Filamento" - -msgctxt "@label" -msgid "Filament length" -msgstr "Comprimento do Filamento" - -msgctxt "@label" -msgid "Filament weight" -msgstr "Peso do Filamento" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "O Arquivo Já Existe" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Arquivo Salvo" - -#, python-brace-format -msgctxt "@info:status" -msgid "File {0} does not contain any valid profile." -msgstr "Arquivo {0} não contém nenhum perfil válido." - -msgctxt "@label:textbox" -msgid "Filter..." -msgstr "Filtrar..." - -msgctxt "@info:title" -msgid "Finding Location" -msgstr "Buscando Localização" - -msgctxt "@info:status" -msgid "Finding new location for objects" -msgstr "Achando novos lugares para objetos" - -msgctxt "@action:button" -msgid "Finish" -msgstr "Finalizar" - -msgctxt "@label:status" -msgid "Finished" -msgstr "Finalizado" - -msgctxt "@label:status" -msgid "Finishes %1 at %2" -msgstr "Termina %1 em %2" - -msgctxt "@title:window" -msgid "Firmware Update" -msgstr "Atualização do Firmware" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador de Atualizações de Firmware" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de Firmware" - -msgctxt "@label" -msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." -msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." - -msgctxt "@label" -msgid "Firmware can not be updated because there is no connection with the printer." -msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." - -msgctxt "@label" -msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." - -msgctxt "@label" -msgid "Firmware update completed." -msgstr "Atualização do Firmware completada." - -msgctxt "@label" -msgid "Firmware update failed due to an communication error." -msgstr "A atualização de firmware falhou devido a um erro de comunicação." - -msgctxt "@label" -msgid "Firmware update failed due to an input/output error." -msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." - -msgctxt "@label" -msgid "Firmware update failed due to an unknown error." -msgstr "A atualização de Firmware falhou devido a um erro desconhecido." - -msgctxt "@label" -msgid "Firmware update failed due to missing firmware." -msgstr "A atualização de firmware falhou devido a firmware não encontrado." - -msgctxt "@label" -msgid "Firmware version" -msgstr "Versão do firmware" - -msgctxt "@label" -msgid "First available" -msgstr "Primeira disponível" - -msgctxt "@label:listbox" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "@text In the UI this is followed by a list of steps the user needs to take." -msgid "Follow the following steps to load the new material profiles to your printer." -msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." - -msgctxt "@info" -msgid "Follow the procedure to add a new printer" -msgstr "Siga o procedimento para adicionar uma nova impressora" - -msgctxt "@text" -msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." -msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." - -msgctxt "@label" -msgid "Font" -msgstr "Fonte" - -msgctxt "@label" -msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." -msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." - -msgctxt "@info:tooltip" -msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." -msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." - -msgctxt "@info:tooltip" -msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." -msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." - -msgctxt "@option:check" -msgid "Force layer view compatibility mode (restart required)" -msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" - -msgctxt "@action:inmenu menubar:view" -msgid "Front View" -msgstr "Visão Frontal" - -msgctxt "@info:tooltip" -msgid "Front View" -msgstr "Viso de Frente" - -msgctxt "@item:inlistbox" -msgid "G File" -msgstr "Arquivo G" - -msgctxt "@info:title" -msgid "G-code Details" -msgstr "Detalhes do G-Code" - -msgctxt "@item:inlistbox" -msgid "G-code File" -msgstr "Arquivo G-Code" - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de Perfil de G-Code" - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-Code" - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gerador de G-Code" - -msgctxt "@label" -msgid "G-code flavor" -msgstr "Sabor de G-Code" - -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "Gerador de G-Code" - -msgctxt "@error:not supported" -msgid "GCodeGzWriter does not support text mode." -msgstr "O GCodeGzWriter não suporta modo binário." - -msgctxt "@error:not supported" -msgid "GCodeWriter does not support non-text mode." -msgstr "O GCodeWriter não suporta modo binário." - -msgctxt "@item:inlistbox" -msgid "GIF Image" -msgstr "Imagem GIF" - -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "Framework Gráfica" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "Ligações da Framework Gráfica" - -msgctxt "@label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" - -msgctxt "@label" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." -msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "Gerando instaladores Windows" - -msgctxt "@label:category menu label" -msgid "Generic" -msgstr "Genérico" - -msgctxt "@option:check" -msgid "Get notifications for plugin updates" -msgstr "Ter notificações para atualizações de complementos" - -msgctxt "@action" -msgid "Get started" -msgstr "Começar" - -msgctxt "@title:tab" -msgid "Global Settings" -msgstr "Ajustes globais" - -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Interface Gráfica de usuário" - -msgctxt "@label" -msgid "Grid Placement" -msgstr "Posicionamento em Grade" - -#, python-brace-format -msgctxt "@label" -msgid "Group #{group_nr}" -msgstr "Grupo #{group_nr}" - -msgctxt "@tooltip of pre-heat" -msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." -msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." - -msgctxt "@tooltip of pre-heat" -msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." -msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." - -msgctxt "@label" -msgid "Heated Build Plate (official kit or self-built)" -msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" - -msgctxt "@label" -msgid "Heated bed" -msgstr "Mesa aquecida" - -msgctxt "@label" -msgid "Heated build volume" -msgstr "Volume de construção aquecido" - -msgctxt "@action:label" -msgid "Height (mm)" -msgstr "Altura (mm)" - -msgctxt "@label" -msgid "Helpers" -msgstr "Assistentes" - -msgctxt "@label" -msgid "Hide all connected printers" -msgstr "Omitir todas as impressoras conectadas" - -msgctxt "@action:menu" -msgid "Hide this setting" -msgstr "Ocultar este ajuste" - -msgctxt "@info:tooltip" -msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." -msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." - -msgctxt "@info:tooltip" -msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." - -msgctxt "@button" -msgid "How to load new material profiles to my printer" -msgstr "Como carregar novos perfis de material na minha impressora" - -msgctxt "@action:button" -msgid "How to update" -msgstr "Como atualizar" - -msgctxt "@text:window" -msgid "I don't want to send anonymous data" -msgstr "Recusar enviar dados anônimos" - -msgctxt "@label:status" -msgid "Idle" -msgstr "Ocioso" - -msgctxt "@label" -msgid "If you are trying to add a new UltiMaker printer to Cura" -msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" - -msgctxt "@label" -msgid "If your printer is not listed, read the network printing troubleshooting guide" -msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" - -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de Imagens" - -msgctxt "@action:button" -msgid "Import" -msgstr "Importar" - -msgctxt "@title:window" -msgid "Import Material" -msgstr "Importar Material" - -msgctxt "@title:window" -msgid "Import Profile" -msgstr "Importar Perfil" - -msgctxt "@action:button" -msgid "Import all as models" -msgstr "Importar todos como modelos" - -msgctxt "@action:button" -msgid "Import models" -msgstr "Importar modelos" - -msgctxt "@label:MonitorStatus" -msgid "In maintenance. Please check the printer" -msgstr "Em manutenção. Por favor verifique a impressora" - -msgctxt "@info" -msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." - -msgctxt "@label" -msgid "In order to start using Cura you will need to configure a printer." -msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora:" - -msgctxt "@button" -msgid "In order to use the package you will need to restart Cura" -msgstr "Para usar o pacote você precisará reiniciar o Cura" - -msgctxt "@label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "@tooltip" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill_sparse_density description" -msgid "Infill Density" -msgstr "Densidade de Preenchimento" - -msgctxt "@action:label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -msgctxt "@item:inlistbox" -msgid "Infill mesh only" -msgstr "Somente malha de preenchimento" - -msgctxt "@label" -msgid "Infill overlapping with this model is modified." -msgstr "Preenchimento se sobrepondo a este modelo foi modificado." - -msgctxt "@info:title" -msgid "Information" -msgstr "Informação" - -msgctxt "@title" -msgid "Information" -msgstr "Informação" - -msgctxt "@info:progress" -msgid "Initializing Active Machine..." -msgstr "Inicializando Máquina Ativa..." - -msgctxt "@info:progress" -msgid "Initializing build volume..." -msgstr "Inicializando volume de impressão..." - -msgctxt "@info:progress" -msgid "Initializing engine..." -msgstr "Inicializando motor..." - -msgctxt "@info:progress" -msgid "Initializing machine manager..." -msgstr "Inicializando gestor de máquinas..." - -msgctxt "@label" -msgid "Inner Wall" -msgstr "Parede Interna" - -msgctxt "@tooltip" -msgid "Inner Walls" -msgstr "Paredes Internas" - -msgctxt "@text" -msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." -msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." - -msgctxt "@button" -msgid "Install" -msgstr "Instalar" - -msgctxt "@header" -msgid "Install Materials" -msgstr "Instalar Materiais" - -msgctxt "@window:title" -msgid "Install Package" -msgstr "Instalar Pacote" - -msgctxt "@action:button" -msgid "Install Packages" -msgstr "Instalar Pacotes" - -msgctxt "@header" -msgid "Install Packages" -msgstr "Instala Pacotes" - -msgctxt "@header" -msgid "Install Plugins" -msgstr "Instalar Complementos" - -msgctxt "@action:button" -msgid "Install missing packages" -msgstr "Instalar pacotes faltantes" - -msgctxt "@title" -msgid "Install missing packages" -msgstr "Instala pacotes faltantes" - -msgctxt "@label" -msgid "Install missing packages from project file." -msgstr "Instala pacotes faltantes do arquivo de projeto." - -msgctxt "@button" -msgid "Install pending updates" -msgstr "Instalação aguardando atualizações" - -msgctxt "@label" -msgid "Installed Materials" -msgstr "Materiais Instalados" - -msgctxt "@label" -msgid "Installed Plugins" -msgstr "Complementos Instalados" - -msgctxt "@button" -msgid "Installing..." -msgstr "Instalando..." - -msgctxt "@action:label" -msgid "Intent" -msgstr "Objetivo" - -msgctxt "@label" -msgid "Interface" -msgstr "Interface" - -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicação interprocessos" - -msgctxt "@title:window" -msgid "Invalid IP address" -msgstr "Endereço IP inválido" - -msgctxt "@info:status" -msgid "Invalid file URL:" -msgstr "URL de arquivo inválida:" - -msgctxt "@action:button" -msgid "Invert the direction of camera zoom." -msgstr "Inverter a direção da ampliação de câmera." - -msgctxt "@label" -msgid "Is printed as support." -msgstr "Está impresso como suporte." - -msgctxt "@text" -msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." -msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." - -msgctxt "@item:inlistbox" -msgid "JPEG Image" -msgstr "Imagem JPEG" - -msgctxt "@item:inlistbox" -msgid "JPG Image" -msgstr "Imagem JPG" - -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "Parser JSON" - -msgctxt "@label" -msgid "Job Name" -msgstr "Nome do Trabalho" - -msgctxt "@label" -msgid "Jog Distance" -msgstr "Distância de Trote" - -msgctxt "@label" -msgid "Jog Position" -msgstr "Posição de Trote" - -msgctxt "@option:discardOrKeep" -msgid "Keep and never ask again" -msgstr "Manter e não perguntar novamente" - -msgctxt "@action:button" -msgid "Keep changes" -msgstr "Manter alterações" - -msgctxt "@action:button" -msgid "Keep printer configurations" -msgstr "Manter configurações da impressora" - -msgctxt "@action:menu" -msgid "Keep this setting visible" -msgstr "Manter este ajuste visível" - -msgctxt "@label The argument is a timestamp" -msgid "Last update: %1" -msgstr "Última atualização: %1" - -msgctxt "@label:listbox" -msgid "Layer Thickness" -msgstr "Espessura de Camada" - -msgctxt "@item:inlistbox" -msgid "Layer view" -msgstr "Visão de Camadas" - -msgctxt "@button:label" -msgid "Learn More" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn how to connect your printer to Digital Factory" -msgstr "Aprenda como conectar sua impressora à Digital Factory" - -msgctxt "@tooltip:button" -msgid "Learn how to get started with UltiMaker Cura." -msgstr "Saiba como começar com o UltiMaker Cura." - -msgctxt "@action" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button" -msgid "Learn more" -msgstr "Saiba mais" - -msgctxt "@button:label" -msgid "Learn more" -msgstr "Saber mais" - -msgctxt "@action:button" -msgid "Learn more about Cura print profiles" -msgstr "Saber mais sobre perfis de impressão do Cura" - -msgctxt "@button" -msgid "Learn more about adding printers to Cura" -msgstr "Saiba mais sobre adicionar impressoras ao Cura" - -msgctxt "@label" -msgid "Learn more about project packages." -msgstr "Aprenda mais sobre pacotes de projeto" - -msgctxt "@action:inmenu menubar:view" -msgid "Left Side View" -msgstr "Visão do Lado Esquerdo" - -msgctxt "@info:tooltip" -msgid "Left View" -msgstr "Visão à Esquerda" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de Perfis de Cura Legado" - -msgctxt "@tooltip:button" -msgid "Let developers know that something is going wrong." -msgstr "Deixe os desenvolvedores saberem que algo está errado." - -msgctxt "@action" -msgid "Level build plate" -msgstr "Nivelar mesa" - -msgctxt "@item:inlistbox" -msgid "Lighter is higher" -msgstr "Mais claro é mais alto" - -msgctxt "@label:listbox" -msgid "Line Type" -msgstr "Tipo de Linha" - -msgctxt "@label:listbox" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "@item:inlistbox" -msgid "Linear" -msgstr "Linear" - -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Implementação de aplicação multidistribuição em Linux" - -msgctxt "@label" -msgid "Load %3 as material %1 (This cannot be overridden)." -msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." - -msgctxt "@button" -msgid "Load more" -msgstr "Carregar mais" - -msgctxt "@button" -msgid "Loading" -msgstr "Carregando" - -msgctxt "@action:warning" -msgid "Loading a project will clear all models on the build plate." -msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." - -msgctxt "@label" -msgid "Loading available configurations from the printer..." -msgstr "Carregando configurações disponíveis da impressora..." - -msgctxt "@info:progress" -msgid "Loading interface..." -msgstr "Carregando interface..." - -msgctxt "@info:progress" -msgid "Loading machines..." -msgstr "Carregando máquinas..." - -msgctxt "@label:status" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@title" -msgid "Loading..." -msgstr "Carregando..." - -msgctxt "@label:category menu label" -msgid "Local printers" -msgstr "Impressoras locais" - -msgctxt "@info:title" -msgid "Log-in failed" -msgstr "Login falhou" - -msgctxt "@info:title" -msgid "Login failed" -msgstr "Login falhou" - -msgctxt "@title:groupbox" -msgid "Logs" -msgstr "Registros" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" - -msgctxt "@label:MonitorStatus" -msgid "Lost connection with the printer" -msgstr "A conexão à impressora foi perdida" - -msgctxt "@action" -msgid "Machine Settings" -msgstr "Ajustes da Máquina" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Ação de Ajustes de Máquina" - -msgctxt "@backuplist:label" -msgid "Machines" -msgstr "Máquinas" - -msgctxt "@text" -msgid "Make sure all your printers are turned ON and connected to Digital Factory." -msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." - -msgctxt "@info:generic" -msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." - -msgctxt "@action:inmenu" -msgid "Manage Materials..." -msgstr "Administrar Materiais..." - -msgctxt "@action:inmenu menubar:printer" -msgid "Manage Pr&inters..." -msgstr "Adm&inistrar Impressoras..." - -msgctxt "@action:inmenu menubar:profile" -msgid "Manage Profiles..." -msgstr "Administrar perfis..." - -msgctxt "@action:inmenu" -msgid "Manage Setting Visibility..." -msgstr "Gerenciar Visibilidade dos Ajustes..." - -msgctxt "@item:inmenu" -msgid "Manage backups" -msgstr "Gerenciar backups" - -msgctxt "@label link to connect manager" -msgid "Manage in browser" -msgstr "Gerir no navegador" - -msgctxt "@header" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@info:tooltip" -msgid "Manage packages" -msgstr "Gerir pacotes" - -msgctxt "@action" -msgid "Manage print jobs" -msgstr "Gerenciar trabalhos de impressão" - -msgctxt "@label link to Connect and Cloud interfaces" -msgid "Manage printer" -msgstr "Gerir Impressora" - -msgctxt "@button" -msgid "Manage printers" -msgstr "Gerenciar impressoras" - -msgctxt "@text" -msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." -msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gerencia extensões à aplicação e permite navegar extensões do website da UltiMaker." - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gerencia conexões de rede com as impressoras de rede da UltiMaker." - -msgctxt "@label" -msgid "Manufacturer" -msgstr "Fabricante" - -msgctxt "@action:button" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "@label" -msgid "Marketplace" -msgstr "Mercado" - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "@action:label" -msgid "Material" -msgstr "Material" - -msgctxt "@label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:category menu label" -msgid "Material" -msgstr "Material" - -msgctxt "@label:listbox" -msgid "Material Color" -msgstr "Cor do Material" - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Material" - -msgctxt "@label" -msgid "Material Type" -msgstr "Tipo de Material" - -msgctxt "@title" -msgid "Material color picker" -msgstr "Seletor de cores do material" - -msgctxt "@label" -msgid "Material estimation" -msgstr "Estimativa de material" - -msgctxt "@title:header" -msgid "Material profiles successfully synced with the following printers:" -msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" - -msgctxt "@action:label" -msgid "Material settings" -msgstr "Ajustes de material" - -msgctxt "@backuplist:label" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@button" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@title:tab" -msgid "Materials" -msgstr "Materiais" - -msgctxt "@label" -msgid "Materials compatible with active printer:" -msgstr "Materiais compatíveis com a impressora ativa:" - -msgctxt "@label" -msgid "Mesh Type" -msgstr "Tipo de Malha" - -msgctxt "@action:label" -msgid "Mode" -msgstr "Modo" - -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelo" - -msgctxt "@info:title" -msgid "Model Errors" -msgstr "Erros de Modelo" - -msgctxt "@item:inmenu" -msgid "Modify G-Code" -msgstr "Modificar G-Code" - -msgctxt "@label" -msgid "Modify settings for overlaps" -msgstr "Modificar ajustes para sobreposições" - -msgctxt "@item:inmenu" -msgid "Monitor" -msgstr "Monitor" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Estágio de Monitor" - -msgctxt "@action:button" -msgid "Monitor print" -msgstr "Monitorar impressão" - -msgctxt "@tooltip:button" -msgid "Monitor print jobs and reprint from your print history." -msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." - -msgctxt "@tooltip:button" -msgid "Monitor printers in Ultimaker Digital Factory." -msgstr "Monitora as impressoras na Ultimaker Digital Factory." - -msgctxt "@info" -msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" -msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" - -msgctxt "@title:window" -msgid "More information on anonymous data collection" -msgstr "Mais informações em coleção anônima de dados" - -msgctxt "@window:title" -msgid "Move print job to top" -msgstr "Move o trabalho de impressão para o topo da fila" - -msgctxt "@action:button" -msgid "Move to Next Position" -msgstr "Mover pra a Posição Seguinte" - -msgctxt "@label" -msgid "Move to top" -msgstr "Mover para o topo" - -msgctxt "@info:tooltip" -msgid "Moves the camera so the model is in the center of the view when a model is selected" -msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" - -msgctxt "@action:inmenu menubar:edit" -msgid "Multiply Selected" -msgstr "Multiplicar Selecionados" - -msgctxt "@title:window" -msgid "Multiply Selected Model" -msgid_plural "Multiply Selected Models" -msgstr[0] "Multiplicar Modelo Selecionado" -msgstr[1] "Multiplicar Modelos Selecionados" - -msgctxt "@info" -msgid "Multiply selected item and place them in a grid of build plate." -msgstr "Multiplica o item selecionado e o dispõe em grade na plataforma de impressão." - -msgctxt "@info:status" -msgid "Multiplying and placing objects" -msgstr "Multiplicando e colocando objetos" - -msgctxt "@title" -msgid "My Backups" -msgstr "Meus backups" - -msgctxt "@label:button" -msgid "My printers" -msgstr "Minhas impressoras" - -msgctxt "@action:label" -msgid "Name" -msgstr "Nome" - -msgctxt "@label:category menu label" -msgid "Network enabled printers" -msgstr "Impressoras habilitadas pela rede" - -msgctxt "@info:title" -msgid "Network error" -msgstr "Erro de rede" - -#, python-format -msgctxt "@info:title The %s gets replaced with the printer name." -msgid "New %s stable firmware available" -msgstr "Novo firmware estável de %s disponível" - -msgctxt "@textfield:placeholder" -msgid "New Custom Profile" -msgstr "Novo Perfil Personalizado" - -msgctxt "@label" -msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." -msgstr "Novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." - -#, python-brace-format -msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" -msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." -msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." - -msgctxt "@action:button" -msgid "New materials installed" -msgstr "Novos materiais instalados" - -msgctxt "info:status" -msgid "New printer detected from your Ultimaker account" -msgid_plural "New printers detected from your Ultimaker account" -msgstr[0] "Nova impressora detectada na sua conta Ultimaker" -msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" - -msgctxt "@title:window" -msgid "New project" -msgstr "Novo projeto" - -msgctxt "@action:button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@button" -msgid "Next" -msgstr "Próximo" - -msgctxt "@info:title" -msgid "Nightly build" -msgstr "Compilação noturna" - -msgctxt "@info" -msgid "No" -msgstr "Não" - -msgctxt "@info" -msgid "No compatibility information" -msgstr "Sem informação de compatibilidade" - -msgctxt "@description" -msgid "No compatible printers, that are currently online, were found." -msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." - -msgctxt "@label" -msgid "No cost estimation available" -msgstr "Sem estimativa de custo disponível" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "No custom profile to import in file {0}" -msgstr "Não há perfil personalizado a importar no arquivo {0}" - -msgctxt "@label" -msgid "No items to select from" -msgstr "Sem itens para selecionar" - -msgctxt "@info:title" -msgid "No layers to show" -msgstr "Não há camadas a exibir" - -msgctxt "@message" -msgid "No more results to load" -msgstr "Não há mais resultados a carregar" - -msgctxt "@error:zip" -msgid "No permission to write the workspace here." -msgstr "Sem permissão para gravar o espaço de trabalho aqui." - -msgctxt "@title:header" -msgid "No printers found" -msgstr "Nenhuma impressora encontrada" - -msgctxt "@label" -msgid "No printers found in your account?" -msgstr "Nenhuma impressora encontrada em sua conta?" - -msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." -msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." -msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." - -msgctxt "@message" -msgid "No results found with current filter" -msgstr "Não há resultados encontrados com o filtro atual" - -msgctxt "@label" -msgid "No time estimation available" -msgstr "Sem estimativa de tempo disponível" - -msgctxt "@button" -msgid "Non UltiMaker printer" -msgstr "Impressora Não-UltiMaker" - -msgctxt "@info No materials" -msgid "None" -msgstr "Nenhum" - -msgctxt "@label" -msgid "Normal model" -msgstr "Modelo normal" - -msgctxt "@info:title" -msgid "Not a group host" -msgstr "Não é host de grupo" - -msgctxt "@label:MonitorStatus" -msgid "Not connected to a printer" -msgstr "Não conectado a nenhuma impressora" - -msgctxt "@action:label" -msgid "Not in profile" -msgstr "Ausente no perfil" - -msgctxt "@menuitem" -msgid "Not overridden" -msgstr "Não sobreposto" - -msgctxt "@info:not supported profile" -msgid "Not supported" -msgstr "Não Suportado" - -msgctxt "@label" -msgid "Not yet initialized" -msgstr "Ainda não inicializado" - -msgctxt "@info:status" -msgid "Nothing is shown because you need to slice first." -msgstr "Nada está exibido porque você precisa fatiar primeiro." - -msgctxt "@label" -msgid "Nozzle" -msgstr "Bico" - -msgctxt "@title:label" -msgid "Nozzle Settings" -msgstr "Ajustes do Bico" - -msgctxt "@label" -msgid "Nozzle offset X" -msgstr "Deslocamento X do Bico" - -msgctxt "@label" -msgid "Nozzle offset Y" -msgstr "Deslocamento Y do Bico" - -msgctxt "@label" -msgid "Nozzle size" -msgstr "Tamanho do bico" - -msgctxt "@label" -msgid "Number of Copies" -msgstr "Número de Cópias" - -msgctxt "@label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -msgctxt "@action:button" -msgid "OK" -msgstr "Ok" - -msgctxt "@label" -msgid "OS language" -msgstr "Linguagem do SO" - -msgctxt "@label" -msgid "Object list" -msgstr "Lista de objetos" - -msgctxt "@label:Should be short" -msgid "Off" -msgstr "Off" - -msgctxt "@label:Should be short" -msgid "On" -msgstr "On" - -msgctxt "@label" -msgid "Only Show Top Layers" -msgstr "Somente Exibir Camadas Superiores" - -#, python-brace-format -msgctxt "@info:status" -msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" - -msgctxt "@action:button" -msgid "Open" -msgstr "Abrir" - -msgctxt "@title:menu menubar:file" -msgid "Open &Recent" -msgstr "Abrir &Recente" - -msgctxt "@item:inlistbox 'Open' is part of the name of this file format." -msgid "Open Compressed Triangle Mesh" -msgstr "Open Compressed Triangle Mesh" - -msgctxt "@title:window" -msgid "Open File(s)" -msgstr "Abrir Arquivo(s)" - -msgctxt "@title:menu menubar:file" -msgid "Open File(s)..." -msgstr "Abrir Arquivo(s)..." - -msgctxt "@title:window" -msgid "Open Project" -msgstr "Abrir Projeto" - -msgctxt "@info:title" -msgid "Open Project File" -msgstr "Abrir Arquivo de Projeto" - -msgctxt "@action:label" -msgid "Open With" -msgstr "Abrir Com" - -msgctxt "@action:button" -msgid "Open as project" -msgstr "Abrir como projeto" - -msgctxt "@title:window" -msgid "Open file(s)" -msgstr "Abrir arquivo(s)" - -msgctxt "@action:button" -msgid "Open project anyway" -msgstr "Abrir o projeto mesmo assim" - -msgctxt "@title:window" -msgid "Open project file" -msgstr "Abrir arquivo de projeto" - -msgctxt "@label OpenGL version" -msgid "OpenGL" -msgstr "OpenGL" - -msgctxt "@label" -msgid "Opening and saving files" -msgstr "Abrindo e salvando arquivos" - -msgctxt "@header" -msgid "Optimized for Air Manager" -msgstr "Otimizado para o Air Manager" - -msgctxt "@label" -msgid "Origin at center" -msgstr "Origem no centro" - -msgid "Orthographic" -msgstr "Ortográfica" - -msgctxt "@action:inmenu menubar:view" -msgid "Orthographic" -msgstr "Ortográfico" - -msgctxt "@tooltip" -msgid "Other" -msgstr "Outros" - -msgctxt "@label" -msgid "Other models overlapping with this model are modified." -msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." - -msgctxt "@label" -msgid "Other printers" -msgstr "Outras impressoras" - -msgctxt "@tooltip" -msgid "Outer Wall" -msgstr "Parede Externa" - -msgctxt "@label" -msgid "Overlaps with this model are not supported." -msgstr "Sobreposições neste modelo não são suportadas." - -msgctxt "@action:button" -msgid "Override" -msgstr "Sobrepor" - -msgctxt "@label" -msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." -msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." - -msgctxt "@label %1 is the number of settings it overrides." -msgid "Overrides %1 setting." -msgid_plural "Overrides %1 settings." -msgstr[0] "Sobrepõe %1 ajuste." -msgstr[1] "Sobrepõe %1 ajustes." - -msgctxt "@title:menu menubar:toplevel" -msgid "P&references" -msgstr "P&referências" - -msgctxt "@item:inlistbox" -msgid "PNG Image" -msgstr "Imagem PNG" - -msgctxt "@header" -msgid "Package details" -msgstr "Detalhes do pacote" - -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "Empacotamento de aplicações Python" - -msgctxt "@info:status" -msgid "Parsing G-code" -msgstr "Interpretando G-Code" - -msgctxt "@action:inmenu menubar:edit" -msgid "Paste from clipboard" -msgstr "Colar da área de transferência" - -msgctxt "@label" -msgid "Pause" -msgstr "Pausar" - -msgctxt "@label:MonitorStatus" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label:status" -msgid "Paused" -msgstr "Pausado" - -msgctxt "@label" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label:status" -msgid "Pausing..." -msgstr "Pausando..." - -msgctxt "@label" -msgid "Per Model Settings" -msgstr "Ajustes por Modelo" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de Ajustes Por Modelo" - -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:inmenu menubar:view" -msgid "Perspective" -msgstr "Perspectiva" - -msgctxt "@action:label" -msgid "Placement" -msgstr "Posicionamento" - -msgctxt "@info:title" -msgid "Placing Object" -msgstr "Colocando Objeto" - -msgctxt "@info:title" -msgid "Placing Objects" -msgstr "Colocando Objetos" - -msgctxt "@label Type of platform" -msgid "Platform" -msgstr "Plataforma" - -msgctxt "@info" -msgid "Please connect your printer to the network." -msgstr "Por favor conecte sua impressora à rede." - -msgctxt "@text" -msgid "Please enter a valid IP address." -msgstr "Por favor entre um endereço IP válido." - -msgctxt "@message" -msgid "Please give the required permissions when authorizing this application." -msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." - -msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "" -"Por favor certifique-se que sua impressora está conectada>\n" -"- Verifique se ela está ligada.\n" -"- Verifique se ela está conectada à rede.\n" -"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." - -msgctxt "@text" -msgid "Please name your printer" -msgstr "Por favor dê um nome à sua impressora" - -msgctxt "@warning:status" -msgid "Please prepare G-code before exporting." -msgstr "Por favor prepare o G-Code antes de exportar." - -msgctxt "@info" -msgid "Please provide a name for this profile." -msgstr "Por favor dê um nome a este perfil." - -msgctxt "@info" -msgid "Please provide a new name." -msgstr "Por favor, escolha um novo nome." - -msgctxt "@text" -msgid "Please read and agree with the plugin licence." -msgstr "Por favor leia e concorde com a licença do complemento." - -msgctxt "@label:MonitorStatus" -msgid "Please remove the print" -msgstr "Por favor remova a impressão" - -msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "" -"Por favor revise os ajustes e verifique se seus modelos:\n" -"- Cabem dentro do volume de impressão\n" -"- Estão associados a um extrusor habilitado\n" -"- Não estão todos configurados como malhas de modificação" - -msgctxt "@label" -msgid "Please select any upgrades made to this UltiMaker Original" -msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" - -msgctxt "@description" -msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" -msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" - -msgctxt "@action:button" -msgid "Please sync the material profiles with your printers before starting to print." -msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." - -msgctxt "@info" -msgid "Please update your printer's firmware to manage the queue remotely." -msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." - -msgctxt "@info:status" -msgid "Please wait until the current job has been sent." -msgstr "Por favor espere até que o trabalho atual tenha sido enviado." - -msgctxt "@title:window" -msgid "Plugin License Agreement" -msgstr "Acordo de Licença do Complemento" - -msgctxt "@button" -msgid "Plugin license agreement" -msgstr "Acordo de licença do complemento" - -msgctxt "@backuplist:label" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@button" -msgid "Plugins" -msgstr "Complementos" - -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Biblioteca de recorte de polígonos" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" - -msgctxt "@item:inmenu" -msgid "Post Processing" -msgstr "Pós-Processamento" - -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-processamento" - -msgctxt "@title:window" -msgid "Post Processing Plugin" -msgstr "Complemento de Pós-Processamento" - -msgctxt "@label" -msgid "Post Processing Scripts" -msgstr "Scripts de Pós-Processamento" - -msgctxt "@button" -msgid "Pre-heat" -msgstr "Pré-aquecer" - -msgctxt "@item:inmenu" -msgid "Prepare" -msgstr "Preparar" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Estágio de Preparação" - -msgctxt "@label:MonitorStatus" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label:status" -msgid "Preparing..." -msgstr "Preparando..." - -msgctxt "@label" -msgid "Preset printers" -msgstr "Impressoras pré-ajustadas" - -msgctxt "@button" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "@item:inmenu" -msgid "Preview" -msgstr "Pré-visualização" - -msgctxt "name" -msgid "Preview Stage" -msgstr "Estágio de Pré-visualização" - -msgctxt "@tooltip" -msgid "Prime Tower" -msgstr "Torre de Prime" - -msgctxt "@action:button" -msgid "Print" -msgstr "Imprimir" - -msgctxt "@label" -msgid "Print Selected Model With:" -msgid_plural "Print Selected Models With:" -msgstr[0] "Imprimir Modelo Selecionado Com:" -msgstr[1] "Imprimir Modelos Selecionados Com:" - -msgctxt "@label %1 is filled in with the name of an extruder" -msgid "Print Selected Model with %1" -msgid_plural "Print Selected Models with %1" -msgstr[0] "Imprimir Modelo Selecionado com %1" -msgstr[1] "Imprimir Modelos Selecionados com %1" - -msgctxt "@label" -msgid "Print as support" -msgstr "Imprimir como suporte" - -msgctxt "@info:title" -msgid "Print error" -msgstr "Erro de impressão" - -msgctxt "@message" -msgid "Print in Progress" -msgstr "Impressão em Progresso" - -msgctxt "@info:status" -msgid "Print job queue is full. The printer can't accept a new job." -msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." - -msgctxt "@info:status" -msgid "Print job was successfully sent to the printer." -msgstr "Trabalho de impressão enviado à impressora com sucesso." - -msgctxt "@label" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@label:button" -msgid "Print jobs" -msgstr "Trabalhos de impressão" - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@properties:tooltip" -msgid "Print over network" -msgstr "Imprime pela rede" - -msgctxt "@title:window" -msgid "Print over network" -msgstr "Imprimir pela rede" - -msgctxt "@label" -msgid "Print settings" -msgstr "Ajustes de impressão" - -msgctxt "@label shown when we load a Gcode file" -msgid "Print setup disabled. G-code file can not be modified." -msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@info:tooltip" -msgid "Print via USB" -msgstr "Imprimir pela USB" - -msgctxt "@action:button" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@properties:tooltip" -msgid "Print via cloud" -msgstr "Imprimir pela nuvem" - -msgctxt "@action:label" -msgid "Print with" -msgstr "Imprimir com" - -msgctxt "@title:tab" -msgid "Printer" -msgstr "Impressora" - -msgctxt "@title:window" -msgid "Printer Address" -msgstr "Endereço da Impressora" - -msgctxt "@action:label" -msgid "Printer Group" -msgstr "Grupo de Impressora" - -msgctxt "@title:label" -msgid "Printer Settings" -msgstr "Ajustes de Impressora" - -msgctxt "@label" -msgid "Printer control" -msgstr "Controle da Impressora" - -msgctxt "@label:MonitorStatus" -msgid "Printer does not accept commands" -msgstr "A impressora não aceita comandos" - -msgctxt "@label" -msgid "Printer name" -msgstr "Nome da impressora" - -msgctxt "@label" -msgid "Printer selection" -msgstr "Seleção de impressora" - -msgctxt "@action:label" -msgid "Printer settings" -msgstr "Ajustes da impressora" - -msgctxt "@info:tooltip" -msgid "Printer settings will be updated to match the settings saved with the project." -msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" - -msgctxt "info:status" -msgid "Printers added from Digital Factory:" -msgstr "Impressoras adicionadas da Digital Factory:" - -msgctxt "@text Asking the user whether printers are missing in a list." -msgid "Printers missing?" -msgstr "Impressoras faltando?" - -msgctxt "@title:label" -msgid "Printhead Settings" -msgstr "Ajustes da Cabeça de Impressão" - -msgctxt "@label:status" -msgid "Printing" -msgstr "Imprimindo" - -msgctxt "@label" -msgid "Printing Time" -msgstr "Tempo de Impressão" - -msgctxt "@label:MonitorStatus" -msgid "Printing..." -msgstr "Imprimindo..." - -msgctxt "@label" -msgid "Privacy" -msgstr "Privacidade" - -msgctxt "@button" -msgid "Processing" -msgstr "Processando" - -msgctxt "@info:status" -msgid "Processing Layers" -msgstr "Processando Camadas" - -msgctxt "@label" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@title:column" -msgid "Profile" -msgstr "Perfil" - -msgctxt "@label" -msgid "Profile author" -msgstr "Autor do perfil" - -msgctxt "@info:status" -msgid "Profile is missing a quality type." -msgstr "Falta um tipo de qualidade ao Perfil." - -msgctxt "@action:label" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -msgctxt "@title:column" -msgid "Profile settings" -msgstr "Ajustes de perfil" - -#, python-brace-format -msgctxt "@info:status" -msgid "Profile {0} has an unknown file type or is corrupted." -msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." - -msgctxt "@backuplist:label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@title:tab" -msgid "Profiles" -msgstr "Perfis" - -msgctxt "@label" -msgid "Profiles compatible with active printer:" -msgstr "Perfis compatíveis com a impressora ativa:" - -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Linguagem de Programação" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." -msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is corrupt: {1}." -msgstr "Arquivo de projeto {0} está corrompido: {1}." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tag !" -msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." -msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." - -#, python-brace-format -msgctxt "@info:error Don't translate the XML tags or !" -msgid "Project file {0} is suddenly inaccessible: {1}." -msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." - -msgctxt "@label" -msgid "Properties" -msgstr "Propriedades" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Provê ações de máquina para atualização do firmware." - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Provê um estágio de monitor no Cura." - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Provê uma visualização de malha sólida normal." - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Provê um estágio de preparação no Cura." - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Provê uma etapa de pré-visualização ao Cura." - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Provê suporte a escrita e reconhecimento de drives a quente." - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Provê suporte à exportação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Provê suporte à importação de perfis do Cura." - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Provê suporte a importar perfis de arquivos G-Code." - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Provê suporte a importação de perfis de versões legadas do Cura." - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Provê suporte à leitura de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Provê suporta à leitura de arquivos AMF." - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Provê suporte à leitura de Formatos de Pacote Ultimaker." - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Provê suporte à leitura de arquivos X3D." - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Provê suporta a ler arquivos de modelo." - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Provê suporte à escrita de arquivos 3MF." - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Provê Ajustes Por Modelo." - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Provê a visão de Raios-X." - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Provê a ligação ao backend de fatiamento CuraEngine." - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Provê a pré-visualização de dados de camada fatiados." - -msgctxt "@label" -msgid "PyQt version" -msgstr "Versão do PyQt" - -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Biblioteca de rastreamento de Erros Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Ligações de Python pra Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Ligações de Python para a libnest2d" - -msgctxt "@label" -msgid "Qt version" -msgstr "Versão do Qt" - -#, python-brace-format -msgctxt "@info:status" -msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." -msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." - -msgctxt "@info:title" -msgid "Queue Full" -msgstr "Fila Cheia" - -msgctxt "@label" -msgid "Queued" -msgstr "Enfileirados" - -msgctxt "@info:button, %1 is the application name" -msgid "Quit %1" -msgstr "Sair de %1" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê G-Code de um arquivo comprimido." - -msgctxt "@button" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@title:tab" -msgid "Recommended" -msgstr "Recomendado" - -msgctxt "@label" -msgid "Recommended print settings" -msgstr "Ajustes recomendados de impressão" - -msgctxt "@info %1 is the name of a profile" -msgid "Recommended settings (for %1) were altered." -msgstr "Ajustes recomendados (para %1) foram alterados." - -msgctxt "@action:button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@label" -msgid "Refresh" -msgstr "Atualizar" - -msgctxt "@button" -msgid "Refresh List" -msgstr "Atualizar Lista" - -msgctxt "@button" -msgid "Refreshing..." -msgstr "Atualizando..." - -msgctxt "@label" -msgid "Release Notes" -msgstr "Notas de lançamento" - -msgctxt "@action:inmenu menubar:file" -msgid "Reload All Models" -msgstr "Recarregar Todos Os Modelos" - -msgctxt "@text:window" -msgid "Remember my choice" -msgstr "Lembrar minha escolha" - -msgctxt "@item:intext" -msgid "Removable Drive" -msgstr "Unidade Removível" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de Dispositivo de Escrita Removível" - -msgctxt "@action:button" -msgid "Remove" -msgstr "Remover" - -msgctxt "@action:button" -msgid "Remove printers" -msgstr "Remover impressoras" - -msgctxt "@title:window" -msgid "Remove printers?" -msgstr "Remover impressoras?" - -msgctxt "@action:button" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename" -msgstr "Renomear" - -msgctxt "@title:window" -msgid "Rename Profile" -msgstr "Renomear Perfil" - -msgctxt "@action:inmenu menubar:help" -msgid "Report a &Bug" -msgstr "Relatar um &Bug" - -msgctxt "@label:button" -msgid "Report a bug" -msgstr "Relatar um problema" - -msgctxt "@message:button" -msgid "Report a bug" -msgstr "Relatar um bug" - -msgctxt "@message:description" -msgid "Report a bug on UltiMaker Cura's issue tracker." -msgstr "Relatar um bug no issue tracker do UltiMaker Cura." - -msgctxt "@label:status" -msgid "Requires configuration changes" -msgstr "Requer mudanças na configuração" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Positions" -msgstr "Reestabelecer as Posições de Todos Os Modelos" - -msgctxt "@action:inmenu menubar:edit" -msgid "Reset All Model Transformations" -msgstr "Remover as Transformações de Todos Os Modelos" - -msgctxt "@info" -msgid "Reset to defaults." -msgstr "Restaurar aos defaults." - -msgctxt "@label" -msgid "Resolution" -msgstr "Resolução" - -msgctxt "@button" -msgid "Restore" -msgstr "Restaurar" - -msgctxt "@dialog:title" -msgid "Restore Backup" -msgstr "Restaurar Backup" - -msgctxt "@option:check" -msgid "Restore window position on start" -msgstr "Restaurar posição da janela no início" - -msgctxt "@label" -msgid "Resume" -msgstr "Continuar" - -msgctxt "@label" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@label:status" -msgid "Resuming..." -msgstr "Continuando..." - -msgctxt "@tooltip" -msgid "Retractions" -msgstr "Retrações" - -msgctxt "@button" -msgid "Retry?" -msgstr "Tentar novamente?" - -msgctxt "@action:inmenu menubar:view" -msgid "Right Side View" -msgstr "Visão do Lado Direito" - -msgctxt "@info:tooltip" -msgid "Right View" -msgstr "Visão à Direita" - -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados-Raiz para validar confiança SSL" - -msgctxt "@info:title" -msgid "Safely Remove Hardware" -msgstr "Remover Hardware com Segurança" - -msgctxt "@button" -msgid "Safety datasheet" -msgstr "Ficha de segurança" - -msgctxt "@action:button" -msgid "Save" -msgstr "Salvar" - -msgctxt "@option" -msgid "Save Cura project" -msgstr "Salvar o projeto Cura" - -msgctxt "@option" -msgid "Save Cura project and print file" -msgstr "Salvar o projeto Cura e imprimir o arquivo" - -msgctxt "@title:window" -msgid "Save Custom Profile" -msgstr "Salvar Perfil Personalizado" - -msgctxt "@title:window" -msgid "Save Project" -msgstr "Salvar Projeto" - -msgctxt "@title:menu menubar:file" -msgid "Save Project..." -msgstr "Salvar Projeto..." - -msgctxt "@action:button" -msgid "Save as new custom profile" -msgstr "Salvar como novo perfil personalizado" - -msgctxt "@action:button" -msgid "Save changes" -msgstr "Salvar alterações" - -msgctxt "@button" -msgid "Save new profile" -msgstr "Salvar novo perfil" - -msgctxt "@text" -msgid "Save the .umm file on a USB stick." -msgstr "Grava o arquivo .umm em um pendrive USB." - -msgctxt "@action:button Preceded by 'Ready to'." -msgid "Save to Removable Drive" -msgstr "Salvar em Unidade Removível" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "Save to Removable Drive {0}" -msgstr "Salvar em Unidade Removível {0}" - -#, python-brace-format -msgctxt "@info:status" -msgid "Saved to Removable Drive {0} as {1}" -msgstr "Salvo em Unidade Removível {0} como {1}" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Salvando" - -#, python-brace-format -msgctxt "@info:progress Don't translate the XML tags !" -msgid "Saving to Removable Drive {0}" -msgstr "Salvando na Unidade Removível {0}" - -msgctxt "@option:check" -msgid "Scale extremely small models" -msgstr "Redimensionar modelos minúsculos" - -msgctxt "@option:check" -msgid "Scale large models" -msgstr "Redimensionar modelos grandes" - -msgctxt "@placeholder" -msgid "Search" -msgstr "Buscar" - -msgctxt "@info" -msgid "Search in the browser" -msgstr "Buscar no navegador" - -msgctxt "@label:textbox" -msgid "Search settings" -msgstr "Ajustes de busca" - -msgctxt "@action:inmenu menubar:edit" -msgid "Select All Models" -msgstr "Selecionar Todos Os Modelos" - -msgctxt "@title:window" -msgid "Select Printer" -msgstr "Selecione Impressora" - -msgctxt "@title:window" -msgid "Select Settings to Customize for this model" -msgstr "Selecionar Ajustes a Personalizar para este modelo" - -msgctxt "@text" -msgid "Select and install material profiles optimised for your UltiMaker 3D printers." -msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." - -msgctxt "@label" -msgid "Select configuration" -msgstr "Selecione configuração" - -msgctxt "@title:window" -msgid "Select custom firmware" -msgstr "Selecionar firmware personalizado" - -msgctxt "@option:check" -msgid "Select models when loaded" -msgstr "Selecionar modelos ao carregar" - -msgctxt "@action:button" -msgid "Select settings" -msgstr "Selecionar ajustes" - -msgctxt "@action" -msgid "Select upgrades" -msgstr "Selecionar Atualizações" - -msgctxt "@label" -msgid "Select your printer from the list below:" -msgstr "Selecione sua impressora da lista abaixo:" - -msgctxt "@option:check" -msgid "Send (anonymous) print information" -msgstr "Enviar informação (anônima) de impressão" - -msgctxt "@label" -msgid "Send G-code" -msgstr "Enviar G-Code" - -msgctxt "@tooltip of G-code command input" -msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." -msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." - -msgctxt "@action:button" -msgid "Send crash report to UltiMaker" -msgstr "Enviar relatório de falha à UltiMaker" - -msgctxt "@action:button" -msgid "Send report" -msgstr "Enviar relatório" - -msgctxt "@info:status" -msgid "Sending Print Job" -msgstr "Enviando Trabalho de Impressão" - -msgctxt "@info:title" -msgid "Sending materials to printer" -msgstr "Enviando material para a impressora" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentinela para Registro" - -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Biblioteca de comunicação serial" - -msgctxt "@action:inmenu" -msgid "Set as Active Extruder" -msgstr "Definir Como Extrusor Ativo" - -msgctxt "@title:column" -msgid "Setting" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Setting Visibility" -msgstr "Visibilidade dos Ajustes" - -msgctxt "@info:progress" -msgid "Setting up preferences..." -msgstr "Ajustando preferências..." - -msgctxt "@info:progress" -msgid "Setting up scene..." -msgstr "Configurando cena..." - -msgctxt "@action:label" -msgid "Setting visibility" -msgstr "Visibilidade dos ajustes" - -msgctxt "@label" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" - -msgctxt "@info:message Followed by a list of settings." -msgid "Settings have been changed to match the current availability of extruders:" -msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" - -msgctxt "@info:title" -msgid "Settings updated" -msgstr "Ajustes atualizados" - -msgctxt "@text" -msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" -msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" - -msgctxt "@label" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "@action:label" -msgid "Shell Thickness" -msgstr "Espessura de Perímetro" - -msgctxt "@info:tooltip" -msgid "Should Cura check for updates when the program is started?" -msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" - -msgctxt "@info:tooltip" -msgid "Should Cura open at the location it was closed?" -msgstr "O Cura deve abrir no lugar onde foi fechado?" - -msgctxt "@info:tooltip" -msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" - -msgctxt "@info:tooltip" -msgid "Should a summary be shown when saving a project file?" -msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" - -msgctxt "@info:tooltip" -msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" -msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" - -msgctxt "@info:tooltip" -msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." - -msgctxt "@info:tooltip" -msgid "Should layer be forced into compatibility mode?" -msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" - -msgctxt "@info:tooltip" -msgid "Should models be scaled to the build volume if they are too large?" -msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" - -msgctxt "@info:tooltip" -msgid "Should models be selected after they are loaded?" -msgstr "Os modelos devem ser selecionados após serem carregados?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" - -msgctxt "@info:tooltip" -msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" - -msgctxt "@info:tooltip" -msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" - -msgctxt "@info:tooltip" -msgid "Should the default zoom behavior of cura be inverted?" -msgstr "O comportamento default de ampliação deve ser invertido?" - -msgctxt "@info:tooltip" -msgid "Should zooming move in the direction of the mouse?" -msgstr "A ampliação (zoom) deve se mover na direção do mouse?" - -msgctxt "@label" -msgid "Show 5 Detailed Layers On Top" -msgstr "Exibir 5 Camadas Superiores Detalhadas" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Configuration Folder" -msgstr "Exibir Pasta de Configuração" - -msgctxt "@button" -msgid "Show Custom" -msgstr "Mostrar Personalizado" - -msgctxt "@action:inmenu menubar:help" -msgid "Show Online &Documentation" -msgstr "Exibir &Documentação Online" - -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "Mostrar Resolução de Problemas Online" - -msgctxt "@label:checkbox" -msgid "Show all" -msgstr "Exibir tudo" - -msgctxt "@label" -msgid "Show all connected printers" -msgstr "Mostrar todas as impressoras conectadas" - -msgctxt "@info:tooltip" -msgid "Show an icon and notifications in the system notification area." -msgstr "Mostrar um ícone e notificações na área de notificações do sistema." - -msgctxt "@info:tooltip" -msgid "Show caution message in g-code reader." -msgstr "Exibir mensagem de alerta no leitor de G-Code." - -msgctxt "@action:button" -msgid "Show configuration folder" -msgstr "Mostrar a pasta de configuração" - -msgctxt "@action:button" -msgid "Show detailed crash report" -msgstr "Exibir relatório de falha detalhado" - -msgctxt "@option:check" -msgid "Show summary dialog when saving project" -msgstr "Exibir diálogo de resumo ao salvar projeto" - -msgctxt "@tooltip:button" -msgid "Show your support for Cura with a donation." -msgstr "Mostre seu suporte ao Cura com uma doação." - -msgctxt "@button" -msgid "Sign Out" -msgstr "Deslogar" - -msgctxt "@action:button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@button" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@title:header" -msgid "Sign in" -msgstr "Entrar" - -msgctxt "@info" -msgid "Sign in into UltiMaker Digital Factory" -msgstr "Fazer login na Ultimaker Digital Factory" - -msgctxt "@button" -msgid "Sign in to Digital Factory" -msgstr "Fazer login na Digital Factory" - -msgctxt "@label" -msgid "Sign in to the UltiMaker platform" -msgstr "Entre na plataforma UltiMaker" - -msgctxt "name" -msgid "Simulation View" -msgstr "Visão Simulada" - -msgctxt "@tooltip" -msgid "Skin" -msgstr "Contorno" - -msgctxt "@action:button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@button" -msgid "Skip" -msgstr "Pular" - -msgctxt "@tooltip" -msgid "Skirt" -msgstr "Skirt (Saia)" - -msgctxt "@button" -msgid "Slice" -msgstr "Fatiar" - -msgctxt "@option:check" -msgid "Slice automatically" -msgstr "Fatiar automaticamente" - -msgctxt "@info:tooltip" -msgid "Slice automatically when changing settings." -msgstr "Fatiar automaticamente quando mudar ajustes." - -msgctxt "name" -msgid "Slice info" -msgstr "Informação de fatiamento" - -msgctxt "@message:title" -msgid "Slicing failed" -msgstr "Fatiamento falhado" - -msgctxt "@message" -msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." -msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." - -msgctxt "@label:PrintjobStatus" -msgid "Slicing..." -msgstr "Fatiando..." - -msgctxt "@action:label" -msgid "Smoothing" -msgstr "Suavização" - -msgctxt "name" -msgid "Solid View" -msgstr "Visão Sólida" - -msgctxt "@item:inmenu" -msgid "Solid view" -msgstr "Visão sólida" - -msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "" -"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" -"\n" -"Clique para tornar estes ajustes visíveis." - -msgctxt "@info:status" -msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." -msgstr "Alguns dos pacotes usados no arquivo de projeto não estão atualmente instalados no Cura, isto pode produzir resultados de impressão não desejados. Recomendamos fortemente instalar todos os pacotes requeridos pelo MarketPlace." - -msgctxt "@info:title" -msgid "Some required packages are not installed" -msgstr "Alguns pacotes requeridos não estão instalados" - -msgctxt "@info %1 is the name of a profile" -msgid "Some setting-values defined in %1 were overridden." -msgstr "Alguns valores de ajustes definidos em %1 foram sobrepostos." - -msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "" -"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" -"\n" -"Clique para abrir o gerenciador de perfis." - -msgctxt "@action:label" -msgid "Some settings from current profile were overwritten." -msgstr "Alguns ajustes do perfil atual foram sobrescritos." - -msgctxt "@message" -msgid "Something unexpected happened when trying to log in, please try again." -msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." - -msgctxt "@title:header" -msgid "Something went wrong when sending the materials to the printers." -msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." - -msgctxt "@label" -msgid "Something went wrong..." -msgstr "Alguma coisa deu errado..." - -msgctxt "@label:listbox" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "@action:inmenu" -msgid "Sponsor Cura" -msgstr "Patrocinar o Cura" - -msgctxt "@label:button" -msgid "Sponsor Cura" -msgstr "Patrocinar o Cura" - -msgctxt "@option:radio" -msgid "Stable and Beta releases" -msgstr "Versões estáveis ou beta" - -msgctxt "@option:radio" -msgid "Stable releases only" -msgstr "Versões estáveis somente" - -msgctxt "@item:inlistbox" -msgid "Stanford Triangle Format" -msgstr "Formato de Triângulos de Stanford" - -msgctxt "@button" -msgid "Start" -msgstr "Iniciar" - -msgctxt "@action:button" -msgid "Start Build Plate Leveling" -msgstr "Iniciar Nivelamento da Mesa de Impressão" - -msgctxt "@title:label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "@label" -msgid "Start the slicing process" -msgstr "Inicia o processo de fatiamento" - -msgctxt "@label" -msgid "Starts" -msgstr "Inícios" - -msgctxt "@text" -msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." -msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." - -msgctxt "@label" -msgid "Strength" -msgstr "Força" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully exported material to %1" -msgstr "Material exportado para %1 com sucesso" - -msgctxt "@info:status Don't translate the XML tag !" -msgid "Successfully imported material %1" -msgstr "Material %1 importado com sucesso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Successfully imported profile {0}." -msgstr "Perfil {0} importado com sucesso." - -msgctxt "@action:title" -msgid "Summary - Cura Project" -msgstr "Resumo - Projeto do Cura" - -msgctxt "@label" -msgid "Support" -msgstr "Suporte" - -msgctxt "@tooltip" -msgid "Support" -msgstr "Suporte" - -msgctxt "@label" -msgid "Support Blocker" -msgstr "Bloqueador de Suporte" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Apagador de Suporte" - -msgctxt "@tooltip" -msgid "Support Infill" -msgstr "Preenchimento de Suporte" - -msgctxt "@tooltip" -msgid "Support Interface" -msgstr "Interface de Suporte" - -msgctxt "@action:label" -msgid "Support Type" -msgstr "Tipo de Suporte" - -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Biblioteca de suporte para matemática acelerada" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de suporte para streaming e metadados de arquivo" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Biblioteca de suporte para manuseamento de arquivos STL" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Biblioteca de suporte para computação científica" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" - -msgctxt "@action:button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@button" -msgid "Sync" -msgstr "Sincronizar" - -msgctxt "@title:header" -msgid "Sync material profiles via USB" -msgstr "Sincronizar perfis de material via USB" - -msgctxt "@action:button" -msgid "Sync materials" -msgstr "Sincronizar materiais" - -msgctxt "@button" -msgid "Sync materials with USB" -msgstr "Sincronizar materiais usando USB" - -msgctxt "@title:header" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@title:window" -msgid "Sync materials with printers" -msgstr "Sincronizar materiais com impressoras" - -msgctxt "@action:button" -msgid "Sync with Printers" -msgstr "Sincronizar com Impressoras" - -msgctxt "@button" -msgid "Syncing" -msgstr "Sincronizando" - -msgctxt "@info:generic" -msgid "Syncing..." -msgstr "Sincronizando..." - -msgctxt "@title:groupbox" -msgid "System information" -msgstr "Informação do Sistema" - -msgctxt "@button" -msgid "Technical datasheet" -msgstr "Ficha técnica" - -msgctxt "@info:tooltip" -msgid "The amount of smoothing to apply to the image." -msgstr "A quantidade de suavização para aplicar na imagem." - -msgctxt "@text" -msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." -msgstr "O perfil de recozimento requer pós-processamento em um forno depois da impressão terminar. Este perfil retém a acuidade dimensional da parte impressão depois do recozimento e melhora a força, rigidez e resistência térmica." - -msgctxt "@label" -msgid "The assigned printer, %1, requires the following configuration change:" -msgid_plural "The assigned printer, %1, requires the following configuration changes:" -msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" -msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" - -msgctxt "@error:file_size" -msgid "The backup exceeds the maximum file size." -msgstr "O backup excede o tamanho máximo de arquivo." - -msgctxt "@info:tooltip" -msgid "The base height from the build plate in millimeters." -msgstr "A altura-base da mesa de impressão em milímetros." - -msgctxt "@info:status" -msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." -msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please check your internet connection." -msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." - -msgctxt "@status" -msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." -msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." - -msgctxt "@status" -msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." -msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." - -msgctxt "@tooltip" -msgid "The colour of the material in this extruder." -msgstr "A cor do material neste extrusor." - -msgctxt "@tooltip" -msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." - -msgctxt "@label" -msgid "The configurations are not available because the printer is disconnected." -msgstr "As configurações não estão disponíveis porque a impressora está desconectada." - -msgctxt "@tooltip" -msgid "The current temperature of the heated bed." -msgstr "A temperatura atual da mesa aquecida." - -msgctxt "@tooltip" -msgid "The current temperature of this hotend." -msgstr "A temperatura atual deste hotend." - -msgctxt "@info:tooltip" -msgid "The depth in millimeters on the build plate" -msgstr "A profundidade da mesa de impressão em milímetros" - -msgctxt "@text" -msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." -msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." - -msgctxt "@text" -msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." -msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." - -msgctxt "@label" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" - -msgctxt "@label" -msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." - -msgctxt "@info:backup_failed" -msgid "The following error occurred while trying to restore a Cura backup:" -msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" - -msgctxt "@label" -msgid "The following packages can not be installed because of an incompatible Cura version:" -msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" - -msgctxt "@label" -msgid "The following packages will be added:" -msgstr "Os seguintes pacotes serão adicionados:" - -msgctxt "@label" -msgid "The following printers in your account have been added in Cura:" -msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" - -msgctxt "@title:header" -msgid "The following printers will receive the new material profiles:" -msgstr "Os seguintes materiais receberão novos perfis de material:" - -msgctxt "@info:tooltip" -msgid "The following script is active:" -msgid_plural "The following scripts are active:" -msgstr[0] "O seguinte script está ativo:" -msgstr[1] "Os seguintes scripts estão ativos:" - -msgctxt "@label" -msgid "The following settings define the strength of your part." -msgstr "Os seguintes ajustes definem a força de sua peça." - -msgctxt "@info:status" -msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." -msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." - -msgctxt "@tooltip" -msgid "The material in this extruder." -msgstr "O material neste extrusor." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." -msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." - -msgctxt "@info:tooltip" -msgid "The maximum distance of each pixel from \"Base.\"" -msgstr "A distância máxima de cada pixel da \"Base\"." - -msgctxt "@label (%1 is a number)" -msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" - -msgctxt "@tooltip" -msgid "The nozzle inserted in this extruder." -msgstr "O bico inserido neste extrusor." - -msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "" -"O padrão do material de preenchimento da impressão:\n" -"\n" -"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" -"\n" -"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" -"\n" -"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." - -msgctxt "@info:tooltip" -msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." -msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." - -msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" -msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." -msgstr "O complemento associado com o projeto Cura não foi encontrado no Ultimaker Marketplace. Como o complemento pode ser necessário para fatiar o projeto, pode não ser possível corretamente fatiar este arquivo." - -msgctxt "@info:title" -msgid "The print job was successfully submitted" -msgstr "O trabalho de impressão foi submetido com sucesso" - -msgctxt "@label" -msgid "The printer %1 is assigned, but the job contains an unknown material configuration." -msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." - -msgctxt "@label" -msgid "The printer at this address has not responded yet." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@label" -msgid "The printer at this address has not yet responded." -msgstr "A impressora neste endereço ainda não respondeu." - -msgctxt "@info:status" -msgid "The printer is not connected." -msgstr "A impressora não está conectada." - -msgctxt "@label" -msgid "The printer(s) below cannot be connected because they are part of a group" -msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" - -msgctxt "@message" -msgid "The provided state is not correct." -msgstr "O estado provido não está correto." - -msgctxt "@text:window" -msgid "The release notes could not be opened." -msgstr "As notas de lançamento não puderam ser abertas." - -msgctxt "@text:error" -msgid "The response from Digital Factory appears to be corrupted." -msgstr "A resposta da Digital Factory parece estar corrompida." - -msgctxt "@text:error" -msgid "The response from Digital Factory is missing important information." -msgstr "A resposta da Digital Factory veio sem informações importantes." - -msgctxt "@tooltip" -msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." - -msgctxt "@tooltip" -msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." -msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the bed to." -msgstr "A temperatura em que pré-aquecer a mesa." - -msgctxt "@tooltip of temperature input" -msgid "The temperature to pre-heat the hotend to." -msgstr "A temperatura com a qual pré-aquecer o hotend." - -msgctxt "@text" -msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." -msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." - -msgctxt "@info:tooltip" -msgid "The width in millimeters on the build plate" -msgstr "A largura em milímetros na plataforma de impressão" - -msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." -msgid "Theme*:" -msgstr "Tema*:" - -msgctxt "@info:status" -msgid "There are no file formats available to write with!" -msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" - -msgctxt "@label" -msgid "There are no print jobs in the queue. Slice and send a job to add one." -msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." - -msgctxt "@tooltip" -msgid "There are no profiles matching the configuration of this extruder." -msgstr "Não há perfis correspondendo à configuração deste extrusor." - -msgctxt "@info:status" -msgid "There is no active printer yet." -msgstr "Não há impressora ativa ainda." - -msgctxt "@label" -msgid "There is no printer found over your network." -msgstr "Não foi encontrada nenhuma impressora em sua rede." - -msgctxt "@error" -msgid "There is no workspace yet to write. Please add a printer first." -msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." - -msgctxt "@info:backup_status" -msgid "There was an error trying to restore your backup." -msgstr "Houve um erro ao tentar restaurar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while creating your backup." -msgstr "Houve um erro ao criar seu backup." - -msgctxt "@info:backup_status" -msgid "There was an error while uploading your backup." -msgstr "Houve um erro ao transferir seu backup." - -msgctxt "@label" -msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." -msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." - -msgctxt "@text:window" -msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" - -msgctxt "@label" -msgid "This material is linked to %1 and shares some of its properties." -msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." - -msgctxt "@label" -msgid "This package will be installed after restarting." -msgstr "Este pacote será instalado após o reinício." - -msgctxt "@label" -msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." -msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." - -msgctxt "info:status" -msgid "This printer is not linked to the Digital Factory:" -msgid_plural "These printers are not linked to the Digital Factory:" -msgstr[0] "Esta impressora não está ligada à Digital Factory:" -msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" - -msgctxt "@status" -msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." -msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." - -msgctxt "@label" -msgid "This printer is not set up to host a group of printers." -msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." - -msgctxt "@label" -msgid "This printer is the host for a group of %1 printers." -msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags !" -msgid "This profile {0} contains incorrect data, could not import it." -msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." - -msgctxt "@action:label" -msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." -msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." - -msgctxt "@label" -msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." -msgstr "Este projeto contém materiais ou complementos que não estão atualmente instalados no Cura.
    Instale os pacotes faltantes e abra novamente o projeto." - -msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "" -"Este ajuste tem um valor que é diferente do perfil.\n" -"\n" -"Clique para restaurar o valor do perfil." - -msgctxt "@item:tooltip" -msgid "This setting has been hidden by the active machine and will not be visible." -msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." - -msgctxt "@item:tooltip %1 is list of setting names" -msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." -msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." -msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." -msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." - -msgctxt "@label" -msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." -msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." - -msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "" -"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" -"\n" -"Clique para restaurar o valor calculado." - -msgctxt "@label" -msgid "This setting is not used because all the settings that it influences are overridden." -msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." - -msgctxt "@label" -msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" - -msgctxt "@info:warning" -msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" -msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" - -msgctxt "@label" -msgid "Time estimation" -msgstr "Estimativa de tempo" - -msgctxt "@message" -msgid "Timeout when authenticating with the account server." -msgstr "Tempo esgotado ao autenticar com o servidor da conta." - -msgctxt "@text" -msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." -msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." - -#, python-brace-format -msgctxt "info:status" -msgid "To establish a connection, please visit the {website_link}" -msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" - -msgctxt "@label" -msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." - -msgctxt "@label" -msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "To remove {printer_name} permanently, visit {digital_factory_link}" -msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" - -msgctxt "@action:inmenu" -msgid "Toggle Full Screen" -msgstr "Alternar Tela Cheia" - -msgctxt "@label" -msgid "Top / Bottom" -msgstr "Topo / Base" - -msgctxt "@action:inmenu menubar:view" -msgid "Top View" -msgstr "Visão Superior" - -msgctxt "@info:tooltip" -msgid "Top View" -msgstr "Visão de Cima" - -msgctxt "@label" -msgid "Total print time" -msgstr "Tempo total de impressão" - -msgctxt "@action:tooltip" -msgid "Track the print in Ultimaker Digital Factory" -msgstr "Rastrear a impressão na Ultimaker Digital Factory" - -msgctxt "@item:inlistbox" -msgid "Translucency" -msgstr "Translucidez" - -msgctxt "@tooltip" -msgid "Travel" -msgstr "Percurso" - -msgctxt "@label" -msgid "Travels" -msgstr "Percursos" - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." - -msgctxt "@info:backup_failed" -msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor Trimesh" - -msgctxt "@button" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@label" -msgid "Troubleshooting" -msgstr "Resolução de problemas" - -msgctxt "@button" -msgid "Try again" -msgstr "Tentar novamente" - -msgctxt "@action:label" -msgid "Type" -msgstr "Tipo" - -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor UFP" - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gerador de UFP" - -msgctxt "@item:inmenu" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "@button" -msgid "UltiMaker Account" -msgstr "Conta na UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Certified Material" -msgstr "Material Certificado UltiMaker" - -msgctxt "@text:window" -msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" - -msgctxt "@item:inlistbox" -msgid "UltiMaker Format Package" -msgstr "Pacote de Formato da UltiMaker" - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Conexão de Rede UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Verified Package" -msgstr "Pacote Verificado UltiMaker" - -msgctxt "@info" -msgid "UltiMaker Verified Plug-in" -msgstr "Complemento Verificado UltiMaker" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Ações de máquina UltiMaker" - -msgctxt "@button" -msgid "UltiMaker printer" -msgstr "Impressora UltiMaker" - -msgctxt "@label:button" -msgid "UltiMaker support" -msgstr "Suporte UltiMaker" - -msgctxt "info:name" -msgid "Ultimaker Digital Factory" -msgstr "Ultimaker Digital Factory" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digital Library da UltiMaker" - -msgctxt "@info:status" -msgid "Unable to add the profile." -msgstr "Não foi possível adicionar o perfil." - -msgctxt "@info:status" -msgid "Unable to find a location within the build volume for all objects" -msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" -msgstr "Não foi possível encontrar o executável do servidor local de EnginePlugin para: {self._plugin_id}" - -#, python-brace-format -msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "" -"Não foi possível matar o processo EnginePlugin: {self._plugin_id}\n" -"Acesso negado." - -msgctxt "@info" -msgid "Unable to reach the UltiMaker account server." -msgstr "Não foi possível contactar o servidor de contas da UltiMaker." - -msgctxt "@text" -msgid "Unable to read example data file." -msgstr "Não foi possível ler o arquivo de dados de exemplo." - -msgctxt "@info:title" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@label:PrintjobStatus" -msgid "Unable to slice" -msgstr "Não foi possível fatiar" - -msgctxt "@info:status" -msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." - -#, python-format -msgctxt "@info:status" -msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" -msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" - -msgctxt "@info:status" -msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." -msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." - -#, python-brace-format -msgctxt "@info:status" -msgid "Unable to slice with the current settings. The following settings have errors: {0}" -msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" - -msgctxt "@info" -msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." -msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." - -msgctxt "@label:status" -msgid "Unavailable" -msgstr "Indisponível" - -msgctxt "@label" -msgid "Unavailable printer" -msgstr "Impressora indisponível" - -msgctxt "@action:inmenu menubar:edit" -msgid "Ungroup Models" -msgstr "Desagrupar Modelos" - -msgctxt "@button" -msgid "Uninstall" -msgstr "Desinstalar" - -msgctxt "@title:column Unit of measurement" -msgid "Unit" -msgstr "Unidade" - -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "Configuração de sistema universal de construção" - -msgctxt "@label" -msgid "Unknown" -msgstr "Desconhecido" - -msgctxt "@label unknown version of Cura" -msgid "Unknown" -msgstr "Desconhecida" - -msgctxt "@label:property" -msgid "Unknown Author" -msgstr "Autor Desconhecido" - -msgctxt "@label:property" -msgid "Unknown Package" -msgstr "Pacote Desconhecido" - -#, python-brace-format -msgctxt "@error:send" -msgid "Unknown error code when uploading print job: {0}" -msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" - -msgctxt "@text" -msgid "Unknown error." -msgstr "Erro desconhecido." - -msgctxt "@label" -msgid "Unlink Material" -msgstr "Desvincular Material" - -msgctxt "@label:status" -msgid "Unreachable" -msgstr "Inacessivel" - -msgctxt "@label" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@text Print job name" -msgid "Untitled" -msgstr "Sem Título" - -msgctxt "@button" -msgid "Update" -msgstr "Atualizar" - -msgctxt "@action" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@title" -msgid "Update Firmware" -msgstr "Atualizar Firmware" - -msgctxt "@action:ComboBox Update/override existing profile" -msgid "Update existing" -msgstr "Atualizar existentes" - -msgctxt "@action:tooltip" -msgid "Update profile with current settings/overrides" -msgstr "Atualizar perfil com ajustes/sobreposições atuais" - -msgctxt "@action:button" -msgid "Update profile." -msgstr "Atualizar perfil." - -msgctxt "@info:title" -msgid "Update your printer" -msgstr "Atualize sua impressora" - -msgctxt "@label" -msgid "Updates" -msgstr "Atualizações" - -msgctxt "@label" -msgid "Updating firmware." -msgstr "Atualizando firmware." - -msgctxt "@button" -msgid "Updating..." -msgstr "Atualizando..." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." - -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar Firmware personalizado" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Transferindo trabalho de impressão para a impressora." - -msgctxt "@info:backup_status" -msgid "Uploading your backup..." -msgstr "Enviando seu backup..." - -msgctxt "@option:check" -msgid "Use a single instance of Cura" -msgstr "Usar uma única instância do Cura" - -msgctxt "@label" -msgid "Use glue for better adhesion with this material combination." -msgstr "Use cola para melhor aderência com essa combinação de materiais." - -msgctxt "@label" -msgid "User Agreement" -msgstr "Contrato de Usuário" - -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funções de utilidade, incluindo um carregador de imagem" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Biblioteca de utilidade, incluindo geração Voronoi" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização de Versão de 2.1 para 2.2" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização de Versão de 2.2 para 2.4" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização de Versão de 2.5 para 2.6" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização de Versão de 2.6 para 2.7" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização de Versão de 2.7 para 3.0" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização de Versão 3.0 para 3.1" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização de Versão de 3.2 para 3.3" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização de Versão de 3.3 para 3.4" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização de Versão de 3.4 para 3.5" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização de Versão de 3.5 para 4.0" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização de Versão de 4.0 para 4.1" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização de Versão de 4.1 para 4.2" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização de Versão de 4.11 para 4.12" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização de Versão de 4.13 para 5.0" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização de Versão de 4.2 para 4.3" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização de Versão de 4.3 para 4.4" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização de Versão de 4.4 para 4.5" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização de Versão de 4.5 para 4.6" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização de Versão de 4.6.0 para 4.6.2" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização de Versão de 4.6.2 para 4.7" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização de Versão de 4.7 para 4.8" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização de Versão de 4.8 para 4.9" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização de Versão de 4.9 para 4.10" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização de Versão de 5.2 para 5.3" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Atualização de Versão de 5.3 para 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Atualização de Versão de 5.4 para 5.5" - -msgctxt "@button" -msgid "View printers in Digital Factory" -msgstr "Ver impressoras na Digital Factory" - -msgctxt "@label" -msgid "View type" -msgstr "Tipo de Visão" - -msgctxt "@label link to technical assistance" -msgid "View user manuals online" -msgstr "Ver manuais de usuário online" - -msgctxt "@label" -msgid "Viewport behavior" -msgstr "Comportamento da área de visualização" - -msgctxt "@action:inmenu" -msgid "Visible Settings" -msgstr "Ajustes Visíveis" - -msgctxt "@button" -msgid "Visit plug-in website" -msgstr "Visitar sítio web de complementos" - -msgctxt "@tooltip:button" -msgid "Visit the UltiMaker website." -msgstr "Visita o website da UltiMaker." - -msgctxt "@label" -msgid "Visual" -msgstr "Visual" - -msgctxt "@label" -msgid "Waiting for" -msgstr "Esperando por" - -msgctxt "@label" -msgid "Waiting for Cloud response" -msgstr "Aguardando resposta da Nuvem" - -msgctxt "@button" -msgid "Waiting for new printers" -msgstr "Esperando por novas impressoras" - -msgctxt "@button" -msgid "Want more?" -msgstr "Quer mais?" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" - -#, python-brace-format -msgctxt "@info:status" -msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." -msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." - -msgctxt "@text:window" -msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." -msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." - -msgctxt "@text:window" -msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" - -msgctxt "@info" -msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." - -msgctxt "@button" -msgid "Website" -msgstr "Sítio web" - -msgctxt "@label" -msgid "What printer would you like to setup?" -msgstr "Que impressora você gostaria de configurar?" - -msgctxt "@info:tooltip" -msgid "What type of camera rendering should be used?" -msgstr "Que tipo de renderização de câmera deve ser usada?" - -msgctxt "@action:inmenu menubar:help" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@label" -msgid "What's New" -msgstr "O Que Há de Novo" - -msgctxt "@title:window" -msgid "What's New" -msgstr "Novidades" - -msgctxt "@info:tooltip" -msgid "When checking for updates, check for both stable and for beta releases." -msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." - -msgctxt "@info:tooltip" -msgid "When checking for updates, only check for stable releases." -msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." - -msgctxt "@info:tooltip" -msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." - -msgctxt "@button" -msgid "Why do I need to sync material profiles?" -msgstr "Por que eu preciso sincronizar perfis de material?" - -msgctxt "@action:label" -msgid "Width (mm)" -msgstr "Largura (mm)" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escreve em formato G-Code comprimido." - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escreve em formato G-Code." - -msgctxt "@label" -msgid "X (Width)" -msgstr "X (largura)" - -msgctxt "@label" -msgid "X max" -msgstr "X máx" - -msgctxt "@label" -msgid "X min" -msgstr "X mín" - -msgctxt "name" -msgid "X-Ray View" -msgstr "Visão de Raios-X" - -msgctxt "@item:inlistbox" -msgid "X-Ray view" -msgstr "Visão de Raios-X" - -msgctxt "@label" -msgid "X/Y" -msgstr "X/Y" - -msgctxt "@item:inlistbox" -msgid "X3D File" -msgstr "Arquivo X3D" - -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -msgctxt "@label" -msgid "Y (Depth)" -msgstr "Y (Profundidade)" - -msgctxt "@label" -msgid "Y max" -msgstr "Y máx" - -msgctxt "@label" -msgid "Y min" -msgstr "Y mín" - -msgctxt "@info" -msgid "Yes" -msgstr "Sim" - -msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "" -"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -#, python-brace-format -msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" -msgstr[1] "" -"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" -"Tem certeza que quer continuar?" - -msgctxt "@info:status" -msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." -msgstr "Você está tentando conectar a uma impressora que não está rodando UltiMaker Connect. Por favor atualize a impressora para o firmware mais recente." - -#, python-brace-format -msgctxt "@info:status" -msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." -msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." - -msgctxt "@empty_state" -msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." -msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." - -msgctxt "@text:window, %1 is a profile name" -msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." - -msgctxt "@label" -msgid "You need to accept the license to install the package" -msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" - -msgctxt "@info:generic" -msgid "You need to quit and restart {} before changes have effect." -msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." - -msgctxt "@dialog:info" -msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" - -msgctxt "@info:status" -msgid "You will receive a confirmation via email when the print job is approved" -msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" - -msgctxt "@info:backup_status" -msgid "Your backup has finished uploading." -msgstr "Seu backup terminou de ser enviado." - -msgctxt "@action:label" -msgid "Your current settings match the selected profile." -msgstr "Seus ajustes atuais coincidem com o perfil selecionado." - -msgctxt "@info" -msgid "Your new printer will automatically appear in Cura" -msgstr "Sua nova impressora vai automaticamente aparecer no Cura" - -#, python-brace-format -msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "" -"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" -" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" - -msgctxt "@label" -msgid "Z" -msgstr "Z" - -msgctxt "@label" -msgid "Z (Height)" -msgstr "Z (Altura)" - -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de descoberta 'ZeroConf'" - -msgctxt "@action:button" -msgid "Zoom toward mouse direction" -msgstr "Ampliar na direção do mouse" - -msgctxt "@info:tooltip" -msgid "Zooming towards the mouse is not supported in the orthographic perspective." -msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." - -msgctxt "@text Placeholder for the username if it has been deleted" -msgid "deleted user" -msgstr "usuário removido" - -msgctxt "@item:inlistbox" -msgid "glTF Binary" -msgstr "Binário glTF" - -msgctxt "@item:inlistbox" -msgid "glTF Embedded JSON" -msgstr "glTF Embutido JSON" - -msgctxt "@label" -msgid "max" -msgstr "máx" - -msgctxt "@label" -msgid "min" -msgstr "mín" - -msgctxt "@label" -msgid "mm" -msgstr "mm" - -msgctxt "@info:status" -msgid "today" -msgstr "hoje" - -msgctxt "@info:status" -msgid "tomorrow" -msgstr "amanhã" - -msgctxt "@label" -msgid "version: %1" -msgstr "versão: %1" - -#, python-brace-format -msgctxt "@message {printer_name} is replaced with the name of the printer" -msgid "{printer_name} will be removed until the next account sync." -msgstr "{printer_name} será removida até a próxima sincronização de conta." - -msgctxt "@info:generic" -msgid "{} plugins failed to download" -msgstr "{} complementos falharam em baixar" - -#, python-brace-format -#~ msgctxt "info:{0} gets replaced by a number of printers" -#~ msgid "... and {0} other" -#~ msgid_plural "... and {0} others" -#~ msgstr[0] "... e {0} outra" -#~ msgstr[1] "... e {0} outras" - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Posicionar Seleção" - -#~ msgctxt "@tooltip:button" -#~ msgid "Become a 3D printing expert with UltiMaker e-learning." -#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." - -#~ msgctxt "@info:status" -#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." -#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." - -#~ msgctxt "@label" -#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." -#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." - -#~ msgctxt "@error:zip" -#~ msgid "Error writing 3mf file." -#~ msgstr "Erro ao escrever arquivo 3mf." - -#~ msgctxt "@label" -#~ msgid "Hex" -#~ msgstr "Hexa" - -#~ msgctxt "@action:button" -#~ msgid "Install Materials" -#~ msgstr "Instalar Materiais" - -#~ msgctxt "@title" -#~ msgid "Install missing Materials" -#~ msgstr "Instalar Materiais faltantes" - -#~ msgctxt "@action:button" -#~ msgid "Install missing material" -#~ msgstr "Instalar material faltante" - -#~ msgctxt "@info:title" -#~ msgid "Material profiles not installed" -#~ msgstr "Perfis de material não instalados" - -#~ msgctxt "@info:title" -#~ msgid "Simulation View" -#~ msgstr "Visão Simulada" - -#~ msgctxt "@label" -#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." -#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." - -#~ msgctxt "@info:status" -#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." -#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." - -#~ msgctxt "@error:zip" -#~ msgid "The operating system does not allow saving a project file to this location or with this file name." -#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." +# Cura +# Copyright (C) 2022 UltiMaker. +# This file is distributed under the same license as the Cura package. +# Ultimaker , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"PO-Revision-Date: 2023-10-23 05:56+0200\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.3.2\n" + +#, python-format +msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." +msgid "%(width).1f x %(depth).1f x %(height).1f mm" +msgstr "%(width).1f x %(depth).1f x %(height).1f mm" + +msgctxt "@action:label" +msgid "%1 & material" +msgstr "%1 & material" + +msgctxt "@action:label" +msgid "%1 out of %2" +msgstr "%1 de %2" + +msgctxt "@action:label" +msgid "%1 override" +msgid_plural "%1 overrides" +msgstr[0] "%1 sobreposto" +msgstr[1] "%1 sobrepostos" + +msgctxt "@action:label" +msgid "%1, %2 override" +msgid_plural "%1, %2 overrides" +msgstr[0] "%1, %2 sobreposição" +msgstr[1] "%1, %2 sobreposições" + +msgctxt "@label g for grams" +msgid "%1g" +msgstr "%1g" + +msgctxt "@label m for meter" +msgid "%1m" +msgstr "%1m" + +msgctxt "@action:inmenu menubar:printer" +msgid "&Add Printer..." +msgstr "&Adicionar Impressora..." + +msgctxt "@action:inmenu menubar:view" +msgid "&Camera position" +msgstr "Posição da &câmera" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Create profile from current settings/overrides..." +msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..." + +msgctxt "@action:inmenu menubar:profile" +msgid "&Discard current changes" +msgstr "&Descartar ajustes atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Edit" +msgstr "&Editar" + +msgctxt "@title:menu menubar:file" +msgid "&Export..." +msgstr "&Exportar..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&File" +msgstr "Arquivo (&F)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Group Models" +msgstr "A&grupar Modelos" + +msgctxt "@title:menu menubar:toplevel" +msgid "&Help" +msgstr "Ajuda (&H)" + +msgctxt "@title:menu" +msgid "&Material" +msgstr "&Material" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Merge Models" +msgstr "Co&mbinar Modelos" + +msgctxt "@action:inmenu" +msgid "&Multiply Model..." +msgstr "&Multiplicar Modelo..." + +msgctxt "@action:inmenu menubar:file" +msgid "&New Project..." +msgstr "&Novo Projeto..." + +msgctxt "@action:inmenu menubar:file" +msgid "&Open File(s)..." +msgstr "Abrir Arquiv&o(s)..." + +msgctxt "@title:menu menubar:settings" +msgid "&Printer" +msgstr "Im&pressora" + +msgctxt "@action:inmenu menubar:file" +msgid "&Quit" +msgstr "Sair (&Q)" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Redo" +msgstr "&Refazer" + +msgctxt "@title:menu menubar:file" +msgid "&Save Project..." +msgstr "&Salvar Projeto..." + +msgctxt "@title:menu menubar:toplevel" +msgid "&Settings" +msgstr "Aju&stes" + +msgctxt "@action:inmenu menubar:edit" +msgid "&Undo" +msgstr "Desfazer (&U)" + +msgctxt "@action:inmenu menubar:profile" +msgid "&Update profile with current settings/overrides" +msgstr "At&ualizar perfil com valores e sobreposições atuais" + +msgctxt "@title:menu menubar:toplevel" +msgid "&View" +msgstr "&Ver" + +msgctxt "@label" +msgid "*You will need to restart the application for these changes to have effect." +msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito." + +msgctxt "@text" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Adicione perfis de material e plug-ins do Marketplace\n" +"- Faça backup e sincronize seus perfis de materiais e plugins\n" +"- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade UltiMaker" + +msgctxt "@heading" +msgid "-- incomplete --" +msgstr "-- incompleto --" + +msgctxt "@action:label" +msgid "1mm Transmittance (%)" +msgstr "Transmitância de 1mm (%)" + +msgctxt "@info:title" +msgid "3D Model Assistant" +msgstr "Assistente de Modelo 3D" + +msgctxt "@action:inmenu menubar:view" +msgid "3D View" +msgstr "Visão &3D" + +msgctxt "@info:tooltip" +msgid "3D View" +msgstr "Visão 3D" + +msgctxt "@item:inlistbox" +msgid "3MF File" +msgstr "Arquivo 3MF" + +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Gerador de 3MF" + +msgctxt "@error:zip" +msgid "3MF Writer plug-in is corrupt." +msgstr "O complemento de Escrita 3MF está corrompido." + +msgctxt "@item:inlistbox" +msgid "3MF file" +msgstr "Arquivo 3MF" + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is active and you overwrote some settings." +msgstr "%1 perfil personalizado está ativo e alguns ajustes foram sobrescritos." + +msgctxt "@info, %1 is the name of the custom profile" +msgid "%1 custom profile is overriding some settings." +msgstr "%1 perfil personalizado está sobrepondo alguns ajustes." + +msgctxt "@label %i will be replaced with a profile name" +msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." +msgstr "Somente ajuste alterados por usuário serão salvos no perfil personalizado.
    Para materiais que o suportam, este novo perfil personalizado herdará propriedades de %1." + +#, python-brace-format +msgctxt "@label OpenGL renderer" +msgid "
  • OpenGL Renderer: {renderer}
  • " +msgstr "
  • Renderizador da OpenGL: {renderer}
  • " + +#, python-brace-format +msgctxt "@label OpenGL vendor" +msgid "
  • OpenGL Vendor: {vendor}
  • " +msgstr "
  • Fornecedor da OpenGL: {vendor}
  • " + +#, python-brace-format +msgctxt "@label OpenGL version" +msgid "
  • OpenGL Version: {version}
  • " +msgstr "
  • Versão da OpenGL: {version}
  • " + +msgctxt "@label crash message" +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema

    \n" +"

    Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores

    \n" +" " + +msgctxt "@label crash message" +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Oops, o UltiMaker Cura encontrou algo que não parece estar correto.

    \n" +"

    Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.

    \n" +"

    Cópias salvas podem ser encontradas na pasta de configuração.

    \n" +"

    Por favor nos envie este Relatório de Falha para consertar o problema.

    \n" +" " + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:

    \n" +"

    {model_names}

    \n" +"

    Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.

    \n" +"

    Ver guia de qualidade de impressão

    " + +msgctxt "@label" +msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" +msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?" + +msgctxt "info:status" +msgid "A cloud connection is not available for a printer" +msgid_plural "A cloud connection is not available for some printers" +msgstr[0] "Conexão de nuvem não está disponível para uma impressora" +msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras" + +msgctxt "@message" +msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." +msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado." + +msgctxt "@item:inlistbox" +msgid "AMF File" +msgstr "Arquivo AMF" + +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor AMF" + +msgctxt "@label" +msgid "Abort" +msgstr "Abortar" + +msgctxt "@label" +msgid "Abort Print" +msgstr "Abortar Impressão" + +msgctxt "@window:title" +msgid "Abort print" +msgstr "Abortar impressão" + +msgctxt "@label:status" +msgid "Aborted" +msgstr "Abortado" + +msgctxt "@label" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@label:status" +msgid "Aborting..." +msgstr "Abortando..." + +msgctxt "@title:window The argument is the application name." +msgid "About %1" +msgstr "Sobre %1" + +msgctxt "@action:inmenu menubar:help" +msgid "About..." +msgstr "Sobre..." + +msgctxt "@button" +msgid "Accept" +msgstr "Aceitar" + +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware." + +msgctxt "@label" +msgid "Account synced" +msgstr "Conta sincronizada" + +msgctxt "@label:status" +msgid "Action required" +msgstr "Necessária uma ação" + +msgctxt "@action:button" +msgid "Activate" +msgstr "Ativar" + +msgctxt "@label" +msgid "Active print" +msgstr "Impressão ativa" + +msgctxt "@action:button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@button" +msgid "Add" +msgstr "Adicionar" + +msgctxt "@action:button" +msgid "Add New" +msgstr "Adicionar Novo" + +msgctxt "@title:window" +msgid "Add Printer" +msgstr "Adicionar Impressora" + +msgctxt "@button" +msgid "Add UltiMaker printer via Digital Factory" +msgstr "Adicionar impressora UltiMaker via Digital Factory" + +msgctxt "@label" +msgid "Add a Cloud printer" +msgstr "Adicionar uma impressora de Nuvem" + +msgctxt "@label" +msgid "Add a networked printer" +msgstr "Adicionar uma impressora de rede" + +msgctxt "@label" +msgid "Add a non-networked printer" +msgstr "Adicionar uma impressora local" + +msgctxt "@action" +msgid "Add a script" +msgstr "Adicionar um script" + +msgctxt "@option:check" +msgid "Add icon to system tray *" +msgstr "Adicionar ícone à bandeja do sistema *" + +msgctxt "@button" +msgid "Add local printer" +msgstr "Adicionar impressora local" + +msgctxt "@option:check" +msgid "Add machine prefix to job name" +msgstr "Adicionar prefixo de máquina ao nome do trabalho" + +msgctxt "@text" +msgid "Add material settings and plugins from the Marketplace" +msgstr "Adicionar ajustes de materiais e plugins do Marketplace" + +msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." +msgid "Add more materials from Marketplace" +msgstr "Adicionar mais materiais ao Marketplace" + +msgctxt "@button" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer" +msgstr "Adicionar impressora" + +msgctxt "@label" +msgid "Add printer by IP" +msgstr "Adicionar impressora por IP" + +msgctxt "@label" +msgid "Add printer by IP address" +msgstr "Adicionar impressora por endereço IP" + +msgctxt "@button" +msgid "Add printer manually" +msgstr "Adicionar impressora manualmente" + +#, python-brace-format +msgctxt "info:status Filled in with printer name and printer model." +msgid "Adding printer {name} ({model}) from your account" +msgstr "Adicionando impressora {name} ({model}) da sua conta" + +msgctxt "@label" +msgid "Address" +msgstr "Endereço" + +msgctxt "@label" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "@label" +msgid "Adhesion Information" +msgstr "Informação sobre Aderência" + +msgctxt "@label" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do preenchimento da impressão." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta o posicionamento das estruturas de suporte. Este posicionamento pode ser ajustado à plataforma de impressão ou em todo lugar. Se for escolhido em todo lugar, as estruturas de suporte também se apoiarão no próprio modelo." + +msgctxt "@label Header for list of settings." +msgid "Affected By" +msgstr "Afetado Por" + +msgctxt "@label Header for list of settings." +msgid "Affects" +msgstr "Afeta" + +msgctxt "@button" +msgid "Agree" +msgstr "Concordar" + +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos Os Arquivos (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos Os Tipos Suportados ({0})" + +msgctxt "@text:window" +msgid "Allow sending anonymous data" +msgstr "Permitir enviar dados anônimos" + +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite carregar e exibir arquivos G-Code." + +msgctxt "@option:discardOrKeep" +msgid "Always ask me this" +msgstr "Sempre perguntar" + +msgctxt "@option:openProject" +msgid "Always ask me this" +msgstr "Sempre me perguntar" + +msgctxt "@option:discardOrKeep" +msgid "Always discard changed settings" +msgstr "Sempre descartar alterações da configuração" + +msgctxt "@option:openProject" +msgid "Always import models" +msgstr "Sempre importar modelos" + +msgctxt "@option:openProject" +msgid "Always open as a project" +msgstr "Sempre abrir como projeto" + +msgctxt "@option:discardOrKeep" +msgid "Always transfer changed settings to new profile" +msgstr "Sempre transferir as alterações para o novo perfil" + +msgctxt "@info:tooltip" +msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" +msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?" + +msgctxt "@label" +msgid "Annealing" +msgstr "Recozimento" + +msgctxt "@label" +msgid "Anonymous" +msgstr "Anônimo" + +msgctxt "@label Description for application component" +msgid "Application framework" +msgstr "Framework de Aplicações" + +msgctxt "@label" +msgid "Apply Extruder offsets to GCode" +msgstr "Aplicar deslocamentos de Extrusão ao G-Code" + +msgctxt "@info:title" +msgid "Are you ready for cloud printing?" +msgstr "Você está pronto para a impressão de nuvem?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to abort %1?" +msgstr "Você tem certeza que quer abortar %1?" + +msgctxt "@label" +msgid "Are you sure you want to abort the print?" +msgstr "Tem certeza que deseja abortar a impressão?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to delete %1?" +msgstr "Você tem certeza que quer remover %1?" + +msgctxt "@dialog:info" +msgid "Are you sure you want to delete this backup? This cannot be undone." +msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito." + +msgctxt "@label %1 is the application name" +msgid "Are you sure you want to exit %1?" +msgstr "Tem certeza que quer sair de %1?" + +msgctxt "@label %1 is the name of a print job." +msgid "Are you sure you want to move %1 to the top of the queue?" +msgstr "Você tem certeza que quer mover %1 para o topo da fila?" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "Are you sure you want to remove {printer_name} temporarily?" +msgstr "Tem certeza que quer remover {printer_name} temporariamente?" + +msgctxt "@info:question" +msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." +msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos." + +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!" + +#, python-brace-format +msgctxt "@label {0} is the name of a printer that's about to be deleted." +msgid "Are you sure you wish to remove {0}? This cannot be undone!" +msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models" +msgstr "Posicionar Todos os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange All Models in a grid" +msgstr "Organizar Todos os Modelos em Grade" + +msgctxt "@label:button" +msgid "Ask a question" +msgstr "Fazer uma pergunta" + +msgctxt "@checkbox:description" +msgid "Auto Backup" +msgstr "Auto Backup" + +msgctxt "@checkbox:description" +msgid "Automatically create a backup each day that Cura is started." +msgstr "Criar um backup automaticamente toda vez que o Cura iniciar." + +msgctxt "@option:check" +msgid "Automatically drop models to the build plate" +msgstr "Automaticamente fazer os modelos caírem na mesa de impressão" + +msgctxt "@action:button" +msgid "Automatically upgrade Firmware" +msgstr "Automaticamente atualizar Firmware" + +msgctxt "@label" +msgid "Available networked printers" +msgstr "Impressoras de rede disponíveis" + +msgctxt "@item:inlistbox" +msgid "BMP Image" +msgstr "Imagem BMP" + +msgctxt "@button" +msgid "Back" +msgstr "Voltar" + +msgctxt "@button:tooltip" +msgid "Back" +msgstr "Voltar" + +msgctxt "@info:title" +msgid "Backup" +msgstr "Backup" + +msgctxt "@button" +msgid "Backup Now" +msgstr "Backup Agora" + +msgctxt "@action:button" +msgid "Backup and Reset Configuration" +msgstr "Salvar e Restabelecer Configuração" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Permite backup e restauração da configuração." + +msgctxt "@text" +msgid "Backup and sync your material settings and plugins" +msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins" + +msgctxt "@description" +msgid "Backup and synchronize your Cura settings." +msgstr "Fazer backup e sincronizar os ajustes do Cura." + +msgctxt "@info:title" +msgid "Backups" +msgstr "Backups" + +msgctxt "@action:label" +msgid "Base (mm)" +msgstr "Base (mm)" + +msgctxt "@action:inmenu menubar:view" +msgid "Bottom View" +msgstr "Visão de Baixo" + +msgctxt "@label" +msgid "Brand" +msgstr "Marca" + +msgctxt "@title" +msgid "Build Plate Leveling" +msgstr "Nivelamento da mesa de impressão" + +msgctxt "@info:title" +msgid "Build Volume" +msgstr "Volume de Impressão" + +msgctxt "@label" +msgid "Build plate" +msgstr "Mesa de Impressão" + +msgctxt "@label" +msgid "Build plate shape" +msgstr "Forma da plataforma de impressão" + +msgctxt "@label" +msgid "Bundled Materials" +msgstr "Materiais Empacotados" + +msgctxt "@label" +msgid "Bundled Plugins" +msgstr "Complementos Empacotados" + +msgctxt "@button" +msgid "Buy spool" +msgstr "Comprar carretel" + +msgctxt "@label Is followed by the name of an author" +msgid "By" +msgstr "Por" + +msgctxt "@label Description for application dependency" +msgid "C/C++ Binding library" +msgstr "Biblioteca de Ligações C/C++" + +msgctxt "@item:inlistbox" +msgid "COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA" + +msgctxt "@info:status" +msgid "Calculated" +msgstr "Calculado" + +msgctxt "@window:text" +msgid "Camera rendering:" +msgstr "Renderização de câmera:" + +msgctxt "@action:inmenu menubar:view" +msgid "Camera view" +msgstr "Visão de câmera" + +msgctxt "@info:title" +msgid "Can't Find Location" +msgstr "Não Foi Encontrada Localização" + +msgctxt "@info:title" +msgid "Can't Open Project File" +msgstr "Não Foi Possível Abrir o Arquivo de Projeto" + +msgctxt "@label" +msgid "Can't connect to your UltiMaker printer?" +msgstr "Não consegue conectar à sua impressora UltiMaker?" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Can't import profile from {0} before a printer is added." +msgstr "Não foi possível importar perfil de {0} antes de uma impressora ser adicionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Can't open any other file if G-code is loading. Skipped importing {0}" +msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}" + +msgctxt "@info:error" +msgid "Can't write to UFP file:" +msgstr "Não foi possível escrever no arquivo UFP:" + +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@button Cancel pre-heating" +msgid "Cancel" +msgstr "Cancelar" + +msgctxt "@option:check" +msgid "Caution message in g-code reader" +msgstr "Mensagem de alera no leitor de G-Code" + +msgctxt "@action:inmenu" +msgid "Ce&nter Model on Platform" +msgstr "Ce&ntralizar Modelo na Mesa" + +msgctxt "@action:inmenu menubar:edit" +msgid "Center Selected" +msgstr "Centralizar Selecionados" + +msgctxt "@action:button" +msgid "Center camera when item is selected" +msgstr "Centralizar câmera quanto o item é selecionado" + +msgctxt "@info:tooltip" +msgid "Change active post-processing scripts." +msgstr "Alterar scripts de pós-processamento ativos." + +msgctxt "@label" +msgid "Change material %1 from %2 to %3." +msgstr "Alterar material %1 de %2 para %3." + +msgctxt "@label" +msgid "Change print core %1 from %2 to %3." +msgstr "Alterar núcleo de impressão %1 de %2 para %3." + +msgctxt "@info:title" +msgid "Changes detected from your UltiMaker account" +msgstr "Alterações detectadas de sua conta UltiMaker" + +msgctxt "@title" +msgid "Changes from your account" +msgstr "Alterações da sua conta" + +msgctxt "@label:textbox" +msgid "Check all" +msgstr "Verificar tudo" + +msgctxt "@button" +msgid "Check for account updates" +msgstr "Verificar atualizações da conta" + +msgctxt "@option:check" +msgid "Check for updates on start" +msgstr "Verificar atualizações na inicialização" + +msgctxt "@label" +msgid "Checking..." +msgstr "Verificando..." + +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Verifica por atualizações de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões." + +msgctxt "@label" +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "" +"Escolhe entre as técnicas disponíveis para a geração de suporte.\n" +"\n" +"Suporte \"Normal\" cria uma estrutura de suporte diretamente abaixo das partes pendentes e continua em linha reta para baixo.\n" +"\n" +"Suporte de \"Árvore\" cria galhos em direção às áreas pendentes que suportam o modelo em suas pontas, e permite que os galhos se espalhem em volta do modelo para suportá-lo a partir da plataforma de impressão tanto quanto possível." + +msgctxt "@action:inmenu menubar:edit" +msgid "Clear Build Plate" +msgstr "Esvaziar a Mesa de Impressão" + +msgctxt "@option:check" +msgid "Clear buildplate before loading model into the single instance" +msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única" + +msgctxt "@text" +msgid "Click the export material archive button." +msgstr "Clique no botão de exportar arquivo de material." + +msgctxt "@action:button" +msgid "Close" +msgstr "Fechar" + +msgctxt "@title:window %1 is the application name" +msgid "Closing %1" +msgstr "Fechando %1" + +msgctxt "@action:inmenu" +msgid "Collapse All Categories" +msgstr "Encolher Todas As Categorias" + +msgctxt "@label" +msgid "Color" +msgstr "Cor" + +msgctxt "@action:label" +msgid "Color Model" +msgstr "Modelo de Cor" + +msgctxt "@label" +msgid "Color scheme" +msgstr "Esquema de Cores" + +msgctxt "@info" +msgid "Compare and save." +msgstr "Comparar e salvar." + +msgctxt "@label" +msgid "Compatibility Mode" +msgstr "Modo de Compatibilidade" + +msgctxt "@label Description for application dependency" +msgid "Compatibility between Python 2 and 3" +msgstr "Compatibilidade entre Python 2 e 3" + +msgctxt "@title:label" +msgid "Compatible Printers" +msgstr "Impressoras Compatíveis" + +msgctxt "@label" +msgid "Compatible material diameter" +msgstr "Diâmetro de material compatível" + +msgctxt "@header" +msgid "Compatible printers" +msgstr "Impressoras compatíveis" + +msgctxt "@header" +msgid "Compatible support materials" +msgstr "Materiais de suporte compatíveis" + +msgctxt "@header" +msgid "Compatible with Material Station" +msgstr "Compatível com Material Station" + +msgctxt "@item:inlistbox" +msgid "Compressed COLLADA Digital Asset Exchange" +msgstr "Câmbio de Ativos Digitais COLLADA Comprimido" + +msgctxt "@item:inlistbox" +msgid "Compressed G-code File" +msgstr "Arquivo de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-Code Comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gerador de G-Code Comprimido" + +msgctxt "@title:window" +msgid "Configuration Changes" +msgstr "Alterações de Configuração" + +msgctxt "@error" +msgid "Configuration not supported" +msgstr "Configuração não suportada" + +msgctxt "@header" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@label" +msgid "Configurations" +msgstr "Configurações" + +msgctxt "@action:inmenu" +msgid "Configure Cura..." +msgstr "Configurar Cura..." + +msgctxt "@info:tooltip" +msgid "Configure Per Model Settings" +msgstr "Configurar ajustes por Modelo" + +msgctxt "@action" +msgid "Configure group" +msgstr "Configurar grupo" + +msgctxt "@action:menu" +msgid "Configure setting visibility..." +msgstr "Configurar a visibilidade dos ajustes..." + +msgctxt "@title:window" +msgid "Confirm Diameter Change" +msgstr "Confirmar Mudança de Diâmetro" + +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + +msgctxt "@action:button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@button" +msgid "Connect" +msgstr "Conectar" + +msgctxt "@title:window" +msgid "Connect to Networked Printer" +msgstr "Conectar a Impressora de Rede" + +msgctxt "@action" +msgid "Connect via Network" +msgstr "Conectar pela rede" + +msgctxt "@info:status" +msgid "Connected over the network" +msgstr "Conectado pela rede" + +msgctxt "@label" +msgid "Connected printers" +msgstr "Impressoras conectadas" + +msgctxt "@info:status" +msgid "Connected via USB" +msgstr "Conectado via USB" + +msgctxt "@info:status" +msgid "Connected via cloud" +msgstr "Conectado pela nuvem" + +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela." + +msgctxt "@tooltip:button" +msgid "Consult the UltiMaker Community." +msgstr "Consultar a Comunidade UltiMaker." + +msgctxt "@title:window" +msgid "Convert Image" +msgstr "Converter Imagem" + +msgctxt "@label" +msgid "Cooling Fan Number" +msgstr "Número da Ventoinha de Resfriamento" + +msgctxt "@action:menu" +msgid "Copy all changed values to all extruders" +msgstr "Copiar todos os valores alterados para todos os extrusores" + +msgctxt "@action:inmenu menubar:edit" +msgid "Copy to clipboard" +msgstr "Copiar para a área de transferência" + +msgctxt "@action:menu" +msgid "Copy value to all extruders" +msgstr "Copiar valor para todos os extrusores" + +msgctxt "@label" +msgid "Cost per Meter" +msgstr "Custo por Metro" + +msgctxt "@info" +msgid "Could not access update information." +msgstr "Não foi possível acessar informação de atualização." + +msgctxt "@label" +msgid "Could not connect to device." +msgstr "Não foi possível conectar ao dispositivo." + +msgctxt "@info:backup_failed" +msgid "Could not create archive from user data directory: {}" +msgstr "Não pude criar arquivo do diretório de dados de usuário: {}" + +#, python-brace-format +msgctxt "@info:status Don't translate the tag {device}!" +msgid "Could not find a file name when trying to write to {device}." +msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}." + +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not import material %1: %2" +msgstr "Não foi possível importar material %1: %2" + +msgctxt "@info:error" +msgid "Could not interpret the server's response." +msgstr "Não foi possível interpretar a resposta de servidor." + +msgctxt "@info:error" +msgid "Could not reach Marketplace." +msgstr "Não foi possível conectar ao Marketplace." + +msgctxt "@message" +msgid "Could not read response." +msgstr "Não foi possível ler a resposta." + +msgctxt "@message:text" +msgid "Could not save material archive to {}:" +msgstr "Não foi possível salvar o arquivo de materiais para {}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível salvar em {0}: {1}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Could not save to removable drive {0}: {1}" +msgstr "Não foi possível salvar em unidade removível {0}: {1}" + +msgctxt "@info:text" +msgid "Could not upload the data to the printer." +msgstr "Não foi possível transferir os dados para a impressora." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"Sem permissão para executar processo." + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O sistema operacional está bloqueando (antivírus?)" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Não foi possível iniciar EnginePlugin: {self._plugin_id}\n" +"O recurso está temporariamente indisponível" + +msgctxt "@title:window" +msgid "Crash Report" +msgstr "Relatório de Problema" + +msgctxt "@title:window" +msgid "Create Profile" +msgstr "Criar Perfil" + +msgctxt "@text" +msgid "Create a free UltiMaker Account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@button" +msgid "Create a free UltiMaker account" +msgstr "Criar uma conta UltiMaker gratuita" + +msgctxt "@info:tooltip" +msgid "Create a volume in which supports are not printed." +msgstr "Cria um volume em que os suportes não são impressos." + +msgctxt "@action:ComboBox Save settings in a new profile" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:button" +msgid "Create new" +msgstr "Criar novo" + +msgctxt "@button" +msgid "Create new" +msgstr "Criar novos" + +msgctxt "@action:tooltip" +msgid "Create new profile from current settings/overrides" +msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais" + +msgctxt "@tooltip:button" +msgid "Create print projects in Digital Library." +msgstr "Cria projetos de impressão na Digital Library." + +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares" + +msgctxt "@info:backup_status" +msgid "Creating your backup..." +msgstr "Criando seu backup..." + +msgctxt "@item:inlistbox" +msgid "Cura 15.04 profiles" +msgstr "Perfis do Cura 15.04" + +msgctxt "@title:window" +msgid "Cura Backups" +msgstr "Backups do Cura" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Backups Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Profile" +msgstr "Perfil do Cura" + +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis do Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de Perfis do Cura" + +msgctxt "@item:inlistbox" +msgid "Cura Project 3MF file" +msgstr "Arquivo de Projeto 3MF do Cura" + +msgctxt "@backuplist:label" +msgid "Cura Version" +msgstr "Versão do Cura" + +msgctxt "@title:window" +msgid "Cura can't start" +msgstr "O Cura não consegue iniciar" + +#, python-brace-format +msgctxt "@info:status" +msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." +msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}." + +msgctxt "@info:credit" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n" +"Cura orgulhosamente usa os seguintes projetos open-source:" + +msgctxt "@label" +msgid "Cura language" +msgstr "Linguagem do Cura" + +msgctxt "@label Cura version number" +msgid "Cura version" +msgstr "Versão do Cura" + +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + +msgctxt "@label" +msgid "Currency:" +msgstr "Moeda:" + +msgctxt "@title:column" +msgid "Current" +msgstr "Atual" + +msgctxt "@title:column" +msgid "Current changes" +msgstr "Alterações atuais" + +msgctxt "@header" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@title:tab" +msgid "Custom" +msgstr "Personalizado" + +msgctxt "@label" +msgid "Custom Material" +msgstr "Material Personalizado" + +msgctxt "@label" +msgid "Custom profile" +msgstr "Perfil personalizado" + +msgctxt "@info" +msgid "Custom profile name:" +msgstr "Nome de perfil personalizado:" + +msgctxt "@label" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@label:header" +msgid "Custom profiles" +msgstr "Perfis personalizados" + +msgctxt "@action:inmenu menubar:edit" +msgid "Cut" +msgstr "Cortar" + +msgctxt "@item:inlistbox" +msgid "Cutting mesh" +msgstr "Malha de corte" + +msgctxt "@item:inlistbox" +msgid "Darker is higher" +msgstr "Mais escuro é mais alto" + +msgctxt "@info:title" +msgid "Data Sent" +msgstr "Dados Enviados" + +msgctxt "@label Description for application dependency" +msgid "Data interchange format" +msgstr "Formato de Intercâmbio de Dados" + +msgctxt "@button" +msgid "Decline" +msgstr "Recusar" + +msgctxt "@button" +msgid "Decline and close" +msgstr "Rejeitar e fechar" + +msgctxt "@button" +msgid "Decline and remove from account" +msgstr "Recusar e remover da conta" + +msgctxt "@info:No intent profile selected" +msgid "Default" +msgstr "Default" + +msgctxt "@label" +msgid "Default" +msgstr "Default" + +msgctxt "@window:text" +msgid "Default behavior for changed setting values when switching to a different profile: " +msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " + +msgctxt "@info:tooltip" +msgid "Default behavior when opening a project file" +msgstr "Comportamento default ao abrir um arquivo de projeto" + +msgctxt "@window:text" +msgid "Default behavior when opening a project file: " +msgstr "Comportamento default ao abrir um arquivo de projeto: " + +msgctxt "@action:button" +msgid "Defaults" +msgstr "Defaults" + +msgctxt "@label" +msgid "Defines the thickness of your part side walls, roof and floor." +msgstr "Define a espessura das paredes laterais, teto e base da sua peça." + +msgctxt "@label" +msgid "Delete" +msgstr "Remover" + +msgctxt "@dialog:title" +msgid "Delete Backup" +msgstr "Apagar o Backup" + +msgctxt "@action:inmenu" +msgid "Delete Model" +msgstr "Remover Modelo" + +msgctxt "@action:inmenu menubar:edit" +msgid "Delete Selected" +msgstr "Remover Selecionados" + +msgctxt "@window:title" +msgid "Delete print job" +msgstr "Remover trabalho de impressão" + +msgctxt "@label" +msgid "Density" +msgstr "Densidade" + +msgctxt "@label Description for development tool" +msgid "Dependency and package manager" +msgstr "Gestor de pacote e dependência" + +msgctxt "@action:label" +msgid "Depth (mm)" +msgstr "Profundidade (mm)" + +msgctxt "@action:label" +msgid "Derivative from" +msgstr "Derivado de" + +msgctxt "@header" +msgid "Description" +msgstr "Descrição" + +msgctxt "@label" +msgid "Description" +msgstr "Descrição" + +msgctxt "@action:button" +msgid "Details" +msgstr "Detalhes" + +msgctxt "@label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "@button" +msgid "Disable" +msgstr "Desabilitar" + +msgctxt "@action:inmenu" +msgid "Disable Extruder" +msgstr "Desabilitar Extrusor" + +msgctxt "@option:discardOrKeep" +msgid "Discard and never ask again" +msgstr "Descartar e não perguntar novamente" + +msgctxt "@action:button" +msgid "Discard changes" +msgstr "Descartar alterações" + +msgctxt "@action:button" +msgid "Discard current changes" +msgstr "Descartar ajustes atuais" + +msgctxt "@title:window" +msgid "Discard or Keep changes" +msgstr "Descartar ou Manter alterações" + +msgctxt "@button" +msgid "Dismiss" +msgstr "Dispensar" + +msgctxt "@label" +msgid "Display Name" +msgstr "Exibir Nome" + +msgctxt "@option:check" +msgid "Display model errors" +msgstr "Exibir erros de modelo" + +msgctxt "@option:check" +msgid "Display overhang" +msgstr "Exibir seções pendentes" + +msgctxt "@info:option_text" +msgid "Do not show this message again" +msgstr "Não mostrar essa mensagem novamente" + +msgctxt "@info:generic" +msgid "Do you want to sync material and software packages with your account?" +msgstr "Você quer sincronizar os pacotes de material e software com sua conta?" + +msgctxt "@action:label" +msgid "Don't show project summary on save again" +msgstr "Não exibir resumo do projeto ao salvar novamente" + +msgctxt "@action:menu" +msgid "Don't show this setting" +msgstr "Não exibir este ajuste" + +msgctxt "@label" +msgid "Don't support overlaps" +msgstr "Não suportar sobreposições" + +msgctxt "@button" +msgid "Done" +msgstr "Feito" + +msgctxt "@button" +msgid "Downgrade" +msgstr "Downgrade" + +msgctxt "@button" +msgid "Downgrading..." +msgstr "Fazendo downgrade..." + +msgctxt "@label" +msgid "Draft" +msgstr "Rascunho" + +msgctxt "@action:button" +msgid "Duplicate" +msgstr "Duplicar" + +msgctxt "@title:window" +msgid "Duplicate Profile" +msgstr "Duplicar Perfil" + +msgctxt "@backup_limit_info" +msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones." +msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos." + +msgctxt "@title:menu menubar:toplevel" +msgid "E&xtensions" +msgstr "E&xtensões" + +msgctxt "@action:button" +msgid "Edit" +msgstr "Editar" + +msgctxt "@action:button" +msgid "Eject" +msgstr "Ejetar" + +#, python-brace-format +msgctxt "@action" +msgid "Eject removable device {0}" +msgstr "Ejetar dispositivo removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Ejected {0}. You can now safely remove the drive." +msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura." + +msgctxt "@label" +msgid "Empty" +msgstr "Vazio" + +msgctxt "@button" +msgid "Enable" +msgstr "Habilitar" + +msgctxt "@action:inmenu" +msgid "Enable Extruder" +msgstr "Habilitar Extrusor" + +msgctxt "@label" +msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." +msgstr "Habilita a impressão de brim ou raft. Adicionará uma área plana em volta do objeto ou abaixo dele que seja fácil de destacar depois. Desabilitar este ajuste resulta em um skirt em volta do objeto por default." + +msgctxt "@label" +msgid "Enabled" +msgstr "Habilitado" + +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D." + +msgctxt "@title:label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "@label" +msgid "End-to-end solution for fused filament 3D printing." +msgstr "Solução completa para impressão 3D com filamento fundido." + +msgctxt "@info:title" +msgid "EnginePlugin" +msgstr "EnginePlugin" + +msgctxt "@label" +msgid "Engineering" +msgstr "Engenharia" + +msgctxt "@option:check" +msgid "Ensure models are kept apart" +msgstr "Assegurar que os modelos sejam mantidos separados" + +msgctxt "@label" +msgid "Enter the IP address of your printer on the network." +msgstr "Entre o endereço IP da sua impressora na rede." + +msgctxt "@text" +msgid "Enter your printer's IP address." +msgstr "Entre o endereço IP de sua impressora." + +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + +msgctxt "@title:groupbox" +msgid "Error traceback" +msgstr "Traceback do erro" + +msgctxt "@label" +msgid "Estimated time left" +msgstr "Tempo restante estimado" + +msgctxt "@action:inmenu" +msgid "Exit Full Screen" +msgstr "Sair da Tela Cheia" + +msgctxt "@label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "@action:button" +msgid "Export" +msgstr "Exportar" + +msgctxt "@title:window" +msgid "Export All Materials" +msgstr "Exportar Todos Os Materiais" + +msgctxt "@title:window" +msgid "Export Material" +msgstr "Exportar Material" + +msgctxt "@title:window" +msgid "Export Profile" +msgstr "Exportar Perfil" + +msgctxt "@action:inmenu menubar:file" +msgid "Export Selection..." +msgstr "Exportar Seleção..." + +msgctxt "@button" +msgid "Export material archive" +msgstr "Exportar arquivo de material" + +msgctxt "@info:title" +msgid "Export succeeded" +msgstr "Exportação concluída" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Exported profile to {0}" +msgstr "Perfil exportado para {0}" + +msgctxt "@tooltip:button" +msgid "Extend UltiMaker Cura with plugins and material profiles." +msgstr "Estende o UltiMaker Cura com complementos e perfis de material." + +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite scripts criados por usuários para pós-processamento" + +msgctxt "@label" +msgid "Extruder" +msgstr "Extrusor" + +msgctxt "@action:label" +msgid "Extruder %1" +msgstr "Extrusor %1" + +msgctxt "@title:label" +msgid "Extruder End G-code" +msgstr "G-Code Final do Extrusor" + +msgctxt "@title:label" +msgid "Extruder Start G-code" +msgstr "G-Code Inicial do Extrusor" + +msgctxt "@info:title" +msgid "Extruder(s) Disabled" +msgstr "Extrusor(es) Desabilitado(s)" + +msgctxt "@label:status" +msgid "Failed" +msgstr "Falhado" + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory to sync materials with some of the printers." +msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras." + +msgctxt "@text:error" +msgid "Failed to connect to Digital Factory." +msgstr "Falha em conectar à Digital Factory." + +msgctxt "@text:error" +msgid "Failed to create archive of materials to sync with printers." +msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras." + +#, python-brace-format +msgctxt "@info:status" +msgid "Failed to eject {0}. Another program may be using the drive." +msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade." + +msgctxt "@info:status Don't translate the XML tags and !" +msgid "Failed to export material to %1: %2" +msgstr "Falha em exportar material para %1: %2" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Failed to export profile to {0}: {1}" +msgstr "Falha ao exportar perfil para {0}: {1}" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to export profile to {0}: Writer plugin reported failure." +msgstr "Falha ao exportar perfil para {0}: complemento escritor relatou erro." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tag !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}:" +msgstr "Erro ao importar perfil de {0}:" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "Failed to import profile from {0}: {1}" +msgstr "Falha ao importar perfil de {0}: {1}" + +msgctxt "@button" +msgid "Failed to load packages:" +msgstr "Falha em carregar pacotes:" + +msgctxt "@text:error" +msgid "Failed to load the archive of materials to sync it with printers." +msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras." + +msgctxt "@message:title" +msgid "Failed to save material archive" +msgstr "Falha em salvar o arquivo de materiais" + +msgctxt "@label:category menu label" +msgid "Favorites" +msgstr "Favoritos" + +msgctxt "@label" +msgid "Filament Cost" +msgstr "Custo do Filamento" + +msgctxt "@label" +msgid "Filament length" +msgstr "Comprimento do Filamento" + +msgctxt "@label" +msgid "Filament weight" +msgstr "Peso do Filamento" + +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "O Arquivo Já Existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Arquivo Salvo" + +#, python-brace-format +msgctxt "@info:status" +msgid "File {0} does not contain any valid profile." +msgstr "Arquivo {0} não contém nenhum perfil válido." + +msgctxt "@label:textbox" +msgid "Filter..." +msgstr "Filtrar..." + +msgctxt "@info:title" +msgid "Finding Location" +msgstr "Buscando Localização" + +msgctxt "@info:status" +msgid "Finding new location for objects" +msgstr "Achando novos lugares para objetos" + +msgctxt "@action:button" +msgid "Finish" +msgstr "Finalizar" + +msgctxt "@label:status" +msgid "Finished" +msgstr "Finalizado" + +msgctxt "@label:status" +msgid "Finishes %1 at %2" +msgstr "Termina %1 em %2" + +msgctxt "@title:window" +msgid "Firmware Update" +msgstr "Atualização do Firmware" + +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador de Atualizações de Firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de Firmware" + +msgctxt "@label" +msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." +msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware." + +msgctxt "@label" +msgid "Firmware can not be updated because there is no connection with the printer." +msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora." + +msgctxt "@label" +msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." +msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar." + +msgctxt "@label" +msgid "Firmware update completed." +msgstr "Atualização do Firmware completada." + +msgctxt "@label" +msgid "Firmware update failed due to an communication error." +msgstr "A atualização de firmware falhou devido a um erro de comunicação." + +msgctxt "@label" +msgid "Firmware update failed due to an input/output error." +msgstr "A atualização de firmware falhou devido a um erro de entrada e saída." + +msgctxt "@label" +msgid "Firmware update failed due to an unknown error." +msgstr "A atualização de Firmware falhou devido a um erro desconhecido." + +msgctxt "@label" +msgid "Firmware update failed due to missing firmware." +msgstr "A atualização de firmware falhou devido a firmware não encontrado." + +msgctxt "@label" +msgid "Firmware version" +msgstr "Versão do firmware" + +msgctxt "@label" +msgid "First available" +msgstr "Primeira disponível" + +msgctxt "@label:listbox" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "@text In the UI this is followed by a list of steps the user needs to take." +msgid "Follow the following steps to load the new material profiles to your printer." +msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora." + +msgctxt "@info" +msgid "Follow the procedure to add a new printer" +msgstr "Siga o procedimento para adicionar uma nova impressora" + +msgctxt "@text" +msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." +msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." + +msgctxt "@label" +msgid "Font" +msgstr "Fonte" + +msgctxt "@label" +msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." +msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." + +msgctxt "@info:tooltip" +msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly." +msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente." + +msgctxt "@info:tooltip" +msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model." +msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado." + +msgctxt "@option:check" +msgid "Force layer view compatibility mode (restart required)" +msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)" + +msgctxt "@action:inmenu menubar:view" +msgid "Front View" +msgstr "Visão Frontal" + +msgctxt "@info:tooltip" +msgid "Front View" +msgstr "Viso de Frente" + +msgctxt "@item:inlistbox" +msgid "G File" +msgstr "Arquivo G" + +msgctxt "@info:title" +msgid "G-code Details" +msgstr "Detalhes do G-Code" + +msgctxt "@item:inlistbox" +msgid "G-code File" +msgstr "Arquivo G-Code" + +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de Perfil de G-Code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-Code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Gerador de G-Code" + +msgctxt "@label" +msgid "G-code flavor" +msgstr "Sabor de G-Code" + +msgctxt "@label Description for application component" +msgid "G-code generator" +msgstr "Gerador de G-Code" + +msgctxt "@error:not supported" +msgid "GCodeGzWriter does not support text mode." +msgstr "O GCodeGzWriter não suporta modo binário." + +msgctxt "@error:not supported" +msgid "GCodeWriter does not support non-text mode." +msgstr "O GCodeWriter não suporta modo binário." + +msgctxt "@item:inlistbox" +msgid "GIF Image" +msgstr "Imagem GIF" + +msgctxt "@label Description for application dependency" +msgid "GUI framework" +msgstr "Framework Gráfica" + +msgctxt "@label Description for application dependency" +msgid "GUI framework bindings" +msgstr "Ligações da Framework Gráfica" + +msgctxt "@label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + +msgctxt "@label" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." +msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "@label Description for development tool" +msgid "Generating Windows installers" +msgstr "Gerando instaladores Windows" + +msgctxt "@label:category menu label" +msgid "Generic" +msgstr "Genérico" + +msgctxt "@option:check" +msgid "Get notifications for plugin updates" +msgstr "Ter notificações para atualizações de complementos" + +msgctxt "@action" +msgid "Get started" +msgstr "Começar" + +msgctxt "@title:tab" +msgid "Global Settings" +msgstr "Ajustes globais" + +msgctxt "@label Description for application component" +msgid "Graphical user interface" +msgstr "Interface Gráfica de usuário" + +msgctxt "@label" +msgid "Grid Placement" +msgstr "Posicionamento em Grade" + +#, python-brace-format +msgctxt "@label" +msgid "Group #{group_nr}" +msgstr "Grupo #{group_nr}" + +msgctxt "@tooltip of pre-heat" +msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print." +msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir." + +msgctxt "@tooltip of pre-heat" +msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print." +msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir." + +msgctxt "@label" +msgid "Heated Build Plate (official kit or self-built)" +msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)" + +msgctxt "@label" +msgid "Heated bed" +msgstr "Mesa aquecida" + +msgctxt "@label" +msgid "Heated build volume" +msgstr "Volume de construção aquecido" + +msgctxt "@action:label" +msgid "Height (mm)" +msgstr "Altura (mm)" + +msgctxt "@label" +msgid "Helpers" +msgstr "Assistentes" + +msgctxt "@label" +msgid "Hide all connected printers" +msgstr "Omitir todas as impressoras conectadas" + +msgctxt "@action:menu" +msgid "Hide this setting" +msgstr "Ocultar este ajuste" + +msgctxt "@info:tooltip" +msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry." +msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes." + +msgctxt "@info:tooltip" +msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." +msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente." + +msgctxt "@button" +msgid "How to load new material profiles to my printer" +msgstr "Como carregar novos perfis de material na minha impressora" + +msgctxt "@action:button" +msgid "How to update" +msgstr "Como atualizar" + +msgctxt "@text:window" +msgid "I don't want to send anonymous data" +msgstr "Recusar enviar dados anônimos" + +msgctxt "@label:status" +msgid "Idle" +msgstr "Ocioso" + +msgctxt "@label" +msgid "If you are trying to add a new UltiMaker printer to Cura" +msgstr "Se você está tentando adicionar uma nova impressora UltiMaker ao Cura" + +msgctxt "@label" +msgid "If your printer is not listed, read the network printing troubleshooting guide" +msgstr "Se sua impressora não está listada, leia o guia de resolução de problemas de impressão em rede" + +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de Imagens" + +msgctxt "@action:button" +msgid "Import" +msgstr "Importar" + +msgctxt "@title:window" +msgid "Import Material" +msgstr "Importar Material" + +msgctxt "@title:window" +msgid "Import Profile" +msgstr "Importar Perfil" + +msgctxt "@action:button" +msgid "Import all as models" +msgstr "Importar todos como modelos" + +msgctxt "@action:button" +msgid "Import models" +msgstr "Importar modelos" + +msgctxt "@label:MonitorStatus" +msgid "In maintenance. Please check the printer" +msgstr "Em manutenção. Por favor verifique a impressora" + +msgctxt "@info" +msgid "In order to monitor your print from Cura, please connect the printer." +msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora." + +msgctxt "@label" +msgid "In order to start using Cura you will need to configure a printer." +msgstr "Para poder iniciar o uso do Cura você precisará configurar uma impressora:" + +msgctxt "@button" +msgid "In order to use the package you will need to restart Cura" +msgstr "Para usar o pacote você precisará reiniciar o Cura" + +msgctxt "@label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "@tooltip" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill_sparse_density description" +msgid "Infill Density" +msgstr "Densidade de Preenchimento" + +msgctxt "@action:label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "@item:inlistbox" +msgid "Infill mesh only" +msgstr "Somente malha de preenchimento" + +msgctxt "@label" +msgid "Infill overlapping with this model is modified." +msgstr "Preenchimento se sobrepondo a este modelo foi modificado." + +msgctxt "@info:title" +msgid "Information" +msgstr "Informação" + +msgctxt "@title" +msgid "Information" +msgstr "Informação" + +msgctxt "@info:progress" +msgid "Initializing Active Machine..." +msgstr "Inicializando Máquina Ativa..." + +msgctxt "@info:progress" +msgid "Initializing build volume..." +msgstr "Inicializando volume de impressão..." + +msgctxt "@info:progress" +msgid "Initializing engine..." +msgstr "Inicializando motor..." + +msgctxt "@info:progress" +msgid "Initializing machine manager..." +msgstr "Inicializando gestor de máquinas..." + +msgctxt "@label" +msgid "Inner Wall" +msgstr "Parede Interna" + +msgctxt "@tooltip" +msgid "Inner Walls" +msgstr "Paredes Internas" + +msgctxt "@text" +msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles." +msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material." + +msgctxt "@button" +msgid "Install" +msgstr "Instalar" + +msgctxt "@header" +msgid "Install Materials" +msgstr "Instalar Materiais" + +msgctxt "@window:title" +msgid "Install Package" +msgstr "Instalar Pacote" + +msgctxt "@action:button" +msgid "Install Packages" +msgstr "Instalar Pacotes" + +msgctxt "@header" +msgid "Install Packages" +msgstr "Instala Pacotes" + +msgctxt "@header" +msgid "Install Plugins" +msgstr "Instalar Complementos" + +msgctxt "@action:button" +msgid "Install missing packages" +msgstr "Instalar pacotes faltantes" + +msgctxt "@title" +msgid "Install missing packages" +msgstr "Instala pacotes faltantes" + +msgctxt "@label" +msgid "Install missing packages from project file." +msgstr "Instala pacotes faltantes do arquivo de projeto." + +msgctxt "@button" +msgid "Install pending updates" +msgstr "Instalação aguardando atualizações" + +msgctxt "@label" +msgid "Installed Materials" +msgstr "Materiais Instalados" + +msgctxt "@label" +msgid "Installed Plugins" +msgstr "Complementos Instalados" + +msgctxt "@button" +msgid "Installing..." +msgstr "Instalando..." + +msgctxt "@action:label" +msgid "Intent" +msgstr "Objetivo" + +msgctxt "@label" +msgid "Interface" +msgstr "Interface" + +msgctxt "@label Description for application component" +msgid "Interprocess communication library" +msgstr "Biblioteca de comunicação interprocessos" + +msgctxt "@title:window" +msgid "Invalid IP address" +msgstr "Endereço IP inválido" + +msgctxt "@info:status" +msgid "Invalid file URL:" +msgstr "URL de arquivo inválida:" + +msgctxt "@action:button" +msgid "Invert the direction of camera zoom." +msgstr "Inverter a direção da ampliação de câmera." + +msgctxt "@label" +msgid "Is printed as support." +msgstr "Está impresso como suporte." + +msgctxt "@text" +msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." +msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente." + +msgctxt "@item:inlistbox" +msgid "JPEG Image" +msgstr "Imagem JPEG" + +msgctxt "@item:inlistbox" +msgid "JPG Image" +msgstr "Imagem JPG" + +msgctxt "@label Description for application dependency" +msgid "JSON parser" +msgstr "Parser JSON" + +msgctxt "@label" +msgid "Job Name" +msgstr "Nome do Trabalho" + +msgctxt "@label" +msgid "Jog Distance" +msgstr "Distância de Trote" + +msgctxt "@label" +msgid "Jog Position" +msgstr "Posição de Trote" + +msgctxt "@option:discardOrKeep" +msgid "Keep and never ask again" +msgstr "Manter e não perguntar novamente" + +msgctxt "@action:button" +msgid "Keep changes" +msgstr "Manter alterações" + +msgctxt "@action:button" +msgid "Keep printer configurations" +msgstr "Manter configurações da impressora" + +msgctxt "@action:menu" +msgid "Keep this setting visible" +msgstr "Manter este ajuste visível" + +msgctxt "@label The argument is a timestamp" +msgid "Last update: %1" +msgstr "Última atualização: %1" + +msgctxt "@label:listbox" +msgid "Layer Thickness" +msgstr "Espessura de Camada" + +msgctxt "@item:inlistbox" +msgid "Layer view" +msgstr "Visão de Camadas" + +msgctxt "@button:label" +msgid "Learn More" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn how to connect your printer to Digital Factory" +msgstr "Aprenda como conectar sua impressora à Digital Factory" + +msgctxt "@tooltip:button" +msgid "Learn how to get started with UltiMaker Cura." +msgstr "Saiba como começar com o UltiMaker Cura." + +msgctxt "@action" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button" +msgid "Learn more" +msgstr "Saiba mais" + +msgctxt "@button:label" +msgid "Learn more" +msgstr "Saber mais" + +msgctxt "@action:button" +msgid "Learn more about Cura print profiles" +msgstr "Saber mais sobre perfis de impressão do Cura" + +msgctxt "@button" +msgid "Learn more about adding printers to Cura" +msgstr "Saiba mais sobre adicionar impressoras ao Cura" + +msgctxt "@label" +msgid "Learn more about project packages." +msgstr "Aprenda mais sobre pacotes de projeto" + +msgctxt "@action:inmenu menubar:view" +msgid "Left Side View" +msgstr "Visão do Lado Esquerdo" + +msgctxt "@info:tooltip" +msgid "Left View" +msgstr "Visão à Esquerda" + +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de Perfis de Cura Legado" + +msgctxt "@tooltip:button" +msgid "Let developers know that something is going wrong." +msgstr "Deixe os desenvolvedores saberem que algo está errado." + +msgctxt "@action" +msgid "Level build plate" +msgstr "Nivelar mesa" + +msgctxt "@item:inlistbox" +msgid "Lighter is higher" +msgstr "Mais claro é mais alto" + +msgctxt "@label:listbox" +msgid "Line Type" +msgstr "Tipo de Linha" + +msgctxt "@label:listbox" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "@item:inlistbox" +msgid "Linear" +msgstr "Linear" + +msgctxt "@label Description for development tool" +msgid "Linux cross-distribution application deployment" +msgstr "Implementação de aplicação multidistribuição em Linux" + +msgctxt "@label" +msgid "Load %3 as material %1 (This cannot be overridden)." +msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." + +msgctxt "@button" +msgid "Load more" +msgstr "Carregar mais" + +msgctxt "@button" +msgid "Loading" +msgstr "Carregando" + +msgctxt "@action:warning" +msgid "Loading a project will clear all models on the build plate." +msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão." + +msgctxt "@label" +msgid "Loading available configurations from the printer..." +msgstr "Carregando configurações disponíveis da impressora..." + +msgctxt "@info:progress" +msgid "Loading interface..." +msgstr "Carregando interface..." + +msgctxt "@info:progress" +msgid "Loading machines..." +msgstr "Carregando máquinas..." + +msgctxt "@label:status" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@title" +msgid "Loading..." +msgstr "Carregando..." + +msgctxt "@label:category menu label" +msgid "Local printers" +msgstr "Impressoras locais" + +msgctxt "@info:title" +msgid "Log-in failed" +msgstr "Login falhou" + +msgctxt "@info:title" +msgid "Login failed" +msgstr "Login falhou" + +msgctxt "@title:groupbox" +msgid "Logs" +msgstr "Registros" + +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes" + +msgctxt "@label:MonitorStatus" +msgid "Lost connection with the printer" +msgstr "A conexão à impressora foi perdida" + +msgctxt "@action" +msgid "Machine Settings" +msgstr "Ajustes da Máquina" + +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Ação de Ajustes de Máquina" + +msgctxt "@backuplist:label" +msgid "Machines" +msgstr "Máquinas" + +msgctxt "@text" +msgid "Make sure all your printers are turned ON and connected to Digital Factory." +msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory." + +msgctxt "@info:generic" +msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." +msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." + +msgctxt "@action:inmenu" +msgid "Manage Materials..." +msgstr "Administrar Materiais..." + +msgctxt "@action:inmenu menubar:printer" +msgid "Manage Pr&inters..." +msgstr "Adm&inistrar Impressoras..." + +msgctxt "@action:inmenu menubar:profile" +msgid "Manage Profiles..." +msgstr "Administrar perfis..." + +msgctxt "@action:inmenu" +msgid "Manage Setting Visibility..." +msgstr "Gerenciar Visibilidade dos Ajustes..." + +msgctxt "@item:inmenu" +msgid "Manage backups" +msgstr "Gerenciar backups" + +msgctxt "@label link to connect manager" +msgid "Manage in browser" +msgstr "Gerir no navegador" + +msgctxt "@header" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@info:tooltip" +msgid "Manage packages" +msgstr "Gerir pacotes" + +msgctxt "@action" +msgid "Manage print jobs" +msgstr "Gerenciar trabalhos de impressão" + +msgctxt "@label link to Connect and Cloud interfaces" +msgid "Manage printer" +msgstr "Gerir Impressora" + +msgctxt "@button" +msgid "Manage printers" +msgstr "Gerenciar impressoras" + +msgctxt "@text" +msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." +msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente." + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gerencia extensões à aplicação e permite navegar extensões do website da UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gerencia conexões de rede com as impressoras de rede da UltiMaker." + +msgctxt "@label" +msgid "Manufacturer" +msgstr "Fabricante" + +msgctxt "@action:button" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "@label" +msgid "Marketplace" +msgstr "Mercado" + +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + +msgctxt "@action:label" +msgid "Material" +msgstr "Material" + +msgctxt "@label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:category menu label" +msgid "Material" +msgstr "Material" + +msgctxt "@label:listbox" +msgid "Material Color" +msgstr "Cor do Material" + +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Material" + +msgctxt "@label" +msgid "Material Type" +msgstr "Tipo de Material" + +msgctxt "@title" +msgid "Material color picker" +msgstr "Seletor de cores do material" + +msgctxt "@label" +msgid "Material estimation" +msgstr "Estimativa de material" + +msgctxt "@title:header" +msgid "Material profiles successfully synced with the following printers:" +msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:" + +msgctxt "@action:label" +msgid "Material settings" +msgstr "Ajustes de material" + +msgctxt "@backuplist:label" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@button" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@title:tab" +msgid "Materials" +msgstr "Materiais" + +msgctxt "@label" +msgid "Materials compatible with active printer:" +msgstr "Materiais compatíveis com a impressora ativa:" + +msgctxt "@label" +msgid "Mesh Type" +msgstr "Tipo de Malha" + +msgctxt "@action:label" +msgid "Mode" +msgstr "Modo" + +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelo" + +msgctxt "@info:title" +msgid "Model Errors" +msgstr "Erros de Modelo" + +msgctxt "@item:inmenu" +msgid "Modify G-Code" +msgstr "Modificar G-Code" + +msgctxt "@label" +msgid "Modify settings for overlaps" +msgstr "Modificar ajustes para sobreposições" + +msgctxt "@item:inmenu" +msgid "Monitor" +msgstr "Monitor" + +msgctxt "name" +msgid "Monitor Stage" +msgstr "Estágio de Monitor" + +msgctxt "@action:button" +msgid "Monitor print" +msgstr "Monitorar impressão" + +msgctxt "@tooltip:button" +msgid "Monitor print jobs and reprint from your print history." +msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico." + +msgctxt "@tooltip:button" +msgid "Monitor printers in Ultimaker Digital Factory." +msgstr "Monitora as impressoras na Ultimaker Digital Factory." + +msgctxt "@info" +msgid "Monitor your printers from everywhere using Ultimaker Digital Factory" +msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory" + +msgctxt "@title:window" +msgid "More information on anonymous data collection" +msgstr "Mais informações em coleção anônima de dados" + +msgctxt "@window:title" +msgid "Move print job to top" +msgstr "Move o trabalho de impressão para o topo da fila" + +msgctxt "@action:button" +msgid "Move to Next Position" +msgstr "Mover pra a Posição Seguinte" + +msgctxt "@label" +msgid "Move to top" +msgstr "Mover para o topo" + +msgctxt "@info:tooltip" +msgid "Moves the camera so the model is in the center of the view when a model is selected" +msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado" + +msgctxt "@action:inmenu menubar:edit" +msgid "Multiply Selected" +msgstr "Multiplicar Selecionados" + +msgctxt "@title:window" +msgid "Multiply Selected Model" +msgid_plural "Multiply Selected Models" +msgstr[0] "Multiplicar Modelo Selecionado" +msgstr[1] "Multiplicar Modelos Selecionados" + +msgctxt "@info" +msgid "Multiply selected item and place them in a grid of build plate." +msgstr "Multiplica o item selecionado e o dispõe em grade na plataforma de impressão." + +msgctxt "@info:status" +msgid "Multiplying and placing objects" +msgstr "Multiplicando e colocando objetos" + +msgctxt "@title" +msgid "My Backups" +msgstr "Meus backups" + +msgctxt "@label:button" +msgid "My printers" +msgstr "Minhas impressoras" + +msgctxt "@action:label" +msgid "Name" +msgstr "Nome" + +msgctxt "@label:category menu label" +msgid "Network enabled printers" +msgstr "Impressoras habilitadas pela rede" + +msgctxt "@info:title" +msgid "Network error" +msgstr "Erro de rede" + +#, python-format +msgctxt "@info:title The %s gets replaced with the printer name." +msgid "New %s stable firmware available" +msgstr "Novo firmware estável de %s disponível" + +msgctxt "@textfield:placeholder" +msgid "New Custom Profile" +msgstr "Novo Perfil Personalizado" + +msgctxt "@label" +msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." +msgstr "Novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." + +#, python-brace-format +msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" +msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." +msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}." + +msgctxt "@action:button" +msgid "New materials installed" +msgstr "Novos materiais instalados" + +msgctxt "info:status" +msgid "New printer detected from your Ultimaker account" +msgid_plural "New printers detected from your Ultimaker account" +msgstr[0] "Nova impressora detectada na sua conta Ultimaker" +msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker" + +msgctxt "@title:window" +msgid "New project" +msgstr "Novo projeto" + +msgctxt "@action:button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@button" +msgid "Next" +msgstr "Próximo" + +msgctxt "@info:title" +msgid "Nightly build" +msgstr "Compilação noturna" + +msgctxt "@info" +msgid "No" +msgstr "Não" + +msgctxt "@info" +msgid "No compatibility information" +msgstr "Sem informação de compatibilidade" + +msgctxt "@description" +msgid "No compatible printers, that are currently online, were found." +msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento." + +msgctxt "@label" +msgid "No cost estimation available" +msgstr "Sem estimativa de custo disponível" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "No custom profile to import in file {0}" +msgstr "Não há perfil personalizado a importar no arquivo {0}" + +msgctxt "@label" +msgid "No items to select from" +msgstr "Sem itens para selecionar" + +msgctxt "@info:title" +msgid "No layers to show" +msgstr "Não há camadas a exibir" + +msgctxt "@message" +msgid "No more results to load" +msgstr "Não há mais resultados a carregar" + +msgctxt "@error:zip" +msgid "No permission to write the workspace here." +msgstr "Sem permissão para gravar o espaço de trabalho aqui." + +msgctxt "@title:header" +msgid "No printers found" +msgstr "Nenhuma impressora encontrada" + +msgctxt "@label" +msgid "No printers found in your account?" +msgstr "Nenhuma impressora encontrada em sua conta?" + +msgctxt "@message:text %1 is the name the printer uses for 'nozzle'." +msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration." +msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração." + +msgctxt "@message" +msgid "No results found with current filter" +msgstr "Não há resultados encontrados com o filtro atual" + +msgctxt "@label" +msgid "No time estimation available" +msgstr "Sem estimativa de tempo disponível" + +msgctxt "@button" +msgid "Non UltiMaker printer" +msgstr "Impressora Não-UltiMaker" + +msgctxt "@info No materials" +msgid "None" +msgstr "Nenhum" + +msgctxt "@label" +msgid "Normal model" +msgstr "Modelo normal" + +msgctxt "@info:title" +msgid "Not a group host" +msgstr "Não é host de grupo" + +msgctxt "@label:MonitorStatus" +msgid "Not connected to a printer" +msgstr "Não conectado a nenhuma impressora" + +msgctxt "@action:label" +msgid "Not in profile" +msgstr "Ausente no perfil" + +msgctxt "@menuitem" +msgid "Not overridden" +msgstr "Não sobreposto" + +msgctxt "@info:not supported profile" +msgid "Not supported" +msgstr "Não Suportado" + +msgctxt "@label" +msgid "Not yet initialized" +msgstr "Ainda não inicializado" + +msgctxt "@info:status" +msgid "Nothing is shown because you need to slice first." +msgstr "Nada está exibido porque você precisa fatiar primeiro." + +msgctxt "@label" +msgid "Nozzle" +msgstr "Bico" + +msgctxt "@title:label" +msgid "Nozzle Settings" +msgstr "Ajustes do Bico" + +msgctxt "@label" +msgid "Nozzle offset X" +msgstr "Deslocamento X do Bico" + +msgctxt "@label" +msgid "Nozzle offset Y" +msgstr "Deslocamento Y do Bico" + +msgctxt "@label" +msgid "Nozzle size" +msgstr "Tamanho do bico" + +msgctxt "@label" +msgid "Number of Copies" +msgstr "Número de Cópias" + +msgctxt "@label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +msgctxt "@action:button" +msgid "OK" +msgstr "Ok" + +msgctxt "@label" +msgid "OS language" +msgstr "Linguagem do SO" + +msgctxt "@label" +msgid "Object list" +msgstr "Lista de objetos" + +msgctxt "@label:Should be short" +msgid "Off" +msgstr "Off" + +msgctxt "@label:Should be short" +msgid "On" +msgstr "On" + +msgctxt "@label" +msgid "Only Show Top Layers" +msgstr "Somente Exibir Camadas Superiores" + +#, python-brace-format +msgctxt "@info:status" +msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" +msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}" + +msgctxt "@action:button" +msgid "Open" +msgstr "Abrir" + +msgctxt "@title:menu menubar:file" +msgid "Open &Recent" +msgstr "Abrir &Recente" + +msgctxt "@item:inlistbox 'Open' is part of the name of this file format." +msgid "Open Compressed Triangle Mesh" +msgstr "Open Compressed Triangle Mesh" + +msgctxt "@title:window" +msgid "Open File(s)" +msgstr "Abrir Arquivo(s)" + +msgctxt "@title:menu menubar:file" +msgid "Open File(s)..." +msgstr "Abrir Arquivo(s)..." + +msgctxt "@title:window" +msgid "Open Project" +msgstr "Abrir Projeto" + +msgctxt "@info:title" +msgid "Open Project File" +msgstr "Abrir Arquivo de Projeto" + +msgctxt "@action:label" +msgid "Open With" +msgstr "Abrir Com" + +msgctxt "@action:button" +msgid "Open as project" +msgstr "Abrir como projeto" + +msgctxt "@title:window" +msgid "Open file(s)" +msgstr "Abrir arquivo(s)" + +msgctxt "@action:button" +msgid "Open project anyway" +msgstr "Abrir o projeto mesmo assim" + +msgctxt "@title:window" +msgid "Open project file" +msgstr "Abrir arquivo de projeto" + +msgctxt "@label OpenGL version" +msgid "OpenGL" +msgstr "OpenGL" + +msgctxt "@label" +msgid "Opening and saving files" +msgstr "Abrindo e salvando arquivos" + +msgctxt "@header" +msgid "Optimized for Air Manager" +msgstr "Otimizado para o Air Manager" + +msgctxt "@label" +msgid "Origin at center" +msgstr "Origem no centro" + +msgid "Orthographic" +msgstr "Ortográfica" + +msgctxt "@action:inmenu menubar:view" +msgid "Orthographic" +msgstr "Ortográfico" + +msgctxt "@tooltip" +msgid "Other" +msgstr "Outros" + +msgctxt "@label" +msgid "Other models overlapping with this model are modified." +msgstr "Outros modelos se sobrepondo a esse modelo foram modificados." + +msgctxt "@label" +msgid "Other printers" +msgstr "Outras impressoras" + +msgctxt "@tooltip" +msgid "Outer Wall" +msgstr "Parede Externa" + +msgctxt "@label" +msgid "Overlaps with this model are not supported." +msgstr "Sobreposições neste modelo não são suportadas." + +msgctxt "@action:button" +msgid "Override" +msgstr "Sobrepor" + +msgctxt "@label" +msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." +msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão." + +msgctxt "@label %1 is the number of settings it overrides." +msgid "Overrides %1 setting." +msgid_plural "Overrides %1 settings." +msgstr[0] "Sobrepõe %1 ajuste." +msgstr[1] "Sobrepõe %1 ajustes." + +msgctxt "@title:menu menubar:toplevel" +msgid "P&references" +msgstr "P&referências" + +msgctxt "@item:inlistbox" +msgid "PNG Image" +msgstr "Imagem PNG" + +msgctxt "@header" +msgid "Package details" +msgstr "Detalhes do pacote" + +msgctxt "@label Description for development tool" +msgid "Packaging Python-applications" +msgstr "Empacotamento de aplicações Python" + +msgctxt "@info:status" +msgid "Parsing G-code" +msgstr "Interpretando G-Code" + +msgctxt "@action:inmenu menubar:edit" +msgid "Paste from clipboard" +msgstr "Colar da área de transferência" + +msgctxt "@label" +msgid "Pause" +msgstr "Pausar" + +msgctxt "@label:MonitorStatus" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label:status" +msgid "Paused" +msgstr "Pausado" + +msgctxt "@label" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label:status" +msgid "Pausing..." +msgstr "Pausando..." + +msgctxt "@label" +msgid "Per Model Settings" +msgstr "Ajustes por Modelo" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de Ajustes Por Modelo" + +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:inmenu menubar:view" +msgid "Perspective" +msgstr "Perspectiva" + +msgctxt "@action:label" +msgid "Placement" +msgstr "Posicionamento" + +msgctxt "@info:title" +msgid "Placing Object" +msgstr "Colocando Objeto" + +msgctxt "@info:title" +msgid "Placing Objects" +msgstr "Colocando Objetos" + +msgctxt "@label Type of platform" +msgid "Platform" +msgstr "Plataforma" + +msgctxt "@info" +msgid "Please connect your printer to the network." +msgstr "Por favor conecte sua impressora à rede." + +msgctxt "@text" +msgid "Please enter a valid IP address." +msgstr "Por favor entre um endereço IP válido." + +msgctxt "@message" +msgid "Please give the required permissions when authorizing this application." +msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação." + +msgctxt "@info" +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Por favor certifique-se que sua impressora está conectada>\n" +"- Verifique se ela está ligada.\n" +"- Verifique se ela está conectada à rede.\n" +"- Verifique se você está logado para descobrir impressoras conectadas à nuvem." + +msgctxt "@text" +msgid "Please name your printer" +msgstr "Por favor dê um nome à sua impressora" + +msgctxt "@warning:status" +msgid "Please prepare G-code before exporting." +msgstr "Por favor prepare o G-Code antes de exportar." + +msgctxt "@info" +msgid "Please provide a name for this profile." +msgstr "Por favor dê um nome a este perfil." + +msgctxt "@info" +msgid "Please provide a new name." +msgstr "Por favor, escolha um novo nome." + +msgctxt "@text" +msgid "Please read and agree with the plugin licence." +msgstr "Por favor leia e concorde com a licença do complemento." + +msgctxt "@label:MonitorStatus" +msgid "Please remove the print" +msgstr "Por favor remova a impressão" + +msgctxt "@info:status" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Por favor revise os ajustes e verifique se seus modelos:\n" +"- Cabem dentro do volume de impressão\n" +"- Estão associados a um extrusor habilitado\n" +"- Não estão todos configurados como malhas de modificação" + +msgctxt "@label" +msgid "Please select any upgrades made to this UltiMaker Original" +msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original" + +msgctxt "@description" +msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" +msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise" + +msgctxt "@action:button" +msgid "Please sync the material profiles with your printers before starting to print." +msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir." + +msgctxt "@info" +msgid "Please update your printer's firmware to manage the queue remotely." +msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente." + +msgctxt "@info:status" +msgid "Please wait until the current job has been sent." +msgstr "Por favor espere até que o trabalho atual tenha sido enviado." + +msgctxt "@title:window" +msgid "Plugin License Agreement" +msgstr "Acordo de Licença do Complemento" + +msgctxt "@button" +msgid "Plugin license agreement" +msgstr "Acordo de licença do complemento" + +msgctxt "@backuplist:label" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@button" +msgid "Plugins" +msgstr "Complementos" + +msgctxt "@label Description for application dependency" +msgid "Polygon clipping library" +msgstr "Biblioteca de recorte de polígonos" + +msgctxt "@label Description for application component" +msgid "Polygon packing library, developed by Prusa Research" +msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" + +msgctxt "@item:inmenu" +msgid "Post Processing" +msgstr "Pós-Processamento" + +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-processamento" + +msgctxt "@title:window" +msgid "Post Processing Plugin" +msgstr "Complemento de Pós-Processamento" + +msgctxt "@label" +msgid "Post Processing Scripts" +msgstr "Scripts de Pós-Processamento" + +msgctxt "@button" +msgid "Pre-heat" +msgstr "Pré-aquecer" + +msgctxt "@item:inmenu" +msgid "Prepare" +msgstr "Preparar" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "Estágio de Preparação" + +msgctxt "@label:MonitorStatus" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label:status" +msgid "Preparing..." +msgstr "Preparando..." + +msgctxt "@label" +msgid "Preset printers" +msgstr "Impressoras pré-ajustadas" + +msgctxt "@button" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "@item:inmenu" +msgid "Preview" +msgstr "Pré-visualização" + +msgctxt "name" +msgid "Preview Stage" +msgstr "Estágio de Pré-visualização" + +msgctxt "@tooltip" +msgid "Prime Tower" +msgstr "Torre de Prime" + +msgctxt "@action:button" +msgid "Print" +msgstr "Imprimir" + +msgctxt "@label" +msgid "Print Selected Model With:" +msgid_plural "Print Selected Models With:" +msgstr[0] "Imprimir Modelo Selecionado Com:" +msgstr[1] "Imprimir Modelos Selecionados Com:" + +msgctxt "@label %1 is filled in with the name of an extruder" +msgid "Print Selected Model with %1" +msgid_plural "Print Selected Models with %1" +msgstr[0] "Imprimir Modelo Selecionado com %1" +msgstr[1] "Imprimir Modelos Selecionados com %1" + +msgctxt "@label" +msgid "Print as support" +msgstr "Imprimir como suporte" + +msgctxt "@info:title" +msgid "Print error" +msgstr "Erro de impressão" + +msgctxt "@message" +msgid "Print in Progress" +msgstr "Impressão em Progresso" + +msgctxt "@info:status" +msgid "Print job queue is full. The printer can't accept a new job." +msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho." + +msgctxt "@info:status" +msgid "Print job was successfully sent to the printer." +msgstr "Trabalho de impressão enviado à impressora com sucesso." + +msgctxt "@label" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@label:button" +msgid "Print jobs" +msgstr "Trabalhos de impressão" + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@properties:tooltip" +msgid "Print over network" +msgstr "Imprime pela rede" + +msgctxt "@title:window" +msgid "Print over network" +msgstr "Imprimir pela rede" + +msgctxt "@label" +msgid "Print settings" +msgstr "Ajustes de impressão" + +msgctxt "@label shown when we load a Gcode file" +msgid "Print setup disabled. G-code file can not be modified." +msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@info:tooltip" +msgid "Print via USB" +msgstr "Imprimir pela USB" + +msgctxt "@action:button" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@properties:tooltip" +msgid "Print via cloud" +msgstr "Imprimir pela nuvem" + +msgctxt "@action:label" +msgid "Print with" +msgstr "Imprimir com" + +msgctxt "@title:tab" +msgid "Printer" +msgstr "Impressora" + +msgctxt "@title:window" +msgid "Printer Address" +msgstr "Endereço da Impressora" + +msgctxt "@action:label" +msgid "Printer Group" +msgstr "Grupo de Impressora" + +msgctxt "@title:label" +msgid "Printer Settings" +msgstr "Ajustes de Impressora" + +msgctxt "@label" +msgid "Printer control" +msgstr "Controle da Impressora" + +msgctxt "@label:MonitorStatus" +msgid "Printer does not accept commands" +msgstr "A impressora não aceita comandos" + +msgctxt "@label" +msgid "Printer name" +msgstr "Nome da impressora" + +msgctxt "@label" +msgid "Printer selection" +msgstr "Seleção de impressora" + +msgctxt "@action:label" +msgid "Printer settings" +msgstr "Ajustes da impressora" + +msgctxt "@info:tooltip" +msgid "Printer settings will be updated to match the settings saved with the project." +msgstr "Os ajustes de impressora serão atualizados para concordar com os ajustes salvos com o projeto." + +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + +msgctxt "info:status" +msgid "Printers added from Digital Factory:" +msgstr "Impressoras adicionadas da Digital Factory:" + +msgctxt "@text Asking the user whether printers are missing in a list." +msgid "Printers missing?" +msgstr "Impressoras faltando?" + +msgctxt "@title:label" +msgid "Printhead Settings" +msgstr "Ajustes da Cabeça de Impressão" + +msgctxt "@label:status" +msgid "Printing" +msgstr "Imprimindo" + +msgctxt "@label" +msgid "Printing Time" +msgstr "Tempo de Impressão" + +msgctxt "@label:MonitorStatus" +msgid "Printing..." +msgstr "Imprimindo..." + +msgctxt "@label" +msgid "Privacy" +msgstr "Privacidade" + +msgctxt "@button" +msgid "Processing" +msgstr "Processando" + +msgctxt "@info:status" +msgid "Processing Layers" +msgstr "Processando Camadas" + +msgctxt "@label" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@title:column" +msgid "Profile" +msgstr "Perfil" + +msgctxt "@label" +msgid "Profile author" +msgstr "Autor do perfil" + +msgctxt "@info:status" +msgid "Profile is missing a quality type." +msgstr "Falta um tipo de qualidade ao Perfil." + +msgctxt "@action:label" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +msgctxt "@title:column" +msgid "Profile settings" +msgstr "Ajustes de perfil" + +#, python-brace-format +msgctxt "@info:status" +msgid "Profile {0} has an unknown file type or is corrupted." +msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido." + +msgctxt "@backuplist:label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@title:tab" +msgid "Profiles" +msgstr "Perfis" + +msgctxt "@label" +msgid "Profiles compatible with active printer:" +msgstr "Perfis compatíveis com a impressora ativa:" + +msgctxt "@label Description for application dependency" +msgid "Programming language" +msgstr "Linguagem de Programação" + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." +msgstr "O arquivo de projeto {0} contém um tipo de máquina desconhecido {1}. Não foi possível importar a máquina. Os modelos serão importados ao invés dela." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is corrupt: {1}." +msgstr "Arquivo de projeto {0} está corrompido: {1}." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tag !" +msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." +msgstr "O arquivo de projeto {0} foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura." + +#, python-brace-format +msgctxt "@info:error Don't translate the XML tags or !" +msgid "Project file {0} is suddenly inaccessible: {1}." +msgstr "O arquivo de projeto {0} tornou-se subitamente inacessível: {1}." + +msgctxt "@label" +msgid "Properties" +msgstr "Propriedades" + +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Provê ações de máquina para atualização do firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Provê um estágio de monitor no Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Provê uma visualização de malha sólida normal." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Provê um estágio de preparação no Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Provê uma etapa de pré-visualização ao Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Provê suporte a escrita e reconhecimento de drives a quente." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Provê suporte à exportação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Provê suporte à importação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Provê suporte a importar perfis de arquivos G-Code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Provê suporte a importação de perfis de versões legadas do Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Provê suporte à leitura de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Provê suporta à leitura de arquivos AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Provê suporte à leitura de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Provê suporte à leitura de arquivos X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Provê suporta a ler arquivos de modelo." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Provê suporte à escrita de arquivos 3MF." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Provê Ajustes Por Modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Provê a visão de Raios-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Provê a ligação ao backend de fatiamento CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Provê a pré-visualização de dados de camada fatiados." + +msgctxt "@label" +msgid "PyQt version" +msgstr "Versão do PyQt" + +msgctxt "@Label Description for application dependency" +msgid "Python Error tracking library" +msgstr "Biblioteca de rastreamento de Erros Python" + +msgctxt "@label Description for application dependency" +msgid "Python bindings for Clipper" +msgstr "Ligações de Python pra Clipper" + +msgctxt "@label Description for application component" +msgid "Python bindings for libnest2d" +msgstr "Ligações de Python para a libnest2d" + +msgctxt "@label" +msgid "Qt version" +msgstr "Versão do Qt" + +#, python-brace-format +msgctxt "@info:status" +msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." +msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'." + +msgctxt "@info:title" +msgid "Queue Full" +msgstr "Fila Cheia" + +msgctxt "@label" +msgid "Queued" +msgstr "Enfileirados" + +msgctxt "@info:button, %1 is the application name" +msgid "Quit %1" +msgstr "Sair de %1" + +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê G-Code de um arquivo comprimido." + +msgctxt "@button" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@title:tab" +msgid "Recommended" +msgstr "Recomendado" + +msgctxt "@label" +msgid "Recommended print settings" +msgstr "Ajustes recomendados de impressão" + +msgctxt "@info %1 is the name of a profile" +msgid "Recommended settings (for %1) were altered." +msgstr "Ajustes recomendados (para %1) foram alterados." + +msgctxt "@action:button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@label" +msgid "Refresh" +msgstr "Atualizar" + +msgctxt "@button" +msgid "Refresh List" +msgstr "Atualizar Lista" + +msgctxt "@button" +msgid "Refreshing..." +msgstr "Atualizando..." + +msgctxt "@label" +msgid "Release Notes" +msgstr "Notas de lançamento" + +msgctxt "@action:inmenu menubar:file" +msgid "Reload All Models" +msgstr "Recarregar Todos Os Modelos" + +msgctxt "@text:window" +msgid "Remember my choice" +msgstr "Lembrar minha escolha" + +msgctxt "@item:intext" +msgid "Removable Drive" +msgstr "Unidade Removível" + +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de Dispositivo de Escrita Removível" + +msgctxt "@action:button" +msgid "Remove" +msgstr "Remover" + +msgctxt "@action:button" +msgid "Remove printers" +msgstr "Remover impressoras" + +msgctxt "@title:window" +msgid "Remove printers?" +msgstr "Remover impressoras?" + +msgctxt "@action:button" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename" +msgstr "Renomear" + +msgctxt "@title:window" +msgid "Rename Profile" +msgstr "Renomear Perfil" + +msgctxt "@action:inmenu menubar:help" +msgid "Report a &Bug" +msgstr "Relatar um &Bug" + +msgctxt "@label:button" +msgid "Report a bug" +msgstr "Relatar um problema" + +msgctxt "@message:button" +msgid "Report a bug" +msgstr "Relatar um bug" + +msgctxt "@message:description" +msgid "Report a bug on UltiMaker Cura's issue tracker." +msgstr "Relatar um bug no issue tracker do UltiMaker Cura." + +msgctxt "@label:status" +msgid "Requires configuration changes" +msgstr "Requer mudanças na configuração" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Positions" +msgstr "Reestabelecer as Posições de Todos Os Modelos" + +msgctxt "@action:inmenu menubar:edit" +msgid "Reset All Model Transformations" +msgstr "Remover as Transformações de Todos Os Modelos" + +msgctxt "@info" +msgid "Reset to defaults." +msgstr "Restaurar aos defaults." + +msgctxt "@label" +msgid "Resolution" +msgstr "Resolução" + +msgctxt "@button" +msgid "Restore" +msgstr "Restaurar" + +msgctxt "@dialog:title" +msgid "Restore Backup" +msgstr "Restaurar Backup" + +msgctxt "@option:check" +msgid "Restore window position on start" +msgstr "Restaurar posição da janela no início" + +msgctxt "@label" +msgid "Resume" +msgstr "Continuar" + +msgctxt "@label" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@label:status" +msgid "Resuming..." +msgstr "Continuando..." + +msgctxt "@tooltip" +msgid "Retractions" +msgstr "Retrações" + +msgctxt "@button" +msgid "Retry?" +msgstr "Tentar novamente?" + +msgctxt "@action:inmenu menubar:view" +msgid "Right Side View" +msgstr "Visão do Lado Direito" + +msgctxt "@info:tooltip" +msgid "Right View" +msgstr "Visão à Direita" + +msgctxt "@label Description for application dependency" +msgid "Root Certificates for validating SSL trustworthiness" +msgstr "Certificados-Raiz para validar confiança SSL" + +msgctxt "@info:title" +msgid "Safely Remove Hardware" +msgstr "Remover Hardware com Segurança" + +msgctxt "@button" +msgid "Safety datasheet" +msgstr "Ficha de segurança" + +msgctxt "@action:button" +msgid "Save" +msgstr "Salvar" + +msgctxt "@option" +msgid "Save Cura project" +msgstr "Salvar o projeto Cura" + +msgctxt "@option" +msgid "Save Cura project and print file" +msgstr "Salvar o projeto Cura e imprimir o arquivo" + +msgctxt "@title:window" +msgid "Save Custom Profile" +msgstr "Salvar Perfil Personalizado" + +msgctxt "@title:window" +msgid "Save Project" +msgstr "Salvar Projeto" + +msgctxt "@title:menu menubar:file" +msgid "Save Project..." +msgstr "Salvar Projeto..." + +msgctxt "@action:button" +msgid "Save as new custom profile" +msgstr "Salvar como novo perfil personalizado" + +msgctxt "@action:button" +msgid "Save changes" +msgstr "Salvar alterações" + +msgctxt "@button" +msgid "Save new profile" +msgstr "Salvar novo perfil" + +msgctxt "@text" +msgid "Save the .umm file on a USB stick." +msgstr "Grava o arquivo .umm em um pendrive USB." + +msgctxt "@action:button Preceded by 'Ready to'." +msgid "Save to Removable Drive" +msgstr "Salvar em Unidade Removível" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "Save to Removable Drive {0}" +msgstr "Salvar em Unidade Removível {0}" + +#, python-brace-format +msgctxt "@info:status" +msgid "Saved to Removable Drive {0} as {1}" +msgstr "Salvo em Unidade Removível {0} como {1}" + +msgctxt "@info:title" +msgid "Saving" +msgstr "Salvando" + +#, python-brace-format +msgctxt "@info:progress Don't translate the XML tags !" +msgid "Saving to Removable Drive {0}" +msgstr "Salvando na Unidade Removível {0}" + +msgctxt "@option:check" +msgid "Scale extremely small models" +msgstr "Redimensionar modelos minúsculos" + +msgctxt "@option:check" +msgid "Scale large models" +msgstr "Redimensionar modelos grandes" + +msgctxt "@placeholder" +msgid "Search" +msgstr "Buscar" + +msgctxt "@info" +msgid "Search in the browser" +msgstr "Buscar no navegador" + +msgctxt "@label:textbox" +msgid "Search settings" +msgstr "Ajustes de busca" + +msgctxt "@action:inmenu menubar:edit" +msgid "Select All Models" +msgstr "Selecionar Todos Os Modelos" + +msgctxt "@title:window" +msgid "Select Printer" +msgstr "Selecione Impressora" + +msgctxt "@title:window" +msgid "Select Settings to Customize for this model" +msgstr "Selecionar Ajustes a Personalizar para este modelo" + +msgctxt "@text" +msgid "Select and install material profiles optimised for your UltiMaker 3D printers." +msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker." + +msgctxt "@label" +msgid "Select configuration" +msgstr "Selecione configuração" + +msgctxt "@title:window" +msgid "Select custom firmware" +msgstr "Selecionar firmware personalizado" + +msgctxt "@option:check" +msgid "Select models when loaded" +msgstr "Selecionar modelos ao carregar" + +msgctxt "@action:button" +msgid "Select settings" +msgstr "Selecionar ajustes" + +msgctxt "@action" +msgid "Select upgrades" +msgstr "Selecionar Atualizações" + +msgctxt "@label" +msgid "Select your printer from the list below:" +msgstr "Selecione sua impressora da lista abaixo:" + +msgctxt "@option:check" +msgid "Send (anonymous) print information" +msgstr "Enviar informação (anônima) de impressão" + +msgctxt "@label" +msgid "Send G-code" +msgstr "Enviar G-Code" + +msgctxt "@tooltip of G-code command input" +msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command." +msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando." + +msgctxt "@action:button" +msgid "Send crash report to UltiMaker" +msgstr "Enviar relatório de falha à UltiMaker" + +msgctxt "@action:button" +msgid "Send report" +msgstr "Enviar relatório" + +msgctxt "@info:status" +msgid "Sending Print Job" +msgstr "Enviando Trabalho de Impressão" + +msgctxt "@info:title" +msgid "Sending materials to printer" +msgstr "Enviando material para a impressora" + +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentinela para Registro" + +msgctxt "@label Description for application dependency" +msgid "Serial communication library" +msgstr "Biblioteca de comunicação serial" + +msgctxt "@action:inmenu" +msgid "Set as Active Extruder" +msgstr "Definir Como Extrusor Ativo" + +msgctxt "@title:column" +msgid "Setting" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Setting Visibility" +msgstr "Visibilidade dos Ajustes" + +msgctxt "@info:progress" +msgid "Setting up preferences..." +msgstr "Ajustando preferências..." + +msgctxt "@info:progress" +msgid "Setting up scene..." +msgstr "Configurando cena..." + +msgctxt "@action:label" +msgid "Setting visibility" +msgstr "Visibilidade dos ajustes" + +msgctxt "@label" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + +msgctxt "@info:message Followed by a list of settings." +msgid "Settings have been changed to match the current availability of extruders:" +msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:" + +msgctxt "@info:title" +msgid "Settings updated" +msgstr "Ajustes atualizados" + +msgctxt "@text" +msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community" +msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker" + +msgctxt "@label" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "@action:label" +msgid "Shell Thickness" +msgstr "Espessura de Perímetro" + +msgctxt "@info:tooltip" +msgid "Should Cura check for updates when the program is started?" +msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?" + +msgctxt "@info:tooltip" +msgid "Should Cura open at the location it was closed?" +msgstr "O Cura deve abrir no lugar onde foi fechado?" + +msgctxt "@info:tooltip" +msgid "Should a prefix based on the printer name be added to the print job name automatically?" +msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?" + +msgctxt "@info:tooltip" +msgid "Should a summary be shown when saving a project file?" +msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?" + +msgctxt "@info:tooltip" +msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" +msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!" + +msgctxt "@info:tooltip" +msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." +msgstr "Dados anônimos sobre sua impressão podem ser enviados para a UltiMaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados." + +msgctxt "@info:tooltip" +msgid "Should layer be forced into compatibility mode?" +msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?" + +msgctxt "@info:tooltip" +msgid "Should models be scaled to the build volume if they are too large?" +msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?" + +msgctxt "@info:tooltip" +msgid "Should models be selected after they are loaded?" +msgstr "Os modelos devem ser selecionados após serem carregados?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved down to touch the build plate?" +msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?" + +msgctxt "@info:tooltip" +msgid "Should models on the platform be moved so that they no longer intersect?" +msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?" + +msgctxt "@info:tooltip" +msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" +msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" +msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" + +msgctxt "@info:tooltip" +msgid "Should the default zoom behavior of cura be inverted?" +msgstr "O comportamento default de ampliação deve ser invertido?" + +msgctxt "@info:tooltip" +msgid "Should zooming move in the direction of the mouse?" +msgstr "A ampliação (zoom) deve se mover na direção do mouse?" + +msgctxt "@label" +msgid "Show 5 Detailed Layers On Top" +msgstr "Exibir 5 Camadas Superiores Detalhadas" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Configuration Folder" +msgstr "Exibir Pasta de Configuração" + +msgctxt "@button" +msgid "Show Custom" +msgstr "Mostrar Personalizado" + +msgctxt "@action:inmenu menubar:help" +msgid "Show Online &Documentation" +msgstr "Exibir &Documentação Online" + +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Mostrar Resolução de Problemas Online" + +msgctxt "@label:checkbox" +msgid "Show all" +msgstr "Exibir tudo" + +msgctxt "@label" +msgid "Show all connected printers" +msgstr "Mostrar todas as impressoras conectadas" + +msgctxt "@info:tooltip" +msgid "Show an icon and notifications in the system notification area." +msgstr "Mostrar um ícone e notificações na área de notificações do sistema." + +msgctxt "@info:tooltip" +msgid "Show caution message in g-code reader." +msgstr "Exibir mensagem de alerta no leitor de G-Code." + +msgctxt "@action:button" +msgid "Show configuration folder" +msgstr "Mostrar a pasta de configuração" + +msgctxt "@action:button" +msgid "Show detailed crash report" +msgstr "Exibir relatório de falha detalhado" + +msgctxt "@option:check" +msgid "Show summary dialog when saving project" +msgstr "Exibir diálogo de resumo ao salvar projeto" + +msgctxt "@tooltip:button" +msgid "Show your support for Cura with a donation." +msgstr "Mostre seu suporte ao Cura com uma doação." + +msgctxt "@button" +msgid "Sign Out" +msgstr "Deslogar" + +msgctxt "@action:button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@button" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@title:header" +msgid "Sign in" +msgstr "Entrar" + +msgctxt "@info" +msgid "Sign in into UltiMaker Digital Factory" +msgstr "Fazer login na Ultimaker Digital Factory" + +msgctxt "@button" +msgid "Sign in to Digital Factory" +msgstr "Fazer login na Digital Factory" + +msgctxt "@label" +msgid "Sign in to the UltiMaker platform" +msgstr "Entre na plataforma UltiMaker" + +msgctxt "name" +msgid "Simulation View" +msgstr "Visão Simulada" + +msgctxt "@tooltip" +msgid "Skin" +msgstr "Contorno" + +msgctxt "@action:button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@button" +msgid "Skip" +msgstr "Pular" + +msgctxt "@tooltip" +msgid "Skirt" +msgstr "Skirt (Saia)" + +msgctxt "@button" +msgid "Slice" +msgstr "Fatiar" + +msgctxt "@option:check" +msgid "Slice automatically" +msgstr "Fatiar automaticamente" + +msgctxt "@info:tooltip" +msgid "Slice automatically when changing settings." +msgstr "Fatiar automaticamente quando mudar ajustes." + +msgctxt "name" +msgid "Slice info" +msgstr "Informação de fatiamento" + +msgctxt "@message:title" +msgid "Slicing failed" +msgstr "Fatiamento falhado" + +msgctxt "@message" +msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." +msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." + +msgctxt "@label:PrintjobStatus" +msgid "Slicing..." +msgstr "Fatiando..." + +msgctxt "@action:label" +msgid "Smoothing" +msgstr "Suavização" + +msgctxt "name" +msgid "Solid View" +msgstr "Visão Sólida" + +msgctxt "@item:inmenu" +msgid "Solid view" +msgstr "Visão sólida" + +msgctxt "@label" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n" +"\n" +"Clique para tornar estes ajustes visíveis." + +msgctxt "@info:status" +msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." +msgstr "Alguns dos pacotes usados no arquivo de projeto não estão atualmente instalados no Cura, isto pode produzir resultados de impressão não desejados. Recomendamos fortemente instalar todos os pacotes requeridos pelo MarketPlace." + +msgctxt "@info:title" +msgid "Some required packages are not installed" +msgstr "Alguns pacotes requeridos não estão instalados" + +msgctxt "@info %1 is the name of a profile" +msgid "Some setting-values defined in %1 were overridden." +msgstr "Alguns valores de ajustes definidos em %1 foram sobrepostos." + +msgctxt "@tooltip" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n" +"\n" +"Clique para abrir o gerenciador de perfis." + +msgctxt "@action:label" +msgid "Some settings from current profile were overwritten." +msgstr "Alguns ajustes do perfil atual foram sobrescritos." + +msgctxt "@message" +msgid "Something unexpected happened when trying to log in, please try again." +msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente." + +msgctxt "@title:header" +msgid "Something went wrong when sending the materials to the printers." +msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras." + +msgctxt "@label" +msgid "Something went wrong..." +msgstr "Alguma coisa deu errado..." + +msgctxt "@label:listbox" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "@action:inmenu" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@label:button" +msgid "Sponsor Cura" +msgstr "Patrocinar o Cura" + +msgctxt "@option:radio" +msgid "Stable and Beta releases" +msgstr "Versões estáveis ou beta" + +msgctxt "@option:radio" +msgid "Stable releases only" +msgstr "Versões estáveis somente" + +msgctxt "@item:inlistbox" +msgid "Stanford Triangle Format" +msgstr "Formato de Triângulos de Stanford" + +msgctxt "@button" +msgid "Start" +msgstr "Iniciar" + +msgctxt "@action:button" +msgid "Start Build Plate Leveling" +msgstr "Iniciar Nivelamento da Mesa de Impressão" + +msgctxt "@title:label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "@label" +msgid "Start the slicing process" +msgstr "Inicia o processo de fatiamento" + +msgctxt "@label" +msgid "Starts" +msgstr "Inícios" + +msgctxt "@text" +msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." +msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do UltiMaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários." + +msgctxt "@label" +msgid "Strength" +msgstr "Força" + +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências." + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully exported material to %1" +msgstr "Material exportado para %1 com sucesso" + +msgctxt "@info:status Don't translate the XML tag !" +msgid "Successfully imported material %1" +msgstr "Material %1 importado com sucesso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Successfully imported profile {0}." +msgstr "Perfil {0} importado com sucesso." + +msgctxt "@action:title" +msgid "Summary - Cura Project" +msgstr "Resumo - Projeto do Cura" + +msgctxt "@label" +msgid "Support" +msgstr "Suporte" + +msgctxt "@tooltip" +msgid "Support" +msgstr "Suporte" + +msgctxt "@label" +msgid "Support Blocker" +msgstr "Bloqueador de Suporte" + +msgctxt "name" +msgid "Support Eraser" +msgstr "Apagador de Suporte" + +msgctxt "@tooltip" +msgid "Support Infill" +msgstr "Preenchimento de Suporte" + +msgctxt "@tooltip" +msgid "Support Interface" +msgstr "Interface de Suporte" + +msgctxt "@action:label" +msgid "Support Type" +msgstr "Tipo de Suporte" + +msgctxt "@label Description for application dependency" +msgid "Support library for faster math" +msgstr "Biblioteca de suporte para matemática acelerada" + +msgctxt "@label Description for application component" +msgid "Support library for file metadata and streaming" +msgstr "Biblioteca de suporte para streaming e metadados de arquivo" + +msgctxt "@label Description for application component" +msgid "Support library for handling 3MF files" +msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling STL files" +msgstr "Biblioteca de suporte para manuseamento de arquivos STL" + +msgctxt "@label Description for application dependency" +msgid "Support library for handling triangular meshes" +msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" + +msgctxt "@label Description for application dependency" +msgid "Support library for scientific computing" +msgstr "Biblioteca de suporte para computação científica" + +msgctxt "@label Description for application dependency" +msgid "Support library for system keyring access" +msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" + +msgctxt "@action:button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@button" +msgid "Sync" +msgstr "Sincronizar" + +msgctxt "@title:header" +msgid "Sync material profiles via USB" +msgstr "Sincronizar perfis de material via USB" + +msgctxt "@action:button" +msgid "Sync materials" +msgstr "Sincronizar materiais" + +msgctxt "@button" +msgid "Sync materials with USB" +msgstr "Sincronizar materiais usando USB" + +msgctxt "@title:header" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@title:window" +msgid "Sync materials with printers" +msgstr "Sincronizar materiais com impressoras" + +msgctxt "@action:button" +msgid "Sync with Printers" +msgstr "Sincronizar com Impressoras" + +msgctxt "@button" +msgid "Syncing" +msgstr "Sincronizando" + +msgctxt "@info:generic" +msgid "Syncing..." +msgstr "Sincronizando..." + +msgctxt "@title:groupbox" +msgid "System information" +msgstr "Informação do Sistema" + +msgctxt "@button" +msgid "Technical datasheet" +msgstr "Ficha técnica" + +msgctxt "@info:tooltip" +msgid "The amount of smoothing to apply to the image." +msgstr "A quantidade de suavização para aplicar na imagem." + +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "O perfil de recozimento requer pós-processamento em um forno depois da impressão terminar. Este perfil retém a acuidade dimensional da parte impressão depois do recozimento e melhora a força, rigidez e resistência térmica." + +msgctxt "@label" +msgid "The assigned printer, %1, requires the following configuration change:" +msgid_plural "The assigned printer, %1, requires the following configuration changes:" +msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:" +msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:" + +msgctxt "@error:file_size" +msgid "The backup exceeds the maximum file size." +msgstr "O backup excede o tamanho máximo de arquivo." + +msgctxt "@info:tooltip" +msgid "The base height from the build plate in millimeters." +msgstr "A altura-base da mesa de impressão em milímetros." + +msgctxt "@info:status" +msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." +msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please check your internet connection." +msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet." + +msgctxt "@status" +msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer." +msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem." + +msgctxt "@status" +msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet." +msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet." + +msgctxt "@tooltip" +msgid "The colour of the material in this extruder." +msgstr "A cor do material neste extrusor." + +msgctxt "@tooltip" +msgid "The configuration of this extruder is not allowed, and prohibits slicing." +msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento." + +msgctxt "@label" +msgid "The configurations are not available because the printer is disconnected." +msgstr "As configurações não estão disponíveis porque a impressora está desconectada." + +msgctxt "@tooltip" +msgid "The current temperature of the heated bed." +msgstr "A temperatura atual da mesa aquecida." + +msgctxt "@tooltip" +msgid "The current temperature of this hotend." +msgstr "A temperatura atual deste hotend." + +msgctxt "@info:tooltip" +msgid "The depth in millimeters on the build plate" +msgstr "A profundidade da mesa de impressão em milímetros" + +msgctxt "@text" +msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." +msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." + +msgctxt "@text" +msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances." +msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas." + +msgctxt "@label" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir o suporte. Isto é usado em multi-extrusão." + +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "O arquivo {0} já existe. Tem certeza que quer sobrescrevê-lo?" + +msgctxt "@label" +msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." +msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias." + +msgctxt "@info:backup_failed" +msgid "The following error occurred while trying to restore a Cura backup:" +msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:" + +msgctxt "@label" +msgid "The following packages can not be installed because of an incompatible Cura version:" +msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:" + +msgctxt "@label" +msgid "The following packages will be added:" +msgstr "Os seguintes pacotes serão adicionados:" + +msgctxt "@label" +msgid "The following printers in your account have been added in Cura:" +msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:" + +msgctxt "@title:header" +msgid "The following printers will receive the new material profiles:" +msgstr "Os seguintes materiais receberão novos perfis de material:" + +msgctxt "@info:tooltip" +msgid "The following script is active:" +msgid_plural "The following scripts are active:" +msgstr[0] "O seguinte script está ativo:" +msgstr[1] "Os seguintes scripts estão ativos:" + +msgctxt "@label" +msgid "The following settings define the strength of your part." +msgstr "Os seguintes ajustes definem a força de sua peça." + +msgctxt "@info:status" +msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura." +msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura." + +msgctxt "@tooltip" +msgid "The material in this extruder." +msgstr "O material neste extrusor." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." +msgstr "O pacote de material associado com este projeto Cura não pôde ser encontrado no Ultimaker Marketplace. Use a definição parcial de perfil de material gravada no arquivo de projeto Cura por seu próprio risco." + +msgctxt "@info:tooltip" +msgid "The maximum distance of each pixel from \"Base.\"" +msgstr "A distância máxima de cada pixel da \"Base\"." + +msgctxt "@label (%1 is a number)" +msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" +msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?" + +msgctxt "@tooltip" +msgid "The nozzle inserted in this extruder." +msgstr "O bico inserido neste extrusor." + +msgctxt "@label" +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"O padrão do material de preenchimento da impressão:\n" +"\n" +"Para impressões rápidas de modelos não-funcionais escolha preenchimento de linha, ziguezague ou relâmpago.\n" +"\n" +"Para partes funcionais não sujeitas a muito stress, recomandos preenchimento de grade, triângulo ou tri-hexágono.\n" +"\n" +"Para impressões 3D funcionais que requeiram bastante força em múltiplas direções use cúbico, subdivisão cúbica, quarto cúbico, octeto e giroide." + +msgctxt "@info:tooltip" +msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." +msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem." + +msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" +msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." +msgstr "O complemento associado com o projeto Cura não foi encontrado no Ultimaker Marketplace. Como o complemento pode ser necessário para fatiar o projeto, pode não ser possível corretamente fatiar este arquivo." + +msgctxt "@info:title" +msgid "The print job was successfully submitted" +msgstr "O trabalho de impressão foi submetido com sucesso" + +msgctxt "@label" +msgid "The printer %1 is assigned, but the job contains an unknown material configuration." +msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida." + +msgctxt "@label" +msgid "The printer at this address has not responded yet." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@label" +msgid "The printer at this address has not yet responded." +msgstr "A impressora neste endereço ainda não respondeu." + +msgctxt "@info:status" +msgid "The printer is not connected." +msgstr "A impressora não está conectada." + +msgctxt "@label" +msgid "The printer(s) below cannot be connected because they are part of a group" +msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo" + +msgctxt "@message" +msgid "The provided state is not correct." +msgstr "O estado provido não está correto." + +msgctxt "@text:window" +msgid "The release notes could not be opened." +msgstr "As notas de lançamento não puderam ser abertas." + +msgctxt "@text:error" +msgid "The response from Digital Factory appears to be corrupted." +msgstr "A resposta da Digital Factory parece estar corrompida." + +msgctxt "@text:error" +msgid "The response from Digital Factory is missing important information." +msgstr "A resposta da Digital Factory veio sem informações importantes." + +msgctxt "@tooltip" +msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." +msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado." + +msgctxt "@tooltip" +msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." +msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the bed to." +msgstr "A temperatura em que pré-aquecer a mesa." + +msgctxt "@tooltip of temperature input" +msgid "The temperature to pre-heat the hotend to." +msgstr "A temperatura com a qual pré-aquecer o hotend." + +msgctxt "@text" +msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." +msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície." + +msgctxt "@info:tooltip" +msgid "The width in millimeters on the build plate" +msgstr "A largura em milímetros na plataforma de impressão" + +msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed." +msgid "Theme*:" +msgstr "Tema*:" + +msgctxt "@info:status" +msgid "There are no file formats available to write with!" +msgstr "Não há formatos de arquivo disponíveis com os quais escrever!" + +msgctxt "@label" +msgid "There are no print jobs in the queue. Slice and send a job to add one." +msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo." + +msgctxt "@tooltip" +msgid "There are no profiles matching the configuration of this extruder." +msgstr "Não há perfis correspondendo à configuração deste extrusor." + +msgctxt "@info:status" +msgid "There is no active printer yet." +msgstr "Não há impressora ativa ainda." + +msgctxt "@label" +msgid "There is no printer found over your network." +msgstr "Não foi encontrada nenhuma impressora em sua rede." + +msgctxt "@error" +msgid "There is no workspace yet to write. Please add a printer first." +msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro." + +msgctxt "@info:backup_status" +msgid "There was an error trying to restore your backup." +msgstr "Houve um erro ao tentar restaurar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while creating your backup." +msgstr "Houve um erro ao criar seu backup." + +msgctxt "@info:backup_status" +msgid "There was an error while uploading your backup." +msgstr "Houve um erro ao transferir seu backup." + +msgctxt "@label" +msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." +msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." + +msgctxt "@text:window" +msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" +msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?" + +msgctxt "@label" +msgid "This material is linked to %1 and shares some of its properties." +msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades." + +msgctxt "@label" +msgid "This package will be installed after restarting." +msgstr "Este pacote será instalado após o reinício." + +msgctxt "@label" +msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." +msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo." + +msgctxt "info:status" +msgid "This printer is not linked to the Digital Factory:" +msgid_plural "These printers are not linked to the Digital Factory:" +msgstr[0] "Esta impressora não está ligada à Digital Factory:" +msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:" + +msgctxt "@status" +msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection." +msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão." + +msgctxt "@label" +msgid "This printer is not set up to host a group of printers." +msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras." + +msgctxt "@label" +msgid "This printer is the host for a group of %1 printers." +msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras." + +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags !" +msgid "This profile {0} contains incorrect data, could not import it." +msgstr "Este perfil {0} contém dados incorretos, não foi possível importá-lo." + +msgctxt "@action:label" +msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below." +msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo." + +msgctxt "@label" +msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." +msgstr "Este projeto contém materiais ou complementos que não estão atualmente instalados no Cura.
    Instale os pacotes faltantes e abra novamente o projeto." + +msgctxt "@label" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Este ajuste tem um valor que é diferente do perfil.\n" +"\n" +"Clique para restaurar o valor do perfil." + +msgctxt "@item:tooltip" +msgid "This setting has been hidden by the active machine and will not be visible." +msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível." + +msgctxt "@item:tooltip %1 is list of setting names" +msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." +msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." +msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível." +msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível." + +msgctxt "@label" +msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." +msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos." + +msgctxt "@label" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n" +"\n" +"Clique para restaurar o valor calculado." + +msgctxt "@label" +msgid "This setting is not used because all the settings that it influences are overridden." +msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos." + +msgctxt "@label" +msgid "This setting is resolved from conflicting extruder-specific values:" +msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:" + +msgctxt "@info:warning" +msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" +msgstr "Esta versão não é pretendida para uso em produção. Se você encontrar quaisquer problemas, por favor relate-os na nossa página de GitHub, mencionando a versão completa {self.getVersion()}" + +msgctxt "@label" +msgid "Time estimation" +msgstr "Estimativa de tempo" + +msgctxt "@message" +msgid "Timeout when authenticating with the account server." +msgstr "Tempo esgotado ao autenticar com o servidor da conta." + +msgctxt "@text" +msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." +msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura." + +#, python-brace-format +msgctxt "info:status" +msgid "To establish a connection, please visit the {website_link}" +msgstr "Para estabelecer uma conexão, por favor visite o {website_link}" + +msgctxt "@label" +msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." +msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas." + +msgctxt "@label" +msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." +msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela." + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "To remove {printer_name} permanently, visit {digital_factory_link}" +msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}" + +msgctxt "@action:inmenu" +msgid "Toggle Full Screen" +msgstr "Alternar Tela Cheia" + +msgctxt "@label" +msgid "Top / Bottom" +msgstr "Topo / Base" + +msgctxt "@action:inmenu menubar:view" +msgid "Top View" +msgstr "Visão Superior" + +msgctxt "@info:tooltip" +msgid "Top View" +msgstr "Visão de Cima" + +msgctxt "@label" +msgid "Total print time" +msgstr "Tempo total de impressão" + +msgctxt "@action:tooltip" +msgid "Track the print in Ultimaker Digital Factory" +msgstr "Rastrear a impressão na Ultimaker Digital Factory" + +msgctxt "@item:inlistbox" +msgid "Translucency" +msgstr "Translucidez" + +msgctxt "@tooltip" +msgid "Travel" +msgstr "Percurso" + +msgctxt "@label" +msgid "Travels" +msgstr "Percursos" + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup that is higher than the current version." +msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual." + +msgctxt "@info:backup_failed" +msgid "Tried to restore a Cura backup without having proper data or meta data." +msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados." + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor Trimesh" + +msgctxt "@button" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@label" +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +msgctxt "@button" +msgid "Try again" +msgstr "Tentar novamente" + +msgctxt "@action:label" +msgid "Type" +msgstr "Tipo" + +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Gerador de UFP" + +msgctxt "@item:inmenu" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + +msgctxt "@button" +msgid "UltiMaker Account" +msgstr "Conta na UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Certified Material" +msgstr "Material Certificado UltiMaker" + +msgctxt "@text:window" +msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" +msgstr "O UltiMaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:" + +msgctxt "@item:inlistbox" +msgid "UltiMaker Format Package" +msgstr "Pacote de Formato da UltiMaker" + +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexão de Rede UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Package" +msgstr "Pacote Verificado UltiMaker" + +msgctxt "@info" +msgid "UltiMaker Verified Plug-in" +msgstr "Complemento Verificado UltiMaker" + +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ações de máquina UltiMaker" + +msgctxt "@button" +msgid "UltiMaker printer" +msgstr "Impressora UltiMaker" + +msgctxt "@label:button" +msgid "UltiMaker support" +msgstr "Suporte UltiMaker" + +msgctxt "info:name" +msgid "Ultimaker Digital Factory" +msgstr "Ultimaker Digital Factory" + +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digital Library da UltiMaker" + +msgctxt "@info:status" +msgid "Unable to add the profile." +msgstr "Não foi possível adicionar o perfil." + +msgctxt "@info:status" +msgid "Unable to find a location within the build volume for all objects" +msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" +msgstr "Não foi possível encontrar o executável do servidor local de EnginePlugin para: {self._plugin_id}" + +#, python-brace-format +msgctxt "@info:plugin_failed" +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Não foi possível matar o processo EnginePlugin: {self._plugin_id}\n" +"Acesso negado." + +msgctxt "@info" +msgid "Unable to reach the UltiMaker account server." +msgstr "Não foi possível contactar o servidor de contas da UltiMaker." + +msgctxt "@text" +msgid "Unable to read example data file." +msgstr "Não foi possível ler o arquivo de dados de exemplo." + +msgctxt "@info:title" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@label:PrintjobStatus" +msgid "Unable to slice" +msgstr "Não foi possível fatiar" + +msgctxt "@info:status" +msgid "Unable to slice because the prime tower or prime position(s) are invalid." +msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas." + +#, python-format +msgctxt "@info:status" +msgid "Unable to slice because there are objects associated with disabled Extruder %s." +msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" +msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}" + +msgctxt "@info:status" +msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." +msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada." + +#, python-brace-format +msgctxt "@info:status" +msgid "Unable to slice with the current settings. The following settings have errors: {0}" +msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}" + +msgctxt "@info" +msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." +msgstr "Não foi possível iniciar processo de login. Verifique se outra tentativa de login ainda está ativa." + +msgctxt "@label:status" +msgid "Unavailable" +msgstr "Indisponível" + +msgctxt "@label" +msgid "Unavailable printer" +msgstr "Impressora indisponível" + +msgctxt "@action:inmenu menubar:edit" +msgid "Ungroup Models" +msgstr "Desagrupar Modelos" + +msgctxt "@button" +msgid "Uninstall" +msgstr "Desinstalar" + +msgctxt "@title:column Unit of measurement" +msgid "Unit" +msgstr "Unidade" + +msgctxt "@label Description for development tool" +msgid "Universal build system configuration" +msgstr "Configuração de sistema universal de construção" + +msgctxt "@label" +msgid "Unknown" +msgstr "Desconhecido" + +msgctxt "@label unknown version of Cura" +msgid "Unknown" +msgstr "Desconhecida" + +msgctxt "@label:property" +msgid "Unknown Author" +msgstr "Autor Desconhecido" + +msgctxt "@label:property" +msgid "Unknown Package" +msgstr "Pacote Desconhecido" + +#, python-brace-format +msgctxt "@error:send" +msgid "Unknown error code when uploading print job: {0}" +msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}" + +msgctxt "@text" +msgid "Unknown error." +msgstr "Erro desconhecido." + +msgctxt "@label" +msgid "Unlink Material" +msgstr "Desvincular Material" + +msgctxt "@label:status" +msgid "Unreachable" +msgstr "Inacessivel" + +msgctxt "@label" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@text Print job name" +msgid "Untitled" +msgstr "Sem Título" + +msgctxt "@button" +msgid "Update" +msgstr "Atualizar" + +msgctxt "@action" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@title" +msgid "Update Firmware" +msgstr "Atualizar Firmware" + +msgctxt "@action:ComboBox Update/override existing profile" +msgid "Update existing" +msgstr "Atualizar existentes" + +msgctxt "@action:tooltip" +msgid "Update profile with current settings/overrides" +msgstr "Atualizar perfil com ajustes/sobreposições atuais" + +msgctxt "@action:button" +msgid "Update profile." +msgstr "Atualizar perfil." + +msgctxt "@info:title" +msgid "Update your printer" +msgstr "Atualize sua impressora" + +msgctxt "@label" +msgid "Updates" +msgstr "Atualizações" + +msgctxt "@label" +msgid "Updating firmware." +msgstr "Atualizando firmware." + +msgctxt "@button" +msgid "Updating..." +msgstr "Atualizando..." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar Firmware personalizado" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Transferindo trabalho de impressão para a impressora." + +msgctxt "@info:backup_status" +msgid "Uploading your backup..." +msgstr "Enviando seu backup..." + +msgctxt "@option:check" +msgid "Use a single instance of Cura" +msgstr "Usar uma única instância do Cura" + +msgctxt "@label" +msgid "Use glue for better adhesion with this material combination." +msgstr "Use cola para melhor aderência com essa combinação de materiais." + +msgctxt "@label" +msgid "User Agreement" +msgstr "Contrato de Usuário" + +msgctxt "@label Description for application dependency" +msgid "Utility functions, including an image loader" +msgstr "Funções de utilidade, incluindo um carregador de imagem" + +msgctxt "@label Description for application dependency" +msgid "Utility library, including Voronoi generation" +msgstr "Biblioteca de utilidade, incluindo geração Voronoi" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização de Versão de 2.1 para 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização de Versão de 2.2 para 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização de Versão de 2.5 para 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização de Versão de 2.6 para 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização de Versão de 2.7 para 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização de Versão 3.0 para 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização de Versão de 3.2 para 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização de Versão de 3.3 para 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização de Versão de 3.4 para 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização de Versão de 3.5 para 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização de Versão de 4.0 para 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização de Versão de 4.1 para 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização de Versão de 4.11 para 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização de Versão de 4.13 para 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização de Versão de 4.2 para 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização de Versão de 4.3 para 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização de Versão de 4.4 para 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização de Versão de 4.5 para 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização de Versão de 4.6.0 para 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização de Versão de 4.6.2 para 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização de Versão de 4.7 para 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização de Versão de 4.8 para 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização de Versão de 4.9 para 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização de Versão de 5.2 para 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização de Versão de 5.3 para 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização de Versão de 5.4 para 5.5" + +msgctxt "@button" +msgid "View printers in Digital Factory" +msgstr "Ver impressoras na Digital Factory" + +msgctxt "@label" +msgid "View type" +msgstr "Tipo de Visão" + +msgctxt "@label link to technical assistance" +msgid "View user manuals online" +msgstr "Ver manuais de usuário online" + +msgctxt "@label" +msgid "Viewport behavior" +msgstr "Comportamento da área de visualização" + +msgctxt "@action:inmenu" +msgid "Visible Settings" +msgstr "Ajustes Visíveis" + +msgctxt "@button" +msgid "Visit plug-in website" +msgstr "Visitar sítio web de complementos" + +msgctxt "@tooltip:button" +msgid "Visit the UltiMaker website." +msgstr "Visita o website da UltiMaker." + +msgctxt "@label" +msgid "Visual" +msgstr "Visual" + +msgctxt "@label" +msgid "Waiting for" +msgstr "Esperando por" + +msgctxt "@label" +msgid "Waiting for Cloud response" +msgstr "Aguardando resposta da Nuvem" + +msgctxt "@button" +msgid "Waiting for new printers" +msgstr "Esperando por novas impressoras" + +msgctxt "@button" +msgid "Want more?" +msgstr "Quer mais?" + +msgctxt "@info:title" +msgid "Warning" +msgstr "Aviso" + +#, python-brace-format +msgctxt "@info:status" +msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." +msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade." + +msgctxt "@text:window" +msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one." +msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um." + +msgctxt "@text:window" +msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" +msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?" + +msgctxt "@info" +msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." +msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo UltiMaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam." + +msgctxt "@button" +msgid "Website" +msgstr "Sítio web" + +msgctxt "@label" +msgid "What printer would you like to setup?" +msgstr "Que impressora você gostaria de configurar?" + +msgctxt "@info:tooltip" +msgid "What type of camera rendering should be used?" +msgstr "Que tipo de renderização de câmera deve ser usada?" + +msgctxt "@action:inmenu menubar:help" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@label" +msgid "What's New" +msgstr "O Que Há de Novo" + +msgctxt "@title:window" +msgid "What's New" +msgstr "Novidades" + +msgctxt "@info:tooltip" +msgid "When checking for updates, check for both stable and for beta releases." +msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta." + +msgctxt "@info:tooltip" +msgid "When checking for updates, only check for stable releases." +msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis." + +msgctxt "@info:tooltip" +msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." +msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo." + +msgctxt "@button" +msgid "Why do I need to sync material profiles?" +msgstr "Por que eu preciso sincronizar perfis de material?" + +msgctxt "@action:label" +msgid "Width (mm)" +msgstr "Largura (mm)" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escreve em formato G-Code comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escreve em formato G-Code." + +msgctxt "@label" +msgid "X (Width)" +msgstr "X (largura)" + +msgctxt "@label" +msgid "X max" +msgstr "X máx" + +msgctxt "@label" +msgid "X min" +msgstr "X mín" + +msgctxt "name" +msgid "X-Ray View" +msgstr "Visão de Raios-X" + +msgctxt "@item:inlistbox" +msgid "X-Ray view" +msgstr "Visão de Raios-X" + +msgctxt "@label" +msgid "X/Y" +msgstr "X/Y" + +msgctxt "@item:inlistbox" +msgid "X3D File" +msgstr "Arquivo X3D" + +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + +msgctxt "@label" +msgid "Y (Depth)" +msgstr "Y (Profundidade)" + +msgctxt "@label" +msgid "Y max" +msgstr "Y máx" + +msgctxt "@label" +msgid "Y min" +msgstr "Y mín" + +msgctxt "@info" +msgid "Yes" +msgstr "Sim" + +msgctxt "@label" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +#, python-brace-format +msgctxt "@label" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" +msgstr[1] "" +"Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n" +"Tem certeza que quer continuar?" + +msgctxt "@info:status" +msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." +msgstr "Você está tentando conectar a uma impressora que não está rodando UltiMaker Connect. Por favor atualize a impressora para o firmware mais recente." + +#, python-brace-format +msgctxt "@info:status" +msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." +msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo." + +msgctxt "@empty_state" +msgid "You don't have any backups currently. Use the 'Backup Now' button to create one." +msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um." + +msgctxt "@text:window, %1 is a profile name" +msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." +msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'." + +msgctxt "@label" +msgid "You need to accept the license to install the package" +msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado" + +msgctxt "@info:generic" +msgid "You need to quit and restart {} before changes have effect." +msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito." + +msgctxt "@dialog:info" +msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" +msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?" + +msgctxt "@info:status" +msgid "You will receive a confirmation via email when the print job is approved" +msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado" + +msgctxt "@info:backup_status" +msgid "Your backup has finished uploading." +msgstr "Seu backup terminou de ser enviado." + +msgctxt "@action:label" +msgid "Your current settings match the selected profile." +msgstr "Seus ajustes atuais coincidem com o perfil selecionado." + +msgctxt "@info" +msgid "Your new printer will automatically appear in Cura" +msgstr "Sua nova impressora vai automaticamente aparecer no Cura" + +#, python-brace-format +msgctxt "@info:status" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Sua impressora {printer_name} poderia estar conectada via nuvem.\n" +" Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory" + +msgctxt "@label" +msgid "Z" +msgstr "Z" + +msgctxt "@label" +msgid "Z (Height)" +msgstr "Z (Altura)" + +msgctxt "@label Description for application dependency" +msgid "ZeroConf discovery library" +msgstr "Biblioteca de descoberta 'ZeroConf'" + +msgctxt "@action:button" +msgid "Zoom toward mouse direction" +msgstr "Ampliar na direção do mouse" + +msgctxt "@info:tooltip" +msgid "Zooming towards the mouse is not supported in the orthographic perspective." +msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica." + +msgctxt "@text Placeholder for the username if it has been deleted" +msgid "deleted user" +msgstr "usuário removido" + +msgctxt "@item:inlistbox" +msgid "glTF Binary" +msgstr "Binário glTF" + +msgctxt "@item:inlistbox" +msgid "glTF Embedded JSON" +msgstr "glTF Embutido JSON" + +msgctxt "@label" +msgid "max" +msgstr "máx" + +msgctxt "@label" +msgid "min" +msgstr "mín" + +msgctxt "@label" +msgid "mm" +msgstr "mm" + +msgctxt "@info:status" +msgid "today" +msgstr "hoje" + +msgctxt "@info:status" +msgid "tomorrow" +msgstr "amanhã" + +msgctxt "@label" +msgid "version: %1" +msgstr "versão: %1" + +#, python-brace-format +msgctxt "@message {printer_name} is replaced with the name of the printer" +msgid "{printer_name} will be removed until the next account sync." +msgstr "{printer_name} será removida até a próxima sincronização de conta." + +msgctxt "@info:generic" +msgid "{} plugins failed to download" +msgstr "{} complementos falharam em baixar" + +#, python-brace-format +#~ msgctxt "info:{0} gets replaced by a number of printers" +#~ msgid "... and {0} other" +#~ msgid_plural "... and {0} others" +#~ msgstr[0] "... e {0} outra" +#~ msgstr[1] "... e {0} outras" + +#~ msgctxt "@action:inmenu menubar:edit" +#~ msgid "Arrange Selection" +#~ msgstr "Posicionar Seleção" + +#~ msgctxt "@tooltip:button" +#~ msgid "Become a 3D printing expert with UltiMaker e-learning." +#~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." + +#~ msgctxt "@info:status" +#~ msgid "Cura does not accurately display layers when Wire Printing is enabled." +#~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." + +#~ msgctxt "@label" +#~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." +#~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." + +#~ msgctxt "@error:zip" +#~ msgid "Error writing 3mf file." +#~ msgstr "Erro ao escrever arquivo 3mf." + +#~ msgctxt "@label" +#~ msgid "Hex" +#~ msgstr "Hexa" + +#~ msgctxt "@action:button" +#~ msgid "Install Materials" +#~ msgstr "Instalar Materiais" + +#~ msgctxt "@title" +#~ msgid "Install missing Materials" +#~ msgstr "Instalar Materiais faltantes" + +#~ msgctxt "@action:button" +#~ msgid "Install missing material" +#~ msgstr "Instalar material faltante" + +#~ msgctxt "@info:title" +#~ msgid "Material profiles not installed" +#~ msgstr "Perfis de material não instalados" + +#~ msgctxt "@info:title" +#~ msgid "Simulation View" +#~ msgstr "Visão Simulada" + +#~ msgctxt "@label" +#~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." +#~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." + +#~ msgctxt "@info:status" +#~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace." +#~ msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace." + +#~ msgctxt "@error:zip" +#~ msgid "The operating system does not allow saving a project file to this location or with this file name." +#~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 4b930306afc..74a22e725be 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -1,6741 +1,6741 @@ -# Cura -# Copyright (C) 2022 Ultimaker B.V. -# This file is distributed under the same license as the Cura package. -# -msgid "" -msgstr "" -"Project-Id-Version: Cura 5.0\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" -"PO-Revision-Date: 2023-10-23 06:17+0200\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: Cláudio Sampaio \n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.3.2\n" - -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." - -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." - -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." - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." - -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão)" - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta de Purga do Extrusor" - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Máximo Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamanho da Topografia de Camadas Adaptativas" - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." - -msgctxt "infill_wall_line_count description" -msgid "" -"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" -"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "" -"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" -"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendência à Aderência" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade de preenchimento da impressão." - -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." - -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." - -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" - -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Todos de Uma Vez" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar a Remoção de Malhas" - -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternar Direções de Parede" - -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Sempre Escrever a Ferramenta Ativa" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Sempre retrair quando se mover para iniciar uma parede externa." - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade de deslocamento aplicado às bases do suporte." - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha Anti-Pendente" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Anti-escorrimento" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Anti-escorrimento" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Partes Impressas nas Viagens" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes No Percurso" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Atrás" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Atrás à Esquerda" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Atrás à Direita" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambos se sobrepõem" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Camada Inicial do Padrão da Base" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Inferior" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura de Remoção do Contorno Inferior" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidade de Galho" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diâmetro de Galho" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ângulo de Diâmetro de Galho" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação de Quebra" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação de Quebra" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de Quebra de Preparação" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Quebra" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Quebra" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Quebra" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Quebrar Suportes em Pedaços" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade de Ventoinha da Ponte" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte Tem Camadas Múltiplas" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade de Segundo Contorno da Ponte" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade de Segundo Contorno da Ponte" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do Contorno de Ponte" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do Contorno de Ponte" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do Contorno de Ponte" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar de Suporte de Contorno de Ponte" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo de Terceiro Contorno da Ponte" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade de Terceiro Contorno da Ponte" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desengrenagem de Parede de Ponte" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da Parede de Ponte" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da Parede de Ponte" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância do Brim" - -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Brim Dentro da Margem a Evitar" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Contagem de Linhas do Brim" - -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Somente Para Fora" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim Substitui Suporte" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura do Brim" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Mesa" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de Aderência à Mesa" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo de Aderência da Mesa de Impressão" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Plataforma de Impressão" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Mesa" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura da Mesa de Impressão" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da Mesa de Impressão da Camada Inicial" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do Volume de Impressão" - -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centralizar Objeto" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de Desengrenagem" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de Desengrenagem" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." - -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de Linha de Comando" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo de Suporte Cônico" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura Mínima do Suporte Cônico" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar Linhas de Preenchimento" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar Polígonos do Preenchimento" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar Linhas de Suporte" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar os Ziguezagues do Suporte" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar Polígonos do Topo e Base" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de Resfriamento" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeração" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruzado" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruzado 3D" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho de Bolso do Cruzado 3D" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem de Densidade do Preenchimento Cruzado" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" - -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Cobertura de Subdivisão Cúbica" - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de Corte" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Default" - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Default da Plataforma de Impressão" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Default do Filamento" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Default de Impressão" - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk Default nos eixos X-Y" - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "O Jerk Default em Z" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O valor default de jerk para movimentos no plano horizontal." - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O valor default de jerk para movimento na direção Z." - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O valor default de jerk para movimentação do filamento." - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento de Diâmetro para o Modelo" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas Proibidas" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." - -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distância da parte inferior do suporte até a impressão." - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distância do topo do suporte à impressão." - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." - -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." - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Pontos de distância são deslocados para suavizar o caminho" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Pontos de distância são deslocados para suavizar o caminho" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da Cobertura de Trabalho" - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitação da Cobertura de Trabalho" - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da Cobertura de Trabalho" - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de Suporte Abaixo" - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusão Dual" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Habilitar Controle de Aceleração" - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar Ajustes de Ponte" - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar Desengrenagem" - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Habilitar Suporte Cônico" - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar Cobertura de Trabalho" - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Habilitar Movimento Fluido" - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar Passar a Ferro" - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Habilitar Controle de Jerk" - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar Controle de Temperatura do Bico" - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Habilitar Cobertura de Escorrimento" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Habilitar Massa de Purga" - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Habilitar Torre de Purga" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Habilitar Refrigeração de Impressão" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar Retração" - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar Brim de Suporte" - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar Base de Suporte" - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar Interface de Suporte" - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar Teto de Suporte" - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Habilitar Aceleração de Percurso" - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Habilitar Jerk de Percurso" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code Final" - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento de Purga do Fim do Filamento" - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade de Purga do Fim do Filamento" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em Todo Lugar" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expôr Costura" - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensa" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de Paredes de Preenchimento Extras" - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Contagem de Paredes Extras de Contorno" - -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." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X da Purga do Extrusor" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y da Purga do Extrusor" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z de Purga do Extrusor" - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusores Compartilham Aquecedor" - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusores Compartilham o Bico" - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de Velocidade de Resfriamento de Extrusão" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade da Ventoinha" - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Sobrepor Velocidade de Ventoinha" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Recursos que não foram completamente desenvolvidos ainda." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro da Engrenagem de Alimentação" - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração de Firmware" - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de Suporte da Primeira Camada" - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Raio de Equalização de Fluxo" - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de Compensação da Taxa de Fluxo" - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de Fluxo de Temperatura" - -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." - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensação de fluxo nos filetes da base da primeira camada" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo em filetes de preenchimento." - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensação de fluxo em filetes do teto ou base do suporte." - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo em filetes de torre de purga." - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de Fluxo em filetes de Skirt e Brim." - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nos filetes da base do suporte." - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo em filetes do teto de suporte." - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo em filetes de estruturas de suporte." - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo no filete de parede mais externo." - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo em filetes do topo e base." - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo em filetes das paredes." - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ângulo de Movimento Fluido" - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distância de Deslocamento do Movimento Fluido" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Distância Pequena do Movimento Fluido" - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da Descarga de Purga" - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade de Descarga de Purga" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frente" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frente à Esquerda" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frente à Direita" - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Contorno Felpudo Externo Apenas" - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância de Pontos do Contorno Felpudo" - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura do Contorno Felpudo" - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Sabor de G-Code" - -msgctxt "machine_end_gcode description" -msgid "" -"G-code commands to be executed at the very end - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no final da impressão - separados por \n" -"." - -msgctxt "machine_start_gcode description" -msgid "" -"G-code commands to be executed at the very start - separated by \n" -"." -msgstr "" -"Comandos G-Code a serem executados no início da impressão - separados por \n" -"." - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. É ajustado automaticamente." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do Eixo" - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Gerar Estrutura Interligada" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Gerar Suporte" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual" - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Passos Graduais de Preenchimento" - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura de Passo do Preenchimento Gradual de Suporte" - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Passos de Preenchimento Gradual de Suporte" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grade" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giróide" - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem Estabilização de Temperatura do Volume de Impressão" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Mesa Aquecida" - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de Aquecimento" - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da Zona de Aquecimento" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Costura" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Costura" - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão Horizontal do Furo" - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Horizontal" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." - -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 "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "De quanto o filamento deve ser retraído para se destacar completamente." - -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." - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Quão rápido purgar o material depois de alternar para um material diferente." - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." - -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." - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado." - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Mesa" - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas de Material" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" - -msgctxt "infill description" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "infill label" -msgid "Infill" -msgstr "Preenchimento" - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração do Preenchimento" - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Preenchimento Antes das Paredes" - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Preenchimento" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor do Preenchimento" - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Preenchimento" - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Preenchimento" - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura da Camada de Preenchimento" - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções de Filetes de Preenchimento" - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância da Linha de Preenchimento" - -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de Filete de Preenchimento" - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largura de Extrusão do Preenchimento" - -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malha de Preenchimento" - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo de Seções Pendentes do Preenchimento" - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição de Preenchimento" - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Preenchimento" - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Preenchimento" - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade de Preenchimento" - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Suporte do Preenchimento" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Otimização de Percurso de Preenchimento" - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância de Varredura do Preenchimento" - -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocamento X do Preenchimento" - -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocamento do Preenchimento Y" - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas Inferiores Iniciais" - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial da Ventoinha" - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da Camada Inicial" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Fluxo da Base da Camada Inicial" - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diâmetro da Camada Inicial" - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Inicial de Camada" - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura da Primeira Camada" - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal da Camada Inicial" - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Fluxo de Parede Interna da Camada Inicial" - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largura de Extrusão da Camada Inicial" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Fluxo de Parede Externa da Camada Inicial" - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de Impressão da Camada Inicial" - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk de Impressão da Camada Inicial" - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de Impressão da Camada Inicial" - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade da Camada Inicial" - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância de Filetes da Camada Inicial de Suporte" - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de Percurso da Camada Inicial" - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk de Percurso da Camada Inicial" - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de Percurso da Camada Inicial" - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição em Z das Camadas Iniciais" - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura Inicial de Impressão" - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração das Paredes Interiores" - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor da Parede Interior" - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Internas" - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade da Parede Interior" - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Fluxo da(s) Parede(s) Interna(s)" - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largura de Extrusão das Paredes Internas" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De Dentro Pra Fora" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linhas de interface preferidas" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interface preferida" - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Contagem de Camadas das Vigas Interligadas" - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largura da Viga Interligada" - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Prevenção de Fronteira de Interligação" - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidade de Interligação" - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientação da Estrutura de Interligação" - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Passar a Ferro Somente Camada Mais Alta" - -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Passar a Ferro" - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Passagem a Ferro" - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Penetração da Passagem a Ferro" - -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Passar a Ferro" - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaçamento de Passagem a Ferro" - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Passagem a Ferro" - -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Passar o Ferro" - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origem é no Centro" - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "É material de suporte" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Desconectadas" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de Camada" - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Inicial da Camada" - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Inicial da Camada" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Espessura da camada intermediária do raft." - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Espessura de camada das camadas superiores do raft." - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar Cabeça" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de Poda do Preenchimento Relâmpago" - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de Retificação do Preenchimento Relâmpago" - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de Suporte do Preenchimento Relâmpago" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitar Alcance de Galho" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largura de Extrusão" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Mesa" - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da Cabeça com Ventoinha" - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura do Volume" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Mesa" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos da máquina" - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Torna Seções Pendentes Imprimíveis" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Faz as áreas de suporte menores na base que na seção pendente." - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Faz as malhas mais adequadas para impressão 3D." - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do Material" - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de Material Entre Limpezas" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Máxima Distância de Combing Sem Retração" - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração Máxima em X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Máxima em Y" - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Máxima em Z" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ângulo Máximo de Galho" - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio Máximo" - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio Máximo de Área de Extrusão" - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima da Ventoinha" - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo Máximo do Modelo" - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área Máxima de Furo de Seções Pendentes" - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração Máxima de Descanso" - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Contagem de Retrações Máxima" - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Máximo do Contorno para Expansão" - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de Extrusão" - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade Máxima em X" - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Máxima em Y" - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Máxima em Z" - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado por Torres" - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Máxima Resolução de Percurso" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "A aceleração máxima para o motor da impressora na direção X" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleração máxima para a entrada de filamento no hotend." - -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 "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." - -msgctxt "max_extrusion_before_wipe description" -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 "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição de Malhas Combinadas" - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correções de Malha" - -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posição X da Malha" - -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posição Y da Malha" - -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posição Z da Malha" - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Hierarquia do Processamento de Malha" - -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz de Rotação da Malha" - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Meio" - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura Mínima do Molde" - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínima em Temperatura de Espera" - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento de Parede de Ponte Mínimo" - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Par" - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Janela de Distância de Extrusão Mínima" - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mínimo Tamanho de Detalhe" - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura Mínima Para O Modelo" - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área Mínima para Preenchimento" - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo Mínimo de Camada" - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Ímpar" - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mínima Circunferência do Polígono" - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima de Contorno para Expansão" - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área Mínima de Suporte" - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área Mínima de Base de Suporte" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área Mínima de Interface de Suporte" - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área Mínima de Teto de Suporte" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância Mínima de Suporte X/Y" - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largura Mínima de Filete de Parede Fina" - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume Mínimo Antes da Desengrenagem" - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largura Mínina de Filete de Parede" - -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 "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." - -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 "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -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 "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." - -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do Molde" - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura de Teto do Molde" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Passagem a Ferro Monotônica" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da Superfície Monotônica Superior" - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Monotônica Superior/Inferior" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator de Movimento Sem Carga" - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Contorno nas Lacunas Z" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Jeitos não-tradicionais de imprimir seus modelos." - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhuma" - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Contorno" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Externa" - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do Bico" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do bico" - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas Proibidas para o Bico" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Bico" - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do Bico" - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Avanço Extra da Troca de Bico" - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de Avanço da Troca de Bico" - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de Retração da Troca de Bico" - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de Retração da Troca do Bico" - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de Extrusores Habilitados" - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de Camadas Mais Lentas" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes com que mover o bico através da varredura." - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" - -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Deslocamento aplicado ao objeto na direção X." - -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Deslocamento aplicado ao objeto na direção Y." - -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Deslocamento com o Extrusor" - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Na plataforma de impressão quando possível" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "No modelo se requerido" - -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Um de Cada Vez" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." - -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da Cobertura de Escorrimento" - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da Cobertura de Escorrimento" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Alcance Ótimo de Galho" - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem de Impressão de Paredes" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro Externo do Bico" - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da Parede Exterior" - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor da Parede Externa" - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo da Parede Externa" - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Penetração da Parede Externa" - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largura de Extrusão da Parede Externa" - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade da Parede Exterior" - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância de Varredura da Parede Externa" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De Fora Pra Dentro" - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo de Parede Pendente" - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade de Parede Pendente" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa após desfazimento da retração." - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ângulo Preferido de Galho" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da Torre de Purga" - -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim da Torre de Purga" - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da Torre de Purga" - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Purga" - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largura de Extrusão da Torre de Purga" - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume Mínimo da Torre de Purga" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho da Torre de Purga" - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da Torre de Purga" - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da Torre de Purga" - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da Torre de Purga" - -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração da Impressão" - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de Impressão" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de Impressão da Camada Inicial" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Vão Aéreo do Raft" - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da Base do Raft" - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade de Ventoinha da Base do Raft" - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento de Filete de Base do Raft" - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largura de Linha da Base do Raft" - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração de Impressão da Base do Raft" - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de Impressão da Base do Raft" - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade de Impressão da Base do Raft" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Contagem de Paredes da Base do Raft" - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional do Raft" - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade de Ventoinha no Raft" - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do Meio do Raft" - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade de Ventoinha do Meio do Raft" - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas Centrais do Raft" - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largura da Linha do Meio do Raft" - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração de Impressão do Meio do Raft" - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de Impressão do Meio do Raft" - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade de Impressão do Meio do Raft" - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração de Impressão do Raft" - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de Impressão do Raft" - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade de Impressão do Raft" - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Amaciamento do Raft" - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor do Topo do Raft" - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade da Ventoinha para o Topo do Raft" - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura da Camada Superior do Raft" - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largura do Filete Superior do Raft" - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração de Impressão do Topo do Raft" - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de Impressão do Topo do Raft" - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade de Impressão do Topo do Raft" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" - -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Aleatorizar o Começo do Preenchimento" - -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." - -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." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Regular da Ventoinha" - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidade Regular da Ventoinha na Altura" - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidade Regular da Ventoinha na Camada" - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão Relativa" - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos os Furos" - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover Interseções de Malha" - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover Cantos Internos de Raft" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferência de Descanso" - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes da Parede Externa" - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrai em Mudança de Camada" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." - -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." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância da Retração" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Quantidade Adicional de Avanço da Retração" - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Percurso Mínimo para Retração" - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de Avanço da Retração" - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade de Recolhimento de Retração" - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Velocidade de Escala da Ventoinha A 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento" - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "A Cena Tem Malhas de Suporte" - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência do Canto da Costura" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes usados para imprimir com vários extrusores." - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração Inicial do Bico Compartilhado" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto Mais Agudo" - -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais Curto" - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Exibir Variantes de Máquina" - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Contorno" - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Contorno" - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância de Expansão do Contorno" - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição do Contorno" - -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentagem de Sobreposição do Contorno" - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura de Remoção de Contorno" - -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." - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância do Skirt" - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura do Skirt" - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Contagem de linhas de Skirt" - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração para Skirt e Brim" - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do Skirt/Brim" - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Skirt/Brim" - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Skirt e Brim" - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largura de Extrusão do Brim e Skirt" - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mínimo Comprimento do Skirt e Brim" - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade do Skirt e Brim" - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância de Fatiamento" - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento Máximo do Aspecto Pequeno" - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de Aspecto Pequeno" - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho Máximo de Furos Pequenos" - -#, fuzzy -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de Impressão Final" - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Pequena Base/Teto Na Superfície" - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Largura do Teto/Base Pequenos" - -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 "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')" - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Brim Inteligente" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Suavizar Contornos Espiralizados" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." - -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." - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" - -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade com que mover o eixo Z durante o salto." - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar o Contorno Externo" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura de Espera" - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code Inicial" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" - -msgctxt "support description" -msgid "Support" -msgstr "Suporte" - -msgctxt "support label" -msgid "Support" -msgstr "Suporte" - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração do Suporte" - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância Inferior do Suporte" - -#, fuzzy -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Número de Filetes do Brim de Suporte" - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura do Brim de Suporte" - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Contagem de Linhas de Pedaço de Suporte" - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do Pedaço de Suporte" - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade das Distâncias de Suporte" - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor do Suporte" - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração da Base do Suporte" - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade da Base do Suporte" - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor da Base do Suporte" - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo da Base de Suporte" - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão Horizontal da Base do Suporte" - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk da Base do Suporte" - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções de Filete da Base do Suporte" - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância de Filetes da Base de Suporte" - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largura de Extrusão da Base do Suporte" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão de Base de Suporte" - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade de Base do Suporte" - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura da Base de Suporte" - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão Horizontal do Suporte" - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração do Preenchimento do Suporte" - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor do Preenchimento do Suporte" - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk de Preenchimento de Suporte" - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura de Camada do Preenchimento de Suporte" - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção de Filete do Preenchimento de Suporte" - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade do Preenchimento do Suporte" - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da Interface de Suporte" - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidade da Interface de Suporte" - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor da Interface de Suporte" - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo de Interface de Suporte" - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão Horizontal da Interface de Suporte" - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface de Suporte" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções do Filete de Interface de Suporte" - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largura de Extrusão da Interface do Suporte" - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da Interface de Suporte" - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridade de Interface de Suporte" - -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução da Interface de Suporte" - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da Interface de Suporte" - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura da Interface de Suporte" - -#, fuzzy -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância de União do Suporte" - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância das Linhas do Suporte" - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largura de Extrusão do Suporte" - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de Suporte" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo para Caracterizar Seções Pendentes" - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão do Suporte" - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação dos Suportes" - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do Teto de Suporte" - -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do Teto de Suporte" - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor do Teto do Suporte" - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto de Suporte" - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão Horizontal do Teto de Suporte" - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Teto de Suporte" - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções de Filete do Teto do Suporte" - -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância de Filetes do Teto de Suporte" - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largura de Extrusão do Teto do Suporte" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão de Teto de Suporte" - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do Teto de Suporte" - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do Topo do Suporte" - -#, fuzzy -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade do Suporte" - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima do Passo de Suporte em Escada" - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de Suporte" - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância Superior do Suporte" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Contagem de Linhas de Parede de Suporte" - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do Suporte" - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância em Z do Suporte" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Filetes de suporte preferidos" - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Suporte preferido" - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade de Ventoinha do Contorno Suportado" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" - -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia de Superfície" - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de Superficie" - -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendência de aderência da superfície." - -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia de superfície." - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." - -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 "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleração durante a impressão da camada inicial." - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleração para a camada inicial." - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleração para percursos na camada inicial." - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Aceleração com que se imprimem as paredes interiores." - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o preenchimento é impresso." - -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com que o recurso de passar a ferro é feito." - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleração com que se realiza a impressão." - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que as camadas de base do raft são impressas." - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleração com que se imprime o preenchimento dos suportes." - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada intermediária do raft é impressa." - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleração com que se imprime a parede exterior." - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleração com que a torre de purga é impressa." - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleração com que as estruturas de suporte são impressas." - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleração com que se imprimem as paredes." - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com a qual as camadas da superfície superior são impressas." - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleração com que as camadas superiores e inferiores são impressas." - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleração com que se realizam os percursos." - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." - -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." - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." - -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." - -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área imprimível." - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro da torre especial." - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da engrenagem que traciona o material no alimentador." - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "A diferença em tamanho da próxima camada comparada à anterior." - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as trajetórias de passagem a ferro." - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." - -#, fuzzy -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade de ventoinha para a camada base do raft." - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade de ventoina para a camada intermediária do raft." - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade da ventoinha para a impressão do raft." - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade da ventoinha para as camadas superiores do raft." - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) do volume imprimível." - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "A altura acima das partes horizontais do modelo onde criar o molde." - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferença de altura ao realizar um Salto Z." - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao executar um Salto Z." - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." - -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." - -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 "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." - -msgctxt "skirt_gap description" -msgid "" -"The horizontal distance between the skirt and the first layer of the print.\n" -"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "" -"A distância horizontal entre o skirt a primeira camada da impressão.\n" -"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." - -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo X." - -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com o qual a camada de base do raft é impressa." - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com o qual a camada intermediária do raft é impressa." - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com o qual o raft é impresso." - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com o qual as camadas superiores do raft são impressas." - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "O comprimento de filamento retornado durante uma retração." - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da plataforma de impressão presente na impressora." - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A variação de altura máxima permitida para a camada de base." - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." - -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima para o motor da impressora na direção X." - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Y." - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima para o motor da impressora na direção Z." - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima de entrada de filamento no hotend." - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidade mínima de entrada de filamento no hotend." - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." - -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." - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nome do seu modelo de impressora 3D." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de preenchimento que suportam arestas de contorno." - -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 da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." - -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." - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -#, fuzzy -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." - -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Diâmetro exterior do bico (a ponta do hotend)." - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão das camadas superiores." - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Padrão ou Estampa das camadas superiores e inferiores." - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão na base da impressão na primeira camada." - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão com o qual as bases do suporte são impressas." - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão com o qual o teto do suporte é impresso." - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." - -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidade em que se imprime o preenchimento." - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidade em que se realiza a impressão." - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "A velocidade com a qual as paredes de ponte são impressas." - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." - -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." - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." - -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." - -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." - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." - -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." - -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." - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." - -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." - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade em que as ventoinhas giram." - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade em que o raft é impresso." - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidade em que se imprimem as paredes." - -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade com que as camadas superiores são impressas." - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidade em que as camadas superiores e inferiores são impressas." - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidade em que ocorrem os movimentos de percurso." - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." - -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." - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." - -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." - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura usada para impressão." - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do preenchimento extra que suporta arestas de contorno." - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-Code a ser gerado." - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área imprimível." - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." - -#, fuzzy -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "A largura da torre de purga." - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de purga." - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." - -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." - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "A coordenada X da posição da torre de purga." - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "A coordenada Y da posição da torre de purga." - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." - -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." - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diâmetro da Ponta" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância de Expansão do Contorno Superior" - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura de Remoção do Contorno Superior" - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração da Superfície Superior" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor da Superfície Superior" - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo do Contorno da Superfície Superior" - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk da Superfície Superior" - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas da Superfície Superior" - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções dos Filetes da Superfície Superior" - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largura de extrusão da Superfície Superior" - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão da Superfície Superior" - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade da Superfície Superior" - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior/Inferior" - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração Superior/Inferior" - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior/Inferior" - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo de Topo/Base" - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções de Linha Superior/Inferior" - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largura de Extrusão Superior/Inferior" - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior/Inferior" - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior/Inferior" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando a Mesa" - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da Torre" - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do Teto da Torre" - -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 "travel label" -msgid "Travel" -msgstr "Percurso" - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de Percurso" - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância de Desvio de Percurso" - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Percurso" - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de Percurso" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulo" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diâmetro do Tronco" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volumes de Sobreposição de Uniões" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Usar Camadas Adaptativas" - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar Torres" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." - -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificado pelo Usuário" - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de Fator de Encolhimento Vertical" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Aguardar o Aquecimento da Mesa" - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Aguardar Aquecimento do Bico" - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração da Parede" - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Contagem de Distribuição de Parede" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor das Paredes" - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo de Parede" - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk da Parede" - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número de Filetes da Parede" - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largura de Extrusão da Parede" - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordem de Parede" - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade da Parede" - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura de Parede" - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de Transição de Parede" - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância de Filtro da Transição de Parede" - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem de Filtro de Transição de Parede" - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo-Limite de Transição de Parede" - -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -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 "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." - -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo':" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." - -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." - -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." - -msgctxt "wipe_hop_enable description" -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 "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." - -msgctxt "retraction_hop_enabled 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, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Decide se a plataforma de impressão pode ser aquecida." - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." - -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." - -msgctxt "clean_between_layers description" -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 "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." - -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 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 "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." - -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 "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largura de um filete de preenchimento." - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Largura de um filete usado no teto ou base do suporte." - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Largura de extrusão de um filete das áreas no topo da peça." - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largura de um filete usado na torre de purga." - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largura de um filete usado na base do suporte." - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largura de um filete usado no teto do suporte." - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largura de um filete usado nas estruturas de suporte." - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largura de um filete que faz parte de uma parede." - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da Varredura de Limpeza" - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do Salto de Limpeza" - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar Bico Inativo na Torre de Purga" - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância de Movimentação da Limpeza" - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar o Bico Entre Camadas" - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa de Limpeza" - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de Repetições de Limpeza" - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de Retração da Limpeza" - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitar Retração de Limpeza" - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade Extra de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de Purga da Retração de Limpeza" - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade da Retração da Retração de Limpeza" - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade da Retração de Limpeza" - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z da Limpeza" - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do Salto Z da Limpeza" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dentro do Preenchimento" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X na Direção Positiva" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Localização X onde o script de limpeza iniciará." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y na Direção Positiva" - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z na Direção Positiva" - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z Após Troca de Extrusor" - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto Z Após Troca de Altura do Extrusor" - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do Salto Z" - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z Somente Sobre Partes Impressas" - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z Ao Retrair" - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Costura em Z" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Costura Z" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costura Z Relativa" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Coordenada X da Costura Z" - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Coordenada Y da Costura Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "travel description" -msgid "travel" -msgstr "percurso" - -# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual habilitado" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações de fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração máxima de fluxo da camada inicial" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho de passo da discretização de fluxo gradual" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada passo na alteração de fluxo gradual" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Duração de reset do fluxo" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - -#~ 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 "machine_head_with_fans_polygon description" -#~ msgid "A 2D silhouette of the print head (fan caps included)." -#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." - -#~ msgctxt "spaghetti_infill_extra_volume description" -#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." -#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." - -#~ msgctxt "sub_div_rad_mult description" -#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." -#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive Layers Threshold" -#~ msgstr "Limite das Camadas Adaptativas" - -#~ msgctxt "adaptive_layer_height_variation label" -#~ msgid "Adaptive layers maximum variation" -#~ msgstr "Variação máxima das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_threshold label" -#~ msgid "Adaptive layers threshold" -#~ msgstr "Limite das camadas adaptativas" - -#~ msgctxt "adaptive_layer_height_variation_step label" -#~ msgid "Adaptive layers variation step size" -#~ msgstr "Tamanho de passo da variação das camadas adaptativas" - -#~ msgctxt "wall_add_middle_threshold label" -#~ msgid "Add Middle Line Threshold" -#~ msgstr "Adicionar Limite de Filete Central" - -#~ msgctxt "support_interface_density description" -#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." - -#~ msgctxt "spaghetti_flow description" -#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." -#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." - -#~ msgctxt "dual_pre_wipe description" -#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." -#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." - -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Aguardar o aquecimento da mesa de impressão" -#~ msgstr "Esperar a que la placa de impresión se caliente" - -#~ msgctxt "cross_infill_apply_pockets_alternatingly label" -#~ msgid "Alternate Cross 3D Pockets" -#~ msgstr "Bolso Alternados de Cruzado 3D" - -#~ msgctxt "skin_alternate_rotation label" -#~ msgid "Alternate Skin Rotation" -#~ msgstr "Alterna a Rotação do Contorno" - -#~ msgctxt "skin_alternate_rotation description" -#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." -#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." - -#~ msgctxt "prime_tower_purge_volume description" -#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." -#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." - -#~ msgctxt "hole_xy_offset description" -#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." -#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" -#~ msgid "Apply the extruder offset to the coordinate system." -#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." - -#~ msgctxt "material_flow_dependent_temperature label" -#~ msgid "Auto Temperature" -#~ msgstr "Temperatura Automática" - -#~ msgctxt "z_seam_type option back" -#~ msgid "Back" -#~ msgstr "Costas" - -#~ msgctxt "bridge_wall_max_overhang label" -#~ msgid "Bridge Wall Max Overhang" -#~ msgstr "Seção Pendente Máxima da Parede de Ponte" - -#~ msgctxt "machine_shape label" -#~ msgid "Build plate shape" -#~ msgstr "Forma da mesa de impressão" - -#~ msgctxt "center_object label" -#~ msgid "Center object" -#~ msgstr "Centralizar Objeto" - -#~ msgctxt "material_flow_dependent_temperature description" -#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." -#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." - -#~ msgctxt "prime_tower_circular label" -#~ msgid "Circular Prime Tower" -#~ msgstr "Torre de Purga Circular" - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." -#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." - -#~ msgctxt "retraction_combing description" -#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." -#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." - -#~ msgctxt "wireframe_strategy option compensate" -#~ msgid "Compensate" -#~ msgstr "Compensar" - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" -#~ msgid "Compensate Inner Wall Overlaps" -#~ msgstr "Compensar Sobreposições da Parede Interna" - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" -#~ msgid "Compensate Outer Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede Externa" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled label" -#~ msgid "Compensate Wall Overlaps" -#~ msgstr "Compensar Sobreposições de Parede" - -#~ msgctxt "travel_compensate_overlapping_walls_enabled description" -#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" -#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." - -#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" -#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." -#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." - -#~ msgctxt "infill_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_bottom_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_interface_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "support_roof_pattern option concentric_3d" -#~ msgid "Concentric 3D" -#~ msgstr "Concêntrico 3D" - -#~ msgctxt "zig_zaggify_infill description" -#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." - -#~ msgctxt "connect_skin_polygons description" -#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." -#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." - -#~ msgctxt "z_seam_corner description" -#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." -#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." - -#~ msgctxt "machine_nozzle_cool_down_speed label" -#~ msgid "Cool down speed" -#~ msgstr "Velocidade de resfriamento" - -#~ msgctxt "wireframe_top_jump description" -#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." -#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." - -#~ msgctxt "sub_div_rad_mult label" -#~ msgid "Cubic Subdivision Radius" -#~ msgstr "Raio de Subdivisão Cúbica" - -#~ msgctxt "wireframe_bottom_delay description" -#~ msgid "Delay time after a downward move. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_top_delay description" -#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." -#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flat_delay description" -#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." -#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "inset_direction description" -#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." -#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." - -#~ msgctxt "infill_mesh_order description" -#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." -#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." - -#~ msgctxt "machine_disallowed_areas label" -#~ msgid "Disallowed areas" -#~ msgstr "Áreas proibidas" - -#~ msgctxt "wireframe_nozzle_clearance description" -#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." -#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_interface_line_distance description" -#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." -#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." - -#~ msgctxt "support_z_distance description" -#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." -#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." - -#~ msgctxt "wireframe_up_half_speed description" -#~ msgid "" -#~ "Distance of an upward move which is extruded with half speed.\n" -#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." -#~ msgstr "" -#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" -#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." - -#~ msgctxt "support_xy_distance_overhang description" -#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " -#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " - -#~ msgctxt "wireframe_fall_down description" -#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_drag_along description" -#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "multiple_mesh_overlap label" -#~ msgid "Dual Extrusion Overlap" -#~ msgstr "Sobreposição de Extrusão Dual" - -#~ msgctxt "support_enable label" -#~ msgid "Enable Support" -#~ msgstr "Habilitar Suportes" - -#~ msgctxt "support_enable description" -#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." -#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." - -#~ msgctxt "machine_end_gcode label" -#~ msgid "End GCode" -#~ msgstr "G-Code Final" - -#~ msgctxt "material_end_of_filament_purge_length label" -#~ msgid "End Of Filament Purge Length" -#~ msgstr "Comprimento de Purga de Fim de Filamento" - -#~ msgctxt "material_end_of_filament_purge_speed label" -#~ msgid "End Of Filament Purge Speed" -#~ msgstr "Velocidade de Purga de Fim de Filamento" - -#~ msgctxt "speed_equalize_flow_enabled label" -#~ msgid "Equalize Filament Flow" -#~ msgstr "Equalizar Fluxo de Filamento" - -#~ msgctxt "fill_perimeter_gaps option everywhere" -#~ msgid "Everywhere" -#~ msgstr "Em todos os lugares" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Bottom Skins Into Infill" -#~ msgstr "Expande Contorno da Base Para Preenchimento" - -#~ msgctxt "expand_lower_skins label" -#~ msgid "Expand Lower Skins" -#~ msgstr "Expandir Contornos Inferiores" - -#~ msgctxt "expand_skins_into_infill label" -#~ msgid "Expand Skins Into Infill" -#~ msgstr "Expandir Contorno Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Top Skins Into Infill" -#~ msgstr "Expandir Contorno do Topo Para Preenchimento" - -#~ msgctxt "expand_upper_skins label" -#~ msgid "Expand Upper Skins" -#~ msgstr "Expandir Contornos Superiores" - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." - -#~ msgctxt "expand_skins_into_infill description" -#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." -#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." - -#~ msgctxt "expand_lower_skins description" -#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." -#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." - -#~ msgctxt "expand_upper_skins description" -#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." -#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." - -#~ msgctxt "support_conical_enabled description" -#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." -#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." - -#~ msgctxt "machine_filament_park_distance label" -#~ msgid "Filament Park Distance" -#~ msgstr "Distância de Descanso do Filamento" - -#~ msgctxt "fill_perimeter_gaps label" -#~ msgid "Fill Gaps Between Walls" -#~ msgstr "Preenche Lacunas Entre Paredes" - -#~ msgctxt "fill_perimeter_gaps description" -#~ msgid "Fills the gaps between walls where no walls fit." -#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." - -#~ msgctxt "filter_out_tiny_gaps label" -#~ msgid "Filter Out Tiny Gaps" -#~ msgstr "Filtrar Pequenas Lacunas" - -#~ msgctxt "filter_out_tiny_gaps description" -#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." -#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." - -#~ msgctxt "small_feature_speed_factor_0 label" -#~ msgid "First Layer Speed" -#~ msgstr "Velocidade da Primeira Camada" - -#~ msgctxt "wireframe_flow_connection description" -#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." -#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_flow_flat description" -#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." - -#~ msgctxt "prime_tower_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." -#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." - -#~ msgctxt "wireframe_flow description" -#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." -#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." - -#~ msgctxt "flow_rate_extrusion_offset_factor label" -#~ msgid "Flow rate compensation factor" -#~ msgstr "Fator de compensaçõ de taxa de fluxo" - -#~ msgctxt "flow_rate_max_extrusion_offset label" -#~ msgid "Flow rate compensation max extrusion offset" -#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code Flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "G-code flavour" -#~ msgstr "Sabor de G-Code" - -#~ msgctxt "material_guid description" -#~ msgid "GUID of the material. This is set automatically. " -#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " - -#~ msgctxt "gantry_height label" -#~ msgid "Gantry height" -#~ msgstr "Altura do eixo" - -#~ msgctxt "machine_end_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very end - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_start_gcode description" -#~ msgid "" -#~ "Gcode commands to be executed at the very start - separated by \n" -#~ "." -#~ msgstr "" -#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" -#~ "." - -#~ msgctxt "machine_gcode_flavor label" -#~ msgid "Gcode flavour" -#~ msgstr "Tipo de G-Code" - -#~ msgctxt "support_tree_enable description" -#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." -#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." - -#~ msgctxt "ironing_enabled description" -#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." -#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." - -#~ msgctxt "machine_heated_bed label" -#~ msgid "Has heated build plate" -#~ msgstr "Tem mesa de impressão aquecida" - -#~ msgctxt "machine_nozzle_heat_up_speed label" -#~ msgid "Heat up speed" -#~ msgstr "Velocidade de aquecimento" - -#~ msgctxt "machine_heat_zone_length label" -#~ msgid "Heat zone length" -#~ msgstr "Comprimento da zona de aquecimento" - -#~ msgctxt "infill_hollow label" -#~ msgid "Hollow Out Objects" -#~ msgstr "Tornar Objetos Ocos" - -#~ msgctxt "support_tree_branch_distance description" -#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." -#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." - -#~ msgctxt "machine_steps_per_mm_e description" -#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." -#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." - -#~ msgctxt "slicing_tolerance description" -#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." -#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." - -#~ msgctxt "wall_min_flow_retract description" -#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." -#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." - -#~ msgctxt "skin_no_small_gaps_heuristic label" -#~ msgid "Ignore Small Z Gaps" -#~ msgstr "Ignorar Pequenas Lacunas em Z" - -#~ msgctxt "start_layers_at_same_position description" -#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." -#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." - -#~ msgctxt "material_bed_temp_prepend label" -#~ msgid "Include build plate temperature" -#~ msgstr "Incluir temperatura da mesa de impressão" - -#~ msgctxt "material_print_temp_prepend label" -#~ msgid "Include material temperatures" -#~ msgstr "Incluir temperaturas dos materiais" - -#~ msgctxt "infill_mesh_order label" -#~ msgid "Infill Mesh Order" -#~ msgstr "Order das Malhas de Preenchimento" - -#~ msgctxt "z_offset_layer_0 label" -#~ msgid "Initial Layer Z Offset" -#~ msgstr "Deslocamento em Z da Camada Inicial" - -#~ msgctxt "wall_x_extruder_nr label" -#~ msgid "Inner Walls Extruder" -#~ msgstr "Extrusor das Paredes Internas" - -#~ msgctxt "machine_center_is_zero label" -#~ msgid "Is center origin" -#~ msgstr "A origem está no centro" - -#~ msgctxt "wireframe_strategy option knot" -#~ msgid "Knot" -#~ msgstr "Nó" - -#~ msgctxt "limit_support_retractions label" -#~ msgid "Limit Support Retractions" -#~ msgstr "Limitar Retrações de Suporte" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine Head Polygon" -#~ msgstr "Polígono Da Cabeça da Máquina" - -#~ msgctxt "machine_depth label" -#~ msgid "Machine depth" -#~ msgstr "Profundidada da mesa" - -#~ msgctxt "machine_head_with_fans_polygon label" -#~ msgid "Machine head & Fan polygon" -#~ msgstr "Polígono da cabeça da máquina e da ventoinha" - -#~ msgctxt "machine_head_polygon label" -#~ msgid "Machine head polygon" -#~ msgstr "Polígono da cabeça da máquina" - -#~ msgctxt "machine_height label" -#~ msgid "Machine height" -#~ msgstr "Altura do volume de impressão" - -#~ msgctxt "machine_width label" -#~ msgid "Machine width" -#~ msgstr "Largura da mesa" - -#~ msgctxt "prime_tower_circular description" -#~ msgid "Make the prime tower as a circular shape." -#~ msgstr "Faz a torre de purga na forma circular." - -#~ msgctxt "material_end_of_filament_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_end_of_filament_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_length description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_flush_purge_speed description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_maximum_park_duration description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "material_no_load_move_factor description" -#~ msgid "Material Station internal value" -#~ msgstr "Valor interno da Estação de Material" - -#~ msgctxt "machine_max_feedrate_e label" -#~ msgid "Maximum Feedrate" -#~ msgstr "Velocidade Máxima de Alimentação" - -#~ msgctxt "speed_equalize_flow_max label" -#~ msgid "Maximum Speed for Flow Equalization" -#~ msgstr "Velocidade Máxima para Equalização de Fluxo" - -#~ msgctxt "max_feedrate_z_override label" -#~ msgid "Maximum Z Speed" -#~ msgstr "Velocidade Máxima em Z" - -#~ 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 "speed_equalize_flow_max description" -#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." -#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." - -#~ msgctxt "mesh_position_x label" -#~ msgid "Mesh position x" -#~ msgstr "Posição X da malha" - -#~ msgctxt "mesh_position_y label" -#~ msgid "Mesh position y" -#~ msgstr "Posição Y da malha" - -#~ msgctxt "mesh_position_z label" -#~ msgid "Mesh position z" -#~ msgstr "Posição Z da malha" - -#~ msgctxt "support_minimal_diameter label" -#~ msgid "Minimum Diameter" -#~ msgstr "Diâmetro mínimo" - -#~ msgctxt "wall_min_flow label" -#~ msgid "Minimum Wall Flow" -#~ msgstr "Mínimo Fluxo da Parede" - -#~ msgctxt "wall_min_flow description" -#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." -#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." - -#~ 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." - -#~ 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 not be generated." -#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." - -#~ 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 not be generated." -#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." - -#~ msgctxt "support_minimal_diameter description" -#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." - -#~ msgctxt "retraction_combing option noskin" -#~ msgid "No Skin" -#~ msgstr "Evita Contornos" - -#~ msgctxt "meshfix_keep_open_polygons description" -#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." -#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." - -#~ msgctxt "fill_perimeter_gaps option nowhere" -#~ msgid "Nowhere" -#~ msgstr "Em lugar nenhum" - -#~ msgctxt "machine_nozzle_expansion_angle label" -#~ msgid "Nozzle angle" -#~ msgstr "Ângulo do bico" - -#~ msgctxt "machine_nozzle_head_distance label" -#~ msgid "Nozzle length" -#~ msgstr "Comprimento do bico" - -#~ msgctxt "extruders_enabled_count label" -#~ msgid "Number of Extruders that are enabled" -#~ msgstr "Número de Extrusores habilitados" - -#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" -#~ msgid "Offset With Extruder" -#~ msgstr "Deslocamento do Extrusor" - -#~ 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 excesive stringing within the support structure." -#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." - -#~ 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." - -#~ msgctxt "cross_infill_apply_pockets_alternatingly description" -#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." -#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." - -#~ msgctxt "optimize_wall_printing_order description" -#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." -#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." - -#~ msgctxt "support_infill_angles description" -#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." -#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." - -#~ msgctxt "outer_inset_first label" -#~ msgid "Outer Before Inner Walls" -#~ msgstr "Paredes exteriores antes das interiores" - -#~ msgctxt "machine_nozzle_tip_outer_diameter label" -#~ msgid "Outer nozzle diameter" -#~ msgstr "Diametro externo do bico" - -#~ msgctxt "wireframe_straight_before_down description" -#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." -#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wall_min_flow_retract label" -#~ msgid "Prefer Retract" -#~ msgstr "Preferir Retração" - -#~ msgctxt "prime_tower_purge_volume label" -#~ msgid "Prime Tower Purge Volume" -#~ msgstr "Volume de Purga da Torre de Purga" - -#~ msgctxt "prime_tower_wall_thickness label" -#~ msgid "Prime Tower Thickness" -#~ msgstr "Espessura da Torre de Purga" - -#~ msgctxt "wireframe_enabled description" -#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." -#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." - -#~ msgctxt "spaghetti_infill_enabled description" -#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." -#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." - -#~ msgctxt "speed_equalize_flow_enabled description" -#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." -#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." - -#~ msgctxt "outer_inset_first description" -#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." -#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." - -#~ msgctxt "raft_base_line_spacing label" -#~ msgid "Raft Line Spacing" -#~ msgstr "Espaçamento de Linhas do Raft" - -#~ msgctxt "infill_hollow description" -#~ msgid "Remove all infill and make the inside of the object eligible for support." -#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." - -#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -#~ msgid "RepRap (Marlin/Sprinter)" -#~ msgstr "RepRap (Marlin/Sprinter)" - -#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" -#~ msgid "RepRap (Volumetric)" -#~ msgstr "RepRap (Volumétrico)" - -#~ 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." - -#~ msgctxt "wireframe_strategy option retract" -#~ msgid "Retract" -#~ msgstr "Retrair" - -#~ 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. " - -#~ msgctxt "wipe_retraction_prime_speed label" -#~ msgid "Retraction Prime Speed" -#~ msgstr "Velocidade de Purga da Retração" - -#~ msgctxt "shell label" -#~ msgid "Shell" -#~ msgstr "Perímetro" - -#~ msgctxt "machine_show_variants label" -#~ msgid "Show machine variants" -#~ msgstr "Mostrar variantes da máquina" - -#~ msgctxt "material_shrinkage_percentage label" -#~ msgid "Shrinkage Ratio" -#~ msgstr "Raio de Contração" - -#~ msgctxt "material_shrinkage_percentage description" -#~ msgid "Shrinkage ratio in percentage." -#~ msgstr "Raio de contração do material em porcentagem." - -#~ msgctxt "support_skip_some_zags label" -#~ msgid "Skip Some ZigZags Connections" -#~ msgstr "Pular Algumas Conexões de Ziguezague" - -#~ msgctxt "support_zag_skip_count description" -#~ msgid "Skip one in every N connection lines to make the support structure easier to break." -#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." - -#~ msgctxt "support_skip_some_zags description" -#~ msgid "Skip some ZigZags connections to make the support structure easier to break." -#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." - -#~ 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 adhestion and accuracy." -#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ 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 adhestion and accuracy." -#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." - -#~ msgctxt "small_skin_width description" -#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." -#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." - -#~ msgctxt "smooth_spiralized_contours description" -#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." - -#~ msgctxt "spaghetti_flow label" -#~ msgid "Spaghetti Flow" -#~ msgstr "Fluxo de Espaguete" - -#~ msgctxt "spaghetti_infill_enabled label" -#~ msgid "Spaghetti Infill" -#~ msgstr "Preenchimento em Espaguete" - -#~ msgctxt "spaghetti_infill_extra_volume label" -#~ msgid "Spaghetti Infill Extra Volume" -#~ msgstr "Volume Extra do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_max_height label" -#~ msgid "Spaghetti Infill Maximum Height" -#~ msgstr "Altura Máxima do Preenchimento Espaguete" - -#~ msgctxt "spaghetti_infill_stepped label" -#~ msgid "Spaghetti Infill Stepping" -#~ msgstr "Passos do Preenchimento de Espaguete" - -#~ msgctxt "spaghetti_inset label" -#~ msgid "Spaghetti Inset" -#~ msgstr "Penetração do Espaguete" - -#~ msgctxt "spaghetti_max_infill_angle label" -#~ msgid "Spaghetti Maximum Infill Angle" -#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" - -#~ msgctxt "wireframe_printspeed description" -#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." -#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_down description" -#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_up description" -#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_bottom description" -#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." -#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." - -#~ msgctxt "wireframe_printspeed_flat description" -#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." -#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." - -#~ msgctxt "magic_spiralize description" -#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." -#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." - -#~ msgctxt "wall_split_middle_threshold label" -#~ msgid "Split Middle Line Threshold" -#~ msgstr "Limite de Filete Central Dividido" - -#~ msgctxt "machine_start_gcode label" -#~ msgid "Start GCode" -#~ msgstr "G-Code Inicial" - -#~ msgctxt "start_layers_at_same_position label" -#~ msgid "Start Layers with the Same Part" -#~ msgstr "Iniciar Camadas com a Mesma Parte" - -#~ msgctxt "wireframe_strategy description" -#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." -#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." - -#~ msgctxt "support_bottom_height label" -#~ msgid "Support Bottom Thickness" -#~ msgstr "Espessura da Base do Suporte" - -#~ msgctxt "support_interface_line_distance label" -#~ msgid "Support Interface Line Distance" -#~ msgstr "Distância entre Linhas da Interface de Suporte" - -#~ msgctxt "infill_pattern option tetrahedral" -#~ msgid "Tetrahedral" -#~ msgstr "Tetraédrico" - -#~ msgctxt "acceleration_support_interface description" -#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." -#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." - -#~ msgctxt "infill_overlap description" -#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." - -#~ msgctxt "skin_overlap description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "skin_overlap_mm description" -#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." -#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." - -#~ msgctxt "switch_extruder_retraction_amount description" -#~ msgid "The amount of retraction: Set at 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: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." - -#~ msgctxt "support_tree_angle description" -#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." - -#~ msgctxt "lightning_infill_prune_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "lightning_infill_straightening_angle description" -#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." -#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." - -#~ msgctxt "wireframe_roof_inset description" -#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." -#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." - -#~ msgctxt "wireframe_roof_drag_along description" -#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "expand_skins_expand_distance description" -#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." -#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." - -#~ msgctxt "wireframe_roof_fall_down description" -#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." -#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." - -#~ msgctxt "z_offset_layer_0 description" -#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." -#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." - -#~ msgctxt "support_interface_extruder_nr description" -#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." -#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." - -#~ msgctxt "support_bottom_stair_step_height description" -#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." - -#~ msgctxt "wireframe_height description" -#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." -#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." - -#~ msgctxt "skirt_gap description" -#~ msgid "" -#~ "The horizontal distance between the skirt and the first layer of the print.\n" -#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." -#~ msgstr "" -#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" -#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." - -#~ msgctxt "infill_offset_x description" -#~ msgid "The infill pattern is offset this distance along the X axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." - -#~ msgctxt "infill_offset_y description" -#~ msgid "The infill pattern is offset this distance along the Y axis." -#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." - -#~ msgctxt "adaptive_layer_height_variation description" -#~ msgid "The maximum allowed height different from the base layer height in mm." -#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." - -#~ msgctxt "bridge_wall_max_overhang description" -#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." -#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." - -#~ msgctxt "spaghetti_max_infill_angle description" -#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." -#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." - -#~ msgctxt "meshfix_maximum_deviation description" -#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." -#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." - -#~ msgctxt "support_join_distance description" -#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." -#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." - -#~ msgctxt "flow_rate_max_extrusion_offset description" -#~ msgid "The maximum distance in mm to compensate." -#~ msgstr "A distância máxima em mm a compensar." - -#~ msgctxt "spaghetti_max_height description" -#~ msgid "The maximum height of inside space which can be combined and filled from the top." -#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." - -#~ msgctxt "jerk_support_interface description" -#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." -#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." - -#~ msgctxt "max_feedrate_z_override description" -#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." -#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." - -#~ msgctxt "mold_width description" -#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." -#~ msgstr "A distância mínima entre o exterior do molde e do modelo." - -#~ msgctxt "min_odd_wall_line_width description" -#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," -#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." - -#~ msgctxt "flow_rate_extrusion_offset_factor description" -#~ msgid "The multiplication factor for the flow rate -> distance translation." -#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." - -#~ 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 "spaghetti_inset description" -#~ msgid "The offset from the walls from where the spaghetti infill will be printed." -#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." - -#~ msgctxt "infill_pattern description" -#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." -#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." - -#~ msgctxt "wall_add_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." - -#~ msgctxt "wall_split_middle_threshold description" -#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." -#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." - -#~ msgctxt "speed_support_interface description" -#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." -#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." - -#~ msgctxt "speed_layer_0 description" -#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." -#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." - -#~ msgctxt "build_volume_temperature description" -#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." -#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." - -#~ msgctxt "material_print_temperature description" -#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." -#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "material_bed_temperature_layer_0 description" -#~ msgid "The temperature used for the heated build plate at the first layer." -#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." -#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." -#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." - -#~ msgctxt "material_bed_temperature description" -#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." -#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." - -#~ msgctxt "prime_tower_wall_thickness description" -#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." -#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." - -#~ msgctxt "wall_thickness description" -#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." - -#~ msgctxt "support_bottom_height description" -#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." -#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." - -#~ 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 "machine_gcode_flavor description" -#~ msgid "The type of gcode to be generated." -#~ msgstr "Tipo de G-Code a ser gerado para a impressora." - -#~ msgctxt "raft_smoothing description" -#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." - -#~ msgctxt "adaptive_layer_height_threshold description" -#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." -#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." - -#~ msgctxt "wireframe_roof_outer_delay description" -#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." -#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." - -#~ msgctxt "max_skin_angle_for_expansion description" -#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." -#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." - -#~ msgctxt "support_tree_enable label" -#~ msgid "Tree Support" -#~ msgstr "Suporte de Árvore" - -#~ msgctxt "support_tree_angle label" -#~ msgid "Tree Support Branch Angle" -#~ msgstr "Ângulo do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter label" -#~ msgid "Tree Support Branch Diameter" -#~ msgstr "Diâmetro de Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_diameter_angle label" -#~ msgid "Tree Support Branch Diameter Angle" -#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" - -#~ msgctxt "support_tree_branch_distance label" -#~ msgid "Tree Support Branch Distance" -#~ msgstr "Distância dos Galhos do Suporte em Árvore" - -#~ msgctxt "support_tree_collision_resolution label" -#~ msgid "Tree Support Collision Resolution" -#~ msgstr "Resolução de Colisão do Suporte em Árvore" - -#~ msgctxt "support_tree_max_diameter label" -#~ msgid "Tree Support Trunk Diameter" -#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" - -#~ 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_thickness label" -#~ msgid "Tree Support Wall Thickness" -#~ msgstr "Espessura de Parede do Suporte em Árvore" - -#~ msgctxt "adaptive_layer_height_enabled label" -#~ msgid "Use adaptive layers" -#~ msgstr "Usar camadas adaptativas" - -#~ msgctxt "relative_extrusion description" -#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." -#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." - -#~ msgctxt "wireframe_bottom_delay label" -#~ msgid "WP Bottom Delay" -#~ msgstr "Espera da Base de IA" - -#~ msgctxt "wireframe_printspeed_bottom label" -#~ msgid "WP Bottom Printing Speed" -#~ msgstr "Velocidade de Impressão da Base da IA" - -#~ msgctxt "wireframe_flow_connection label" -#~ msgid "WP Connection Flow" -#~ msgstr "Fluxo de Conexão da IA" - -#~ msgctxt "wireframe_height label" -#~ msgid "WP Connection Height" -#~ msgstr "Altura da Conexão IA" - -#~ msgctxt "wireframe_printspeed_down label" -#~ msgid "WP Downward Printing Speed" -#~ msgstr "Velocidade de Impressão Descendente de IA" - -#~ msgctxt "wireframe_drag_along label" -#~ msgid "WP Drag Along" -#~ msgstr "Arrasto de IA" - -#~ msgctxt "wireframe_up_half_speed label" -#~ msgid "WP Ease Upward" -#~ msgstr "Facilitador Ascendente da IA" - -#~ msgctxt "wireframe_fall_down label" -#~ msgid "WP Fall Down" -#~ msgstr "Queda de IA" - -#~ msgctxt "wireframe_flat_delay label" -#~ msgid "WP Flat Delay" -#~ msgstr "Espera Plana de IA" - -#~ msgctxt "wireframe_flow_flat label" -#~ msgid "WP Flat Flow" -#~ msgstr "Fluxo Plano de IA" - -#~ msgctxt "wireframe_flow label" -#~ msgid "WP Flow" -#~ msgstr "Fluxo da IA" - -#~ msgctxt "wireframe_printspeed_flat label" -#~ msgid "WP Horizontal Printing Speed" -#~ msgstr "Velocidade de Impressão Horizontal de IA" - -#~ msgctxt "wireframe_top_jump label" -#~ msgid "WP Knot Size" -#~ msgstr "Tamanho do Nó de IA" - -#~ msgctxt "wireframe_nozzle_clearance label" -#~ msgid "WP Nozzle Clearance" -#~ msgstr "Espaço Livre para o Bico em IA" - -#~ msgctxt "wireframe_roof_drag_along label" -#~ msgid "WP Roof Drag Along" -#~ msgstr "Arrasto do Topo de IA" - -#~ msgctxt "wireframe_roof_fall_down label" -#~ msgid "WP Roof Fall Down" -#~ msgstr "Queda do Topo de IA" - -#~ msgctxt "wireframe_roof_inset label" -#~ msgid "WP Roof Inset Distance" -#~ msgstr "Distância de Penetração do Teto da IA" - -#~ msgctxt "wireframe_roof_outer_delay label" -#~ msgid "WP Roof Outer Delay" -#~ msgstr "Retardo exterior del techo en IA" - -#~ msgctxt "wireframe_printspeed label" -#~ msgid "WP Speed" -#~ msgstr "Velocidade da IA" - -#~ msgctxt "wireframe_straight_before_down label" -#~ msgid "WP Straighten Downward Lines" -#~ msgstr "Endireitar Filetes Descendentes de IA" - -#~ msgctxt "wireframe_strategy label" -#~ msgid "WP Strategy" -#~ msgstr "Estratégia de IA" - -#~ msgctxt "wireframe_top_delay label" -#~ msgid "WP Top Delay" -#~ msgstr "Espera do Topo de IA" - -#~ msgctxt "wireframe_printspeed_up label" -#~ msgid "WP Upward Printing Speed" -#~ msgstr "Velocidade de Impressão Ascendente da IA" - -#, fuzzy -#~ msgctxt "material_bed_temp_wait label" -#~ msgid "Wait for build plate heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ msgctxt "material_print_temp_wait label" -#~ msgid "Wait for nozzle heatup" -#~ msgstr "Aguardar o aquecimento do bico" - -#~ 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." -#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." - -#~ msgctxt "support_interface_skip_height description" -#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." - -#~ msgctxt "retraction_combing_max_distance description" -#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." -#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." - -#~ msgctxt "z_offset_taper_layers description" -#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." -#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." - -#~ msgctxt "skin_no_small_gaps_heuristic description" -#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." -#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." - -#~ 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 "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 "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 "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 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 "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." - -#~ msgctxt "spaghetti_infill_stepped description" -#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." -#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." - -#~ msgctxt "support_interface_line_width description" -#~ msgid "Width of a single support interface line." -#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." - -#~ msgctxt "dual_pre_wipe label" -#~ msgid "Wipe Nozzle After Switch" -#~ msgstr "Limpar Bico Depois da Troca" - -#~ msgctxt "wipe_hop_enable label" -#~ msgid "Wipe Z Hop When Retracted" -#~ msgstr "Salto Z da Limpeza Quando Retraída" - -#~ msgctxt "wireframe_enabled label" -#~ msgid "Wire Printing" -#~ msgstr "Impressão em Arame" - -#~ msgctxt "z_offset_taper_layers label" -#~ msgid "Z Offset Taper Layers" -#~ msgstr "Camadas de Amenização do Deslocamento Z" - -#~ msgctxt "support_zag_skip_count label" -#~ msgid "ZigZag Connection Skip Count" -#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" - -#~ msgctxt "blackmagic description" -#~ msgid "category_blackmagic" -#~ msgstr "categoria_blackmagic" - -#~ msgctxt "meshfix description" -#~ msgid "category_fixes" -#~ msgstr "reparos_de_categoria" - -#~ msgctxt "experimental description" -#~ msgid "experimental!" -#~ msgstr "experimental!" +# Cura +# Copyright (C) 2022 Ultimaker B.V. +# This file is distributed under the same license as the Cura package. +# +msgid "" +msgstr "" +"Project-Id-Version: Cura 5.0\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"PO-Revision-Date: 2023-10-23 06:17+0200\n" +"Last-Translator: Cláudio Sampaio \n" +"Language-Team: Cláudio Sampaio \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.3.2\n" + +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça." + +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." + +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." + +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)." + +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus." + +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)." + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)." + +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." + +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar." + +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos." + +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão)" + +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta de Purga do Extrusor" + +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Máximo Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamanho da Topografia de Camadas Adaptativas" + +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho de Passo da Variação das Camadas Adaptativas" + +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." + +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n" +"Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes." + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" + +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendência à Aderência" + +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede." + +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade de preenchimento da impressão." + +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo." + +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento." + +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)." + +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga." + +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão." + +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" + +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Todos de Uma Vez" + +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" + +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" + +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar a Remoção de Malhas" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar Direções de Parede" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" + +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Sempre Escrever a Ferramenta Ativa" + +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Sempre retrair quando se mover para iniciar uma parede externa." + +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos." + +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"." + +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável." + +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade de deslocamento aplicado às bases do suporte." + +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade de deslocamento aplicado aos tetos do suporte." + +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte." + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza." + +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo." + +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha Anti-Pendente" + +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Anti-escorrimento" + +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Anti-escorrimento" + +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores." + +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Partes Impressas nas Viagens" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes No Percurso" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Atrás" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Atrás à Esquerda" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Atrás à Direita" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambos se sobrepõem" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Camada Inicial do Padrão da Base" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Inferior" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura de Remoção do Contorno Inferior" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidade de Galho" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diâmetro de Galho" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ângulo de Diâmetro de Galho" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação de Quebra" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação de Quebra" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de Quebra de Preparação" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Quebra" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Quebra" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Quebra" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Quebrar Suportes em Pedaços" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade de Ventoinha da Ponte" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte Tem Camadas Múltiplas" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade de Segundo Contorno da Ponte" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade de Segundo Contorno da Ponte" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do Contorno de Ponte" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do Contorno de Ponte" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do Contorno de Ponte" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar de Suporte de Contorno de Ponte" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máxima do Preenchimento Esparso de Ponte" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo de Terceiro Contorno da Ponte" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade de Terceiro Contorno da Ponte" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desengrenagem de Parede de Ponte" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da Parede de Ponte" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da Parede de Ponte" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância do Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Brim Dentro da Margem a Evitar" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Contagem de Linhas do Brim" + +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim Somente Para Fora" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim Substitui Suporte" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura do Brim" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Mesa" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de Aderência à Mesa" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo de Aderência da Mesa de Impressão" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Plataforma de Impressão" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Mesa" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura da Mesa de Impressão" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da Mesa de Impressão da Camada Inicial" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do Volume de Impressão" + +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centralizar Objeto" + +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de Desengrenagem" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de Desengrenagem" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de Linha de Comando" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo de Suporte Cônico" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura Mínima do Suporte Cônico" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar Linhas de Preenchimento" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar Polígonos do Preenchimento" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar Linhas de Suporte" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar os Ziguezagues do Suporte" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar Polígonos do Topo e Base" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de Resfriamento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeração" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruzado" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruzado 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho de Bolso do Cruzado 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem de Densidade do Preenchimento Cruzado" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Cobertura de Subdivisão Cúbica" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de Corte" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Default" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Default da Plataforma de Impressão" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Default do Filamento" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Default de Impressão" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk Default nos eixos X-Y" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "O Jerk Default em Z" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O valor default de jerk para movimentos no plano horizontal." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O valor default de jerk para movimento na direção Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O valor default de jerk para movimentação do filamento." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento de Diâmetro para o Modelo" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas Proibidas" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support." +msgstr "Distância da parte inferior do suporte até a impressão." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distância do topo do suporte à impressão." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y." + +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." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Pontos de distância são deslocados para suavizar o caminho" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da Cobertura de Trabalho" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitação da Cobertura de Trabalho" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da Cobertura de Trabalho" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de Suporte Abaixo" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusão Dual" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Habilitar Controle de Aceleração" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar Ajustes de Ponte" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar Desengrenagem" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Habilitar Suporte Cônico" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar Cobertura de Trabalho" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Habilitar Movimento Fluido" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar Passar a Ferro" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Habilitar Controle de Jerk" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar Controle de Temperatura do Bico" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Habilitar Cobertura de Escorrimento" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Habilitar Massa de Purga" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Habilitar Torre de Purga" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Habilitar Refrigeração de Impressão" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar Retração" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar Brim de Suporte" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar Base de Suporte" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar Interface de Suporte" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar Teto de Suporte" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar Aceleração de Percurso" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Habilitar Jerk de Percurso" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code Final" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento de Purga do Fim do Filamento" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade de Purga do Fim do Filamento" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim." + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em Todo Lugar" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expôr Costura" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensa" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de Paredes de Preenchimento Extras" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Contagem de Paredes Extras de Contorno" + +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." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X da Purga do Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y da Purga do Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z de Purga do Extrusor" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusores Compartilham Aquecedor" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusores Compartilham o Bico" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de Velocidade de Resfriamento de Extrusão" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade da Ventoinha" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Sobrepor Velocidade de Ventoinha" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Recursos que não foram completamente desenvolvidos ainda." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro da Engrenagem de Alimentação" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração de Firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de Suporte da Primeira Camada" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Raio de Equalização de Fluxo" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de Compensação da Taxa de Fluxo" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de Fluxo de Temperatura" + +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." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensação de fluxo nos filetes da base da primeira camada" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo em filetes de preenchimento." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensação de fluxo em filetes do teto ou base do suporte." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo em filetes de torre de purga." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de Fluxo em filetes de Skirt e Brim." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nos filetes da base do suporte." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo em filetes do teto de suporte." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo em filetes de estruturas de suporte." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo no filete de parede mais externo." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo em filetes do topo e base." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo em filetes das paredes." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ângulo de Movimento Fluido" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distância de Deslocamento do Movimento Fluido" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Distância Pequena do Movimento Fluido" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da Descarga de Purga" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade de Descarga de Purga" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frente" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frente à Esquerda" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frente à Direita" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Contorno Felpudo Externo Apenas" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância de Pontos do Contorno Felpudo" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura do Contorno Felpudo" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Sabor de G-Code" + +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no final da impressão - separados por \n" +"." + +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Comandos G-Code a serem executados no início da impressão - separados por \n" +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. É ajustado automaticamente." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do Eixo" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar Estrutura Interligada" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Gerar Suporte" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Passos Graduais de Preenchimento" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura de Passo do Preenchimento Gradual de Suporte" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Passos de Preenchimento Gradual de Suporte" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grade" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giróide" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem Estabilização de Temperatura do Volume de Impressão" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Mesa Aquecida" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de Aquecimento" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da Zona de Aquecimento" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Costura" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Costura" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão Horizontal do Furo" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diâmetro Máximo da Expansão Horizontal de Furo" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Horizontal" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "De quanto o material precisa ser retraído antes que pare de escorrer." + +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 "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "De quanto o filamento deve ser retraído para se destacar completamente." + +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." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Quão rápido purgar o material depois de alternar para um material diferente." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte." + +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." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Mesa" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas de Material" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" + +msgctxt "infill description" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "infill label" +msgid "Infill" +msgstr "Preenchimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração do Preenchimento" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Preenchimento Antes das Paredes" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Preenchimento" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor do Preenchimento" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Preenchimento" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Preenchimento" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura da Camada de Preenchimento" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções de Filetes de Preenchimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância da Linha de Preenchimento" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de Filete de Preenchimento" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largura de Extrusão do Preenchimento" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malha de Preenchimento" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo de Seções Pendentes do Preenchimento" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição de Preenchimento" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Preenchimento" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade de Preenchimento" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Suporte do Preenchimento" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Otimização de Percurso de Preenchimento" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância de Varredura do Preenchimento" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocamento X do Preenchimento" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocamento do Preenchimento Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas Inferiores Iniciais" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial da Ventoinha" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da Camada Inicial" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo da Base da Camada Inicial" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diâmetro da Camada Inicial" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Inicial de Camada" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura da Primeira Camada" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal da Camada Inicial" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo de Parede Interna da Camada Inicial" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largura de Extrusão da Camada Inicial" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo de Parede Externa da Camada Inicial" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de Impressão da Camada Inicial" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk de Impressão da Camada Inicial" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de Impressão da Camada Inicial" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade da Camada Inicial" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância de Filetes da Camada Inicial de Suporte" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de Percurso da Camada Inicial" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk de Percurso da Camada Inicial" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de Percurso da Camada Inicial" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição em Z das Camadas Iniciais" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura Inicial de Impressão" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração das Paredes Interiores" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor da Parede Interior" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Internas" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade da Parede Interior" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Fluxo da(s) Parede(s) Interna(s)" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largura de Extrusão das Paredes Internas" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo." + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De Dentro Pra Fora" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linhas de interface preferidas" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interface preferida" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de Camadas das Vigas Interligadas" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura da Viga Interligada" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenção de Fronteira de Interligação" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de Interligação" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da Estrutura de Interligação" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Passar a Ferro Somente Camada Mais Alta" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Passar a Ferro" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Passagem a Ferro" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Penetração da Passagem a Ferro" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Passar a Ferro" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaçamento de Passagem a Ferro" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Passagem a Ferro" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Passar o Ferro" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origem é no Centro" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "É material de suporte" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Desconectadas" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de Camada" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Inicial da Camada" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Inicial da Camada" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Espessura da camada intermediária do raft." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Espessura de camada das camadas superiores do raft." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar Cabeça" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de Poda do Preenchimento Relâmpago" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de Retificação do Preenchimento Relâmpago" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de Suporte do Preenchimento Relâmpago" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitar Alcance de Galho" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)" + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largura de Extrusão" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Mesa" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da Cabeça com Ventoinha" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura do Volume" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Mesa" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos da máquina" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Torna Seções Pendentes Imprimíveis" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Faz as áreas de suporte menores na base que na seção pendente." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Faz as malhas mais adequadas para impressão 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do Material" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de Material Entre Limpezas" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Máxima Distância de Combing Sem Retração" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração Máxima em X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Máxima em Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Máxima em Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ângulo Máximo de Galho" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio Máximo" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio Máximo de Área de Extrusão" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima da Ventoinha" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo Máximo do Modelo" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área Máxima de Furo de Seções Pendentes" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração Máxima de Descanso" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Contagem de Retrações Máxima" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Máximo do Contorno para Expansão" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de Extrusão" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade Máxima em X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Máxima em Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Máxima em Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado por Torres" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Máxima Resolução de Percurso" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "A aceleração máxima para o motor da impressora na direção X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleração máxima para a entrada de filamento no hotend." + +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 "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte." + +msgctxt "max_extrusion_before_wipe description" +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 "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição de Malhas Combinadas" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correções de Malha" + +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posição X da Malha" + +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posição Y da Malha" + +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posição Z da Malha" + +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Hierarquia do Processamento de Malha" + +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz de Rotação da Malha" + +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Meio" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura Mínima do Molde" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínima em Temperatura de Espera" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento de Parede de Ponte Mínimo" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Par" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Janela de Distância de Extrusão Mínima" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mínimo Tamanho de Detalhe" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura Mínima Para O Modelo" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área Mínima para Preenchimento" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo Mínimo de Camada" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Ímpar" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mínima Circunferência do Polígono" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima de Contorno para Expansão" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área Mínima de Suporte" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área Mínima de Base de Suporte" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área Mínima de Interface de Suporte" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área Mínima de Teto de Suporte" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância Mínima de Suporte X/Y" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largura Mínima de Filete de Parede Fina" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume Mínimo Antes da Desengrenagem" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largura Mínina de Filete de Parede" + +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 "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados." + +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 "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +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 "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." + +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do Molde" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura de Teto do Molde" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Passagem a Ferro Monotônica" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da Superfície Monotônica Superior" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Monotônica Superior/Inferior" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator de Movimento Sem Carga" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Contorno nas Lacunas Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Jeitos não-tradicionais de imprimir seus modelos." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhuma" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Contorno" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Externa" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do Bico" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do bico" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas Proibidas para o Bico" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Bico" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do Bico" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Avanço Extra da Troca de Bico" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de Avanço da Troca de Bico" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de Retração da Troca de Bico" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de Retração da Troca do Bico" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de Extrusores Habilitados" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de Camadas Mais Lentas" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes com que mover o bico através da varredura." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Deslocamento aplicado ao objeto na direção X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Deslocamento aplicado ao objeto na direção Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Deslocamento com o Extrusor" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Na plataforma de impressão quando possível" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "No modelo se requerido" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Um de Cada Vez" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado." + +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da Cobertura de Escorrimento" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da Cobertura de Escorrimento" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Alcance Ótimo de Galho" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem de Impressão de Paredes" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro Externo do Bico" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da Parede Exterior" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor da Parede Externa" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo da Parede Externa" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Penetração da Parede Externa" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largura de Extrusão da Parede Externa" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade da Parede Exterior" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância de Varredura da Parede Externa" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De Fora Pra Dentro" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo de Parede Pendente" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade de Parede Pendente" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa após desfazimento da retração." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ângulo Preferido de Galho" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da Torre de Purga" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Brim" +msgstr "Brim da Torre de Purga" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da Torre de Purga" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Purga" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largura de Extrusão da Torre de Purga" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume Mínimo da Torre de Purga" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho da Torre de Purga" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da Torre de Purga" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da Torre de Purga" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da Torre de Purga" + +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração da Impressão" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de Impressão" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte." + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de Impressão da Camada Inicial" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Vão Aéreo do Raft" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da Base do Raft" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade de Ventoinha da Base do Raft" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento de Filete de Base do Raft" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largura de Linha da Base do Raft" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração de Impressão da Base do Raft" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de Impressão da Base do Raft" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade de Impressão da Base do Raft" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Contagem de Paredes da Base do Raft" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional do Raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade de Ventoinha no Raft" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do Meio do Raft" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade de Ventoinha do Meio do Raft" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas Centrais do Raft" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largura da Linha do Meio do Raft" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração de Impressão do Meio do Raft" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de Impressão do Meio do Raft" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade de Impressão do Meio do Raft" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração de Impressão do Raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de Impressão do Raft" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade de Impressão do Raft" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Amaciamento do Raft" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor do Topo do Raft" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade da Ventoinha para o Topo do Raft" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura da Camada Superior do Raft" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largura do Filete Superior do Raft" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração de Impressão do Topo do Raft" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de Impressão do Topo do Raft" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade de Impressão do Topo do Raft" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Aleatorizar o Começo do Preenchimento" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional." + +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." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Regular da Ventoinha" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidade Regular da Ventoinha na Altura" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidade Regular da Ventoinha na Camada" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão Relativa" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos os Furos" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover Interseções de Malha" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover Cantos Internos de Raft" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferência de Descanso" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes da Parede Externa" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrai em Mudança de Camada" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa." + +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." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância da Retração" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Quantidade Adicional de Avanço da Retração" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Percurso Mínimo para Retração" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de Avanço da Retração" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade de Recolhimento de Retração" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Velocidade de Escala da Ventoinha A 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "A Cena Tem Malhas de Suporte" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência do Canto da Costura" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes usados para imprimir com vários extrusores." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração Inicial do Bico Compartilhado" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto Mais Agudo" + +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais Curto" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Exibir Variantes de Máquina" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Contorno" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Contorno" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância de Expansão do Contorno" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição do Contorno" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Contorno" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura de Remoção de Contorno" + +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." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância do Skirt" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura do Skirt" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Contagem de linhas de Skirt" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração para Skirt e Brim" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do Skirt/Brim" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Skirt/Brim" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Skirt e Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largura de Extrusão do Brim e Skirt" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mínimo Comprimento do Skirt e Brim" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade do Skirt e Brim" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância de Fatiamento" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade de Camada Inicial de Aspecto Pequeno" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento Máximo do Aspecto Pequeno" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de Aspecto Pequeno" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho Máximo de Furos Pequenos" + +#, fuzzy +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de Impressão Final" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Pequena Base/Teto Na Superfície" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Largura do Teto/Base Pequenos" + +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 "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')" + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Brim Inteligente" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Suavizar Contornos Espiralizados" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície." + +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." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" + +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade com que mover o eixo Z durante o salto." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar o Contorno Externo" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura de Espera" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code Inicial" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Suporte" + +msgctxt "support label" +msgid "Support" +msgstr "Suporte" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração do Suporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância Inferior do Suporte" + +#, fuzzy +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Número de Filetes do Brim de Suporte" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura do Brim de Suporte" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Contagem de Linhas de Pedaço de Suporte" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do Pedaço de Suporte" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade das Distâncias de Suporte" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor do Suporte" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração da Base do Suporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade da Base do Suporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor da Base do Suporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo da Base de Suporte" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão Horizontal da Base do Suporte" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk da Base do Suporte" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções de Filete da Base do Suporte" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância de Filetes da Base de Suporte" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largura de Extrusão da Base do Suporte" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão de Base de Suporte" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade de Base do Suporte" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura da Base de Suporte" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão Horizontal do Suporte" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração do Preenchimento do Suporte" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor do Preenchimento do Suporte" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk de Preenchimento de Suporte" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura de Camada do Preenchimento de Suporte" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção de Filete do Preenchimento de Suporte" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade do Preenchimento do Suporte" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da Interface de Suporte" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da Interface de Suporte" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor da Interface de Suporte" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo de Interface de Suporte" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão Horizontal da Interface de Suporte" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface de Suporte" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções do Filete de Interface de Suporte" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largura de Extrusão da Interface do Suporte" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da Interface de Suporte" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridade de Interface de Suporte" + +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolução da Interface de Suporte" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da Interface de Suporte" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura da Interface de Suporte" + +#, fuzzy +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância de União do Suporte" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância das Linhas do Suporte" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largura de Extrusão do Suporte" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de Suporte" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo para Caracterizar Seções Pendentes" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão do Suporte" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação dos Suportes" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do Teto de Suporte" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do Teto de Suporte" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor do Teto do Suporte" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto de Suporte" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão Horizontal do Teto de Suporte" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Teto de Suporte" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções de Filete do Teto do Suporte" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância de Filetes do Teto de Suporte" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largura de Extrusão do Teto do Suporte" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão de Teto de Suporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do Teto de Suporte" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do Topo do Suporte" + +#, fuzzy +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade do Suporte" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima do Passo de Suporte em Escada" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de Suporte" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância Superior do Suporte" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Contagem de Linhas de Parede de Suporte" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do Suporte" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância em Z do Suporte" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Filetes de suporte preferidos" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Suporte preferido" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade de Ventoinha do Contorno Suportado" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia de Superfície" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de Superficie" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendência de aderência da superfície." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia de superfície." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas." + +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 "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleração durante a impressão da camada inicial." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleração para a camada inicial." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleração para percursos na camada inicial." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Aceleração com que se imprimem as paredes interiores." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o preenchimento é impresso." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com que o recurso de passar a ferro é feito." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleração com que se realiza a impressão." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que as camadas de base do raft são impressas." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleração com que se imprime o preenchimento dos suportes." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada intermediária do raft é impressa." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleração com que se imprime a parede exterior." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleração com que a torre de purga é impressa." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleração com que as estruturas de suporte são impressas." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleração com que se imprimem as paredes." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com a qual as camadas da superfície superior são impressas." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleração com que as camadas superiores e inferiores são impressas." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleração com que se realizam os percursos." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." + +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." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo." + +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área imprimível." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro da torre especial." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da engrenagem que traciona o material no alimentador." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "A diferença em tamanho da próxima camada comparada à anterior." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as trajetórias de passagem a ferro." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." + +#, fuzzy +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade de ventoinha para a camada base do raft." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade de ventoina para a camada intermediária do raft." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade da ventoinha para a impressão do raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade da ventoinha para as camadas superiores do raft." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) do volume imprimível." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "A altura acima das partes horizontais do modelo onde criar o molde." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferença de altura ao realizar um Salto Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao executar um Salto Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade." + +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." + +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 "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos." + +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"A distância horizontal entre o skirt a primeira camada da impressão.\n" +"Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão de preenchimento é movido por esta distância no eixo Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com o qual a camada de base do raft é impressa." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com o qual a camada intermediária do raft é impressa." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com o qual o raft é impresso." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com o qual as camadas superiores do raft são impressas." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "O comprimento de filamento retornado durante uma retração." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da plataforma de impressão presente na impressora." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A variação de altura máxima permitida para a camada de base." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima para o motor da impressora na direção X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima para o motor da impressora na direção Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima de entrada de filamento no hotend." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidade mínima de entrada de filamento no hotend." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte." + +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." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nome do seu modelo de impressora 3D." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de preenchimento que suportam arestas de contorno." + +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 da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente." + +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." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +#, fuzzy +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." + +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Diâmetro exterior do bico (a ponta do hotend)." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão das camadas superiores." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Padrão ou Estampa das camadas superiores e inferiores." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão na base da impressão na primeira camada." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão a usar quando se passa a ferro as superfícies superiores." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão com o qual as bases do suporte são impressas." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão com o qual o teto do suporte é impresso." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada." + +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidade em que se imprime o preenchimento." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidade em que se realiza a impressão." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "A velocidade com a qual as paredes de ponte são impressas." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido." + +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." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza." + +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." + +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." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza." + +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." + +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." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza." + +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." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade em que as ventoinhas giram." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade em que o raft é impresso." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidade em que se imprimem as paredes." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade com que as camadas superiores são impressas." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidade em que as camadas superiores e inferiores são impressas." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidade em que ocorrem os movimentos de percurso." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão." + +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." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada." + +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." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura usada para impressão." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do preenchimento extra que suporta arestas de contorno." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-Code a ser gerado." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área imprimível." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." + +#, fuzzy +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura da torre de purga." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de purga." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo." + +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." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "A coordenada X da posição da torre de purga." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "A coordenada Y da posição da torre de purga." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente." + +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." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diâmetro da Ponta" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância de Expansão do Contorno Superior" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura de Remoção do Contorno Superior" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração da Superfície Superior" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor da Superfície Superior" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo do Contorno da Superfície Superior" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk da Superfície Superior" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas da Superfície Superior" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções dos Filetes da Superfície Superior" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largura de extrusão da Superfície Superior" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão da Superfície Superior" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade da Superfície Superior" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior/Inferior" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração Superior/Inferior" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior/Inferior" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo de Topo/Base" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções de Linha Superior/Inferior" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largura de Extrusão Superior/Inferior" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior/Inferior" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior/Inferior" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando a Mesa" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da Torre" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do Teto da Torre" + +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 "travel label" +msgid "Travel" +msgstr "Percurso" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de Percurso" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância de Desvio de Percurso" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Percurso" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de Percurso" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulo" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diâmetro do Tronco" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volumes de Sobreposição de Uniões" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Usar Camadas Adaptativas" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar Torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificado pelo Usuário" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de Fator de Encolhimento Vertical" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Aguardar o Aquecimento da Mesa" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Aguardar Aquecimento do Bico" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração da Parede" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Contagem de Distribuição de Parede" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor das Paredes" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo de Parede" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk da Parede" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número de Filetes da Parede" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largura de Extrusão da Parede" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordem de Parede" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade da Parede" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura de Parede" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de Transição de Parede" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância de Filtro da Transição de Parede" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem de Filtro de Transição de Parede" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo-Limite de Transição de Parede" + +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +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 "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." + +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo':" + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar." + +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." + +msgctxt "wipe_hop_enable description" +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 "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." + +msgctxt "retraction_hop_enabled 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, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Decide se a plataforma de impressão pode ser aquecida." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste." + +msgctxt "clean_between_layers description" +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 "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo." + +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 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 "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados." + +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 "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largura de um filete de preenchimento." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Largura de um filete usado no teto ou base do suporte." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Largura de extrusão de um filete das áreas no topo da peça." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largura de um filete usado na torre de purga." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largura de um filete do brim (bainha) ou skirt (saia)." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largura de um filete usado na base do suporte." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largura de um filete usado no teto do suporte." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largura de um filete usado nas estruturas de suporte." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largura de um filete que faz parte de uma parede." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da Varredura de Limpeza" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do Salto de Limpeza" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar Bico Inativo na Torre de Purga" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância de Movimentação da Limpeza" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar o Bico Entre Camadas" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa de Limpeza" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de Repetições de Limpeza" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de Retração da Limpeza" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitar Retração de Limpeza" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade Extra de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de Purga da Retração de Limpeza" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade da Retração da Retração de Limpeza" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade da Retração de Limpeza" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z da Limpeza" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do Salto Z da Limpeza" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dentro do Preenchimento" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X na Direção Positiva" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Localização X onde o script de limpeza iniciará." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y na Direção Positiva" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z na Direção Positiva" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z Após Troca de Extrusor" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto Z Após Troca de Altura do Extrusor" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do Salto Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z Somente Sobre Partes Impressas" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z Ao Retrair" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Costura em Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Costura Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costura Z Relativa" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Coordenada X da Costura Z" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Coordenada Y da Costura Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "travel description" +msgid "travel" +msgstr "percurso" + +# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual habilitado" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para alterações de fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração máxima de fluxo da camada inicial" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho de passo da discretização de fluxo gradual" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada passo na alteração de fluxo gradual" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Duração de reset do fluxo" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." + +#~ 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 "machine_head_with_fans_polygon description" +#~ msgid "A 2D silhouette of the print head (fan caps included)." +#~ msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos." + +#~ msgctxt "spaghetti_infill_extra_volume description" +#~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti." +#~ msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete." + +#~ msgctxt "sub_div_rad_mult description" +#~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes." +#~ msgstr "Um multiplicador do raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a maiores subdivisões, isto é, mais cubos pequenos." + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive Layers Threshold" +#~ msgstr "Limite das Camadas Adaptativas" + +#~ msgctxt "adaptive_layer_height_variation label" +#~ msgid "Adaptive layers maximum variation" +#~ msgstr "Variação máxima das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_threshold label" +#~ msgid "Adaptive layers threshold" +#~ msgstr "Limite das camadas adaptativas" + +#~ msgctxt "adaptive_layer_height_variation_step label" +#~ msgid "Adaptive layers variation step size" +#~ msgstr "Tamanho de passo da variação das camadas adaptativas" + +#~ msgctxt "wall_add_middle_threshold label" +#~ msgid "Add Middle Line Threshold" +#~ msgstr "Adicionar Limite de Filete Central" + +#~ msgctxt "support_interface_density description" +#~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +#~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover." + +#~ msgctxt "spaghetti_flow description" +#~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill." +#~ msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete." + +#~ msgctxt "dual_pre_wipe description" +#~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print." +#~ msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão." + +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Aguardar o aquecimento da mesa de impressão" +#~ msgstr "Esperar a que la placa de impresión se caliente" + +#~ msgctxt "cross_infill_apply_pockets_alternatingly label" +#~ msgid "Alternate Cross 3D Pockets" +#~ msgstr "Bolso Alternados de Cruzado 3D" + +#~ msgctxt "skin_alternate_rotation label" +#~ msgid "Alternate Skin Rotation" +#~ msgstr "Alterna a Rotação do Contorno" + +#~ msgctxt "skin_alternate_rotation description" +#~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions." +#~ msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y." + +#~ msgctxt "prime_tower_purge_volume description" +#~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle." +#~ msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico." + +#~ msgctxt "hole_xy_offset description" +#~ msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes." +#~ msgstr "Quantidade de deslocamento aplicado a todos os furos em cada camada. Valores positivos aumentam o tamanho dos furos, valores negativos reduzem o tamanho dos furos." + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords description" +#~ msgid "Apply the extruder offset to the coordinate system." +#~ msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas." + +#~ msgctxt "material_flow_dependent_temperature label" +#~ msgid "Auto Temperature" +#~ msgstr "Temperatura Automática" + +#~ msgctxt "z_seam_type option back" +#~ msgid "Back" +#~ msgstr "Costas" + +#~ msgctxt "bridge_wall_max_overhang label" +#~ msgid "Bridge Wall Max Overhang" +#~ msgstr "Seção Pendente Máxima da Parede de Ponte" + +#~ msgctxt "machine_shape label" +#~ msgid "Build plate shape" +#~ msgstr "Forma da mesa de impressão" + +#~ msgctxt "center_object label" +#~ msgid "Center object" +#~ msgstr "Centralizar Objeto" + +#~ msgctxt "material_flow_dependent_temperature description" +#~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer." +#~ msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada." + +#~ msgctxt "prime_tower_circular label" +#~ msgid "Circular Prime Tower" +#~ msgstr "Torre de Purga Circular" + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases." +#~ msgstr "O Combing (penteamento) mantém o bico dentro de áreas já impressas durante os percursos. Isto resulta em movimentações um pouco mais amplas mas reduz a necessidade de retrações. Se o combing for desligado, o material sofrerá retração e o bico se moverá em linha reta ao próximo ponto. É também possível evitar combing sobre áreas de contorno de topo e base e ainda só fazer combing no preenchimento. Note que a opção 'Dentro do Preenchimento' se comporta exatamente como a 'Não no Contorno' em versões anteriores do Cura." + +#~ msgctxt "retraction_combing description" +#~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only." +#~ msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente." + +#~ msgctxt "wireframe_strategy option compensate" +#~ msgid "Compensate" +#~ msgstr "Compensar" + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled label" +#~ msgid "Compensate Inner Wall Overlaps" +#~ msgstr "Compensar Sobreposições da Parede Interna" + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled label" +#~ msgid "Compensate Outer Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede Externa" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled label" +#~ msgid "Compensate Wall Overlaps" +#~ msgstr "Compensar Sobreposições de Parede" + +#~ msgctxt "travel_compensate_overlapping_walls_enabled description" +#~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_x_enabled description" +#~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede." + +#~ msgctxt "travel_compensate_overlapping_walls_0_enabled description" +#~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place." +#~ msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede." + +#~ msgctxt "infill_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_bottom_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_interface_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "support_roof_pattern option concentric_3d" +#~ msgid "Concentric 3D" +#~ msgstr "Concêntrico 3D" + +#~ msgctxt "zig_zaggify_infill description" +#~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +#~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado." + +#~ msgctxt "connect_skin_polygons description" +#~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality." +#~ msgstr "Conectar camihos de contorno do topo e base onde se situarem próximos. Habilitar para o padrão concêntrico reduzirá bastante o tempo de percurso, mas visto que as conexões podem acontecer sobre o preenchimento no meio do caminho, este recurso pode reduzir a qualidade da superfície superior." + +#~ msgctxt "z_seam_corner description" +#~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner." +#~ msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo." + +#~ msgctxt "machine_nozzle_cool_down_speed label" +#~ msgid "Cool down speed" +#~ msgstr "Velocidade de resfriamento" + +#~ msgctxt "wireframe_top_jump description" +#~ msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing." +#~ msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame." + +#~ msgctxt "sub_div_rad_mult label" +#~ msgid "Cubic Subdivision Radius" +#~ msgstr "Raio de Subdivisão Cúbica" + +#~ msgctxt "wireframe_bottom_delay description" +#~ msgid "Delay time after a downward move. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_top_delay description" +#~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing." +#~ msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flat_delay description" +#~ msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing." +#~ msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "inset_direction description" +#~ msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed." +#~ msgstr "Determina em que ordem as paredes são impressas. Imprimir parede mais externas antes ajuda com acurácia dimensional, já que falhas das paredes mais internas não se propagam para o exterior. No entanto imprimi-las depois permite melhor empilhamento quando seções pendentes são impressas." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde elas se sobrepõem terão as configurações da malha com o menor número. Uma malha de prenchimento de ordem maior modificará o preenchimento das malhas de preenchimento com as malhas de ordem mais baixa e normais." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina a prioridade desta malha ao se considerar volumes sobrepostos. Áread onde múltiplas malhas residem serão ganhas pela malha com menor número. Uma malha de preenchimento com maior ordem modificará o preenchimento das malhas de preenchimento com malhas de ordem normal e menor." + +#~ msgctxt "infill_mesh_order description" +#~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes." +#~ msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais." + +#~ msgctxt "machine_disallowed_areas label" +#~ msgid "Disallowed areas" +#~ msgstr "Áreas proibidas" + +#~ msgctxt "wireframe_nozzle_clearance description" +#~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." +#~ msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_interface_line_distance description" +#~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." +#~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." +#~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." + +#~ msgctxt "wireframe_up_half_speed description" +#~ msgid "" +#~ "Distance of an upward move which is extruded with half speed.\n" +#~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing." +#~ msgstr "" +#~ "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n" +#~ "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame." + +#~ msgctxt "support_xy_distance_overhang description" +#~ msgid "Distance of the support structure from the overhang in the X/Y directions. " +#~ msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. " + +#~ msgctxt "wireframe_fall_down description" +#~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_drag_along description" +#~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "multiple_mesh_overlap label" +#~ msgid "Dual Extrusion Overlap" +#~ msgstr "Sobreposição de Extrusão Dual" + +#~ msgctxt "support_enable label" +#~ msgid "Enable Support" +#~ msgstr "Habilitar Suportes" + +#~ msgctxt "support_enable description" +#~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." +#~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." + +#~ msgctxt "machine_end_gcode label" +#~ msgid "End GCode" +#~ msgstr "G-Code Final" + +#~ msgctxt "material_end_of_filament_purge_length label" +#~ msgid "End Of Filament Purge Length" +#~ msgstr "Comprimento de Purga de Fim de Filamento" + +#~ msgctxt "material_end_of_filament_purge_speed label" +#~ msgid "End Of Filament Purge Speed" +#~ msgstr "Velocidade de Purga de Fim de Filamento" + +#~ msgctxt "speed_equalize_flow_enabled label" +#~ msgid "Equalize Filament Flow" +#~ msgstr "Equalizar Fluxo de Filamento" + +#~ msgctxt "fill_perimeter_gaps option everywhere" +#~ msgid "Everywhere" +#~ msgstr "Em todos os lugares" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Bottom Skins Into Infill" +#~ msgstr "Expande Contorno da Base Para Preenchimento" + +#~ msgctxt "expand_lower_skins label" +#~ msgid "Expand Lower Skins" +#~ msgstr "Expandir Contornos Inferiores" + +#~ msgctxt "expand_skins_into_infill label" +#~ msgid "Expand Skins Into Infill" +#~ msgstr "Expandir Contorno Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Top Skins Into Infill" +#~ msgstr "Expandir Contorno do Topo Para Preenchimento" + +#~ msgctxt "expand_upper_skins label" +#~ msgid "Expand Upper Skins" +#~ msgstr "Expandir Contornos Superiores" + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo." + +#~ msgctxt "expand_skins_into_infill description" +#~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin." +#~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros." + +#~ msgctxt "expand_lower_skins description" +#~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below." +#~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand the top skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima." + +#~ msgctxt "expand_upper_skins description" +#~ msgid "Expand upper skin areas (areas with air above) so that they support infill above." +#~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima." + +#~ msgctxt "support_conical_enabled description" +#~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang." +#~ msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente." + +#~ msgctxt "machine_filament_park_distance label" +#~ msgid "Filament Park Distance" +#~ msgstr "Distância de Descanso do Filamento" + +#~ msgctxt "fill_perimeter_gaps label" +#~ msgid "Fill Gaps Between Walls" +#~ msgstr "Preenche Lacunas Entre Paredes" + +#~ msgctxt "fill_perimeter_gaps description" +#~ msgid "Fills the gaps between walls where no walls fit." +#~ msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam." + +#~ msgctxt "filter_out_tiny_gaps label" +#~ msgid "Filter Out Tiny Gaps" +#~ msgstr "Filtrar Pequenas Lacunas" + +#~ msgctxt "filter_out_tiny_gaps description" +#~ msgid "Filter out tiny gaps to reduce blobs on outside of model." +#~ msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo." + +#~ msgctxt "small_feature_speed_factor_0 label" +#~ msgid "First Layer Speed" +#~ msgstr "Velocidade da Primeira Camada" + +#~ msgctxt "wireframe_flow_connection description" +#~ msgid "Flow compensation when going up or down. Only applies to Wire Printing." +#~ msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_flow_flat description" +#~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame." + +#~ msgctxt "prime_tower_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value." +#~ msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor." + +#~ msgctxt "wireframe_flow description" +#~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." +#~ msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame." + +#~ msgctxt "flow_rate_extrusion_offset_factor label" +#~ msgid "Flow rate compensation factor" +#~ msgstr "Fator de compensaçõ de taxa de fluxo" + +#~ msgctxt "flow_rate_max_extrusion_offset label" +#~ msgid "Flow rate compensation max extrusion offset" +#~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code Flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "G-code flavour" +#~ msgstr "Sabor de G-Code" + +#~ msgctxt "material_guid description" +#~ msgid "GUID of the material. This is set automatically. " +#~ msgstr "GUID do material. Este valor é ajustado automaticamente. " + +#~ msgctxt "gantry_height label" +#~ msgid "Gantry height" +#~ msgstr "Altura do eixo" + +#~ msgctxt "machine_end_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very end - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_start_gcode description" +#~ msgid "" +#~ "Gcode commands to be executed at the very start - separated by \n" +#~ "." +#~ msgstr "" +#~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n" +#~ "." + +#~ msgctxt "machine_gcode_flavor label" +#~ msgid "Gcode flavour" +#~ msgstr "Tipo de G-Code" + +#~ msgctxt "support_tree_enable description" +#~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." +#~ msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento." + +#~ msgctxt "ironing_enabled description" +#~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." +#~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." + +#~ msgctxt "machine_heated_bed label" +#~ msgid "Has heated build plate" +#~ msgstr "Tem mesa de impressão aquecida" + +#~ msgctxt "machine_nozzle_heat_up_speed label" +#~ msgid "Heat up speed" +#~ msgstr "Velocidade de aquecimento" + +#~ msgctxt "machine_heat_zone_length label" +#~ msgid "Heat zone length" +#~ msgstr "Comprimento da zona de aquecimento" + +#~ msgctxt "infill_hollow label" +#~ msgid "Hollow Out Objects" +#~ msgstr "Tornar Objetos Ocos" + +#~ msgctxt "support_tree_branch_distance description" +#~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." +#~ msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover." + +#~ msgctxt "machine_steps_per_mm_e description" +#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion." +#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão." + +#~ msgctxt "slicing_tolerance description" +#~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process." +#~ msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar." + +#~ msgctxt "wall_min_flow_retract description" +#~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold." +#~ msgstr "Se usado, a retração é usada ao invés de combing para movimentos de percurso que substituem paredes cujo fluxo estiver abaixo do limite mínimo." + +#~ msgctxt "skin_no_small_gaps_heuristic label" +#~ msgid "Ignore Small Z Gaps" +#~ msgstr "Ignorar Pequenas Lacunas em Z" + +#~ msgctxt "start_layers_at_same_position description" +#~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time." +#~ msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão." + +#~ msgctxt "material_bed_temp_prepend label" +#~ msgid "Include build plate temperature" +#~ msgstr "Incluir temperatura da mesa de impressão" + +#~ msgctxt "material_print_temp_prepend label" +#~ msgid "Include material temperatures" +#~ msgstr "Incluir temperaturas dos materiais" + +#~ msgctxt "infill_mesh_order label" +#~ msgid "Infill Mesh Order" +#~ msgstr "Order das Malhas de Preenchimento" + +#~ msgctxt "z_offset_layer_0 label" +#~ msgid "Initial Layer Z Offset" +#~ msgstr "Deslocamento em Z da Camada Inicial" + +#~ msgctxt "wall_x_extruder_nr label" +#~ msgid "Inner Walls Extruder" +#~ msgstr "Extrusor das Paredes Internas" + +#~ msgctxt "machine_center_is_zero label" +#~ msgid "Is center origin" +#~ msgstr "A origem está no centro" + +#~ msgctxt "wireframe_strategy option knot" +#~ msgid "Knot" +#~ msgstr "Nó" + +#~ msgctxt "limit_support_retractions label" +#~ msgid "Limit Support Retractions" +#~ msgstr "Limitar Retrações de Suporte" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine Head Polygon" +#~ msgstr "Polígono Da Cabeça da Máquina" + +#~ msgctxt "machine_depth label" +#~ msgid "Machine depth" +#~ msgstr "Profundidada da mesa" + +#~ msgctxt "machine_head_with_fans_polygon label" +#~ msgid "Machine head & Fan polygon" +#~ msgstr "Polígono da cabeça da máquina e da ventoinha" + +#~ msgctxt "machine_head_polygon label" +#~ msgid "Machine head polygon" +#~ msgstr "Polígono da cabeça da máquina" + +#~ msgctxt "machine_height label" +#~ msgid "Machine height" +#~ msgstr "Altura do volume de impressão" + +#~ msgctxt "machine_width label" +#~ msgid "Machine width" +#~ msgstr "Largura da mesa" + +#~ msgctxt "prime_tower_circular description" +#~ msgid "Make the prime tower as a circular shape." +#~ msgstr "Faz a torre de purga na forma circular." + +#~ msgctxt "material_end_of_filament_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_end_of_filament_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_length description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_flush_purge_speed description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_maximum_park_duration description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "material_no_load_move_factor description" +#~ msgid "Material Station internal value" +#~ msgstr "Valor interno da Estação de Material" + +#~ msgctxt "machine_max_feedrate_e label" +#~ msgid "Maximum Feedrate" +#~ msgstr "Velocidade Máxima de Alimentação" + +#~ msgctxt "speed_equalize_flow_max label" +#~ msgid "Maximum Speed for Flow Equalization" +#~ msgstr "Velocidade Máxima para Equalização de Fluxo" + +#~ msgctxt "max_feedrate_z_override label" +#~ msgid "Maximum Z Speed" +#~ msgstr "Velocidade Máxima em Z" + +#~ 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 "speed_equalize_flow_max description" +#~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." +#~ msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo." + +#~ msgctxt "mesh_position_x label" +#~ msgid "Mesh position x" +#~ msgstr "Posição X da malha" + +#~ msgctxt "mesh_position_y label" +#~ msgid "Mesh position y" +#~ msgstr "Posição Y da malha" + +#~ msgctxt "mesh_position_z label" +#~ msgid "Mesh position z" +#~ msgstr "Posição Z da malha" + +#~ msgctxt "support_minimal_diameter label" +#~ msgid "Minimum Diameter" +#~ msgstr "Diâmetro mínimo" + +#~ msgctxt "wall_min_flow label" +#~ msgid "Minimum Wall Flow" +#~ msgstr "Mínimo Fluxo da Parede" + +#~ msgctxt "wall_min_flow description" +#~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." +#~ msgstr "Mínima porcentagem de fluxo permite para um filete de parede. A compensação de sobreposição de parede reduz o fluxo de uma parede quando ela está próxima a outra já impressa. Paredes cujo fluxo seja menor que este valor serão trocadas por um momento de percurso. Ao usar este ajuste, você deve habilitar a compensação de sobreposição de paredes e imprimir as paredes externas antes das internas." + +#~ 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." + +#~ 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 not be generated." +#~ msgstr "Área mínima para as bases do suporte. Polígonos que tiverem uma área menor que este valor não serão gerados." + +#~ 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 not be generated." +#~ msgstr "Área mínima para os tetos do suporte. Polígonos que tiverem área menor que este valor são serão gerados." + +#~ msgctxt "support_minimal_diameter description" +#~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +#~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." + +#~ msgctxt "retraction_combing option noskin" +#~ msgid "No Skin" +#~ msgstr "Evita Contornos" + +#~ msgctxt "meshfix_keep_open_polygons description" +#~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode." +#~ msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado." + +#~ msgctxt "fill_perimeter_gaps option nowhere" +#~ msgid "Nowhere" +#~ msgstr "Em lugar nenhum" + +#~ msgctxt "machine_nozzle_expansion_angle label" +#~ msgid "Nozzle angle" +#~ msgstr "Ângulo do bico" + +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle length" +#~ msgstr "Comprimento do bico" + +#~ msgctxt "extruders_enabled_count label" +#~ msgid "Number of Extruders that are enabled" +#~ msgstr "Número de Extrusores habilitados" + +#~ msgctxt "machine_use_extruder_offset_to_offset_coords label" +#~ msgid "Offset With Extruder" +#~ msgstr "Deslocamento do Extrusor" + +#~ 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 excesive stringing within the support structure." +#~ msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte." + +#~ 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." + +#~ msgctxt "cross_infill_apply_pockets_alternatingly description" +#~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself." +#~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando." + +#~ msgctxt "optimize_wall_printing_order description" +#~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization." +#~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização." + +#~ msgctxt "support_infill_angles description" +#~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane." +#~ msgstr "Orientação do padrão de preenchimento para suportes. O padrão de preenchimento do suporte é rotacionado no plano horizontal." + +#~ msgctxt "outer_inset_first label" +#~ msgid "Outer Before Inner Walls" +#~ msgstr "Paredes exteriores antes das interiores" + +#~ msgctxt "machine_nozzle_tip_outer_diameter label" +#~ msgid "Outer nozzle diameter" +#~ msgstr "Diametro externo do bico" + +#~ msgctxt "wireframe_straight_before_down description" +#~ msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing." +#~ msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wall_min_flow_retract label" +#~ msgid "Prefer Retract" +#~ msgstr "Preferir Retração" + +#~ msgctxt "prime_tower_purge_volume label" +#~ msgid "Prime Tower Purge Volume" +#~ msgstr "Volume de Purga da Torre de Purga" + +#~ msgctxt "prime_tower_wall_thickness label" +#~ msgid "Prime Tower Thickness" +#~ msgstr "Espessura da Torre de Purga" + +#~ msgctxt "wireframe_enabled description" +#~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." +#~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." + +#~ msgctxt "spaghetti_infill_enabled description" +#~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable." +#~ msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível." + +#~ msgctxt "speed_equalize_flow_enabled description" +#~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines." +#~ msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes." + +#~ msgctxt "outer_inset_first description" +#~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." +#~ msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes." + +#~ msgctxt "raft_base_line_spacing label" +#~ msgid "Raft Line Spacing" +#~ msgstr "Espaçamento de Linhas do Raft" + +#~ msgctxt "infill_hollow description" +#~ msgid "Remove all infill and make the inside of the object eligible for support." +#~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte." + +#~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +#~ msgid "RepRap (Marlin/Sprinter)" +#~ msgstr "RepRap (Marlin/Sprinter)" + +#~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)" +#~ msgid "RepRap (Volumetric)" +#~ msgstr "RepRap (Volumétrico)" + +#~ 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." + +#~ msgctxt "wireframe_strategy option retract" +#~ msgid "Retract" +#~ msgstr "Retrair" + +#~ 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. " + +#~ msgctxt "wipe_retraction_prime_speed label" +#~ msgid "Retraction Prime Speed" +#~ msgstr "Velocidade de Purga da Retração" + +#~ msgctxt "shell label" +#~ msgid "Shell" +#~ msgstr "Perímetro" + +#~ msgctxt "machine_show_variants label" +#~ msgid "Show machine variants" +#~ msgstr "Mostrar variantes da máquina" + +#~ msgctxt "material_shrinkage_percentage label" +#~ msgid "Shrinkage Ratio" +#~ msgstr "Raio de Contração" + +#~ msgctxt "material_shrinkage_percentage description" +#~ msgid "Shrinkage ratio in percentage." +#~ msgstr "Raio de contração do material em porcentagem." + +#~ msgctxt "support_skip_some_zags label" +#~ msgid "Skip Some ZigZags Connections" +#~ msgstr "Pular Algumas Conexões de Ziguezague" + +#~ msgctxt "support_zag_skip_count description" +#~ msgid "Skip one in every N connection lines to make the support structure easier to break." +#~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida." + +#~ msgctxt "support_skip_some_zags description" +#~ msgid "Skip some ZigZags connections to make the support structure easier to break." +#~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida." + +#~ 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 adhestion and accuracy." +#~ msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ 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 adhestion and accuracy." +#~ msgstr "Pequenos aspectos serão impressos com esta porcentagem de sua velocidade normal de impressão. Impressão mais lenta pode ajudar com aderência e precisão." + +#~ msgctxt "small_skin_width description" +#~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +#~ msgstr "Regiões pequenas de teto/base são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos." + +#~ msgctxt "smooth_spiralized_contours description" +#~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +#~ msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície." + +#~ msgctxt "spaghetti_flow label" +#~ msgid "Spaghetti Flow" +#~ msgstr "Fluxo de Espaguete" + +#~ msgctxt "spaghetti_infill_enabled label" +#~ msgid "Spaghetti Infill" +#~ msgstr "Preenchimento em Espaguete" + +#~ msgctxt "spaghetti_infill_extra_volume label" +#~ msgid "Spaghetti Infill Extra Volume" +#~ msgstr "Volume Extra do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_max_height label" +#~ msgid "Spaghetti Infill Maximum Height" +#~ msgstr "Altura Máxima do Preenchimento Espaguete" + +#~ msgctxt "spaghetti_infill_stepped label" +#~ msgid "Spaghetti Infill Stepping" +#~ msgstr "Passos do Preenchimento de Espaguete" + +#~ msgctxt "spaghetti_inset label" +#~ msgid "Spaghetti Inset" +#~ msgstr "Penetração do Espaguete" + +#~ msgctxt "spaghetti_max_infill_angle label" +#~ msgid "Spaghetti Maximum Infill Angle" +#~ msgstr "Ângulo de Preenchimento Máximo do Espaguete" + +#~ msgctxt "wireframe_printspeed description" +#~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing." +#~ msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_down description" +#~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_up description" +#~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_bottom description" +#~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing." +#~ msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame." + +#~ msgctxt "wireframe_printspeed_flat description" +#~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing." +#~ msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame." + +#~ msgctxt "magic_spiralize description" +#~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions." +#~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso." + +#~ msgctxt "wall_split_middle_threshold label" +#~ msgid "Split Middle Line Threshold" +#~ msgstr "Limite de Filete Central Dividido" + +#~ msgctxt "machine_start_gcode label" +#~ msgid "Start GCode" +#~ msgstr "G-Code Inicial" + +#~ msgctxt "start_layers_at_same_position label" +#~ msgid "Start Layers with the Same Part" +#~ msgstr "Iniciar Camadas com a Mesma Parte" + +#~ msgctxt "wireframe_strategy description" +#~ msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted." +#~ msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas." + +#~ msgctxt "support_bottom_height label" +#~ msgid "Support Bottom Thickness" +#~ msgstr "Espessura da Base do Suporte" + +#~ msgctxt "support_interface_line_distance label" +#~ msgid "Support Interface Line Distance" +#~ msgstr "Distância entre Linhas da Interface de Suporte" + +#~ msgctxt "infill_pattern option tetrahedral" +#~ msgid "Tetrahedral" +#~ msgstr "Tetraédrico" + +#~ msgctxt "acceleration_support_interface description" +#~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality." +#~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes." + +#~ msgctxt "infill_overlap description" +#~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +#~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna." + +#~ msgctxt "skin_overlap description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "skin_overlap_mm description" +#~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin." +#~ msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno." + +#~ msgctxt "switch_extruder_retraction_amount description" +#~ msgid "The amount of retraction: Set at 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: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend." + +#~ msgctxt "support_tree_angle description" +#~ msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +#~ msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance." + +#~ msgctxt "lightning_infill_prune_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a poda das extremidades externas das árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "lightning_infill_straightening_angle description" +#~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness." +#~ msgstr "A diferença que uma camada de preenchimento relâmpago pode ter em relação à camada imediatamente superior de acordo com a suavização de árvores. Medido em ângulo de acordo com a espessura." + +#~ msgctxt "wireframe_roof_inset description" +#~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing." +#~ msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame." + +#~ msgctxt "wireframe_roof_drag_along description" +#~ msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "expand_skins_expand_distance description" +#~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient." +#~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente." + +#~ msgctxt "wireframe_roof_fall_down description" +#~ msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing." +#~ msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame." + +#~ msgctxt "z_offset_layer_0 description" +#~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly." +#~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente." + +#~ msgctxt "support_interface_extruder_nr description" +#~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion." +#~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão." + +#~ msgctxt "support_bottom_stair_step_height description" +#~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +#~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis." + +#~ msgctxt "wireframe_height description" +#~ msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing." +#~ msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame." + +#~ msgctxt "skirt_gap description" +#~ msgid "" +#~ "The horizontal distance between the skirt and the first layer of the print.\n" +#~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance." +#~ msgstr "" +#~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n" +#~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância." + +#~ msgctxt "infill_offset_x description" +#~ msgid "The infill pattern is offset this distance along the X axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X." + +#~ msgctxt "infill_offset_y description" +#~ msgid "The infill pattern is offset this distance along the Y axis." +#~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y." + +#~ msgctxt "adaptive_layer_height_variation description" +#~ msgid "The maximum allowed height different from the base layer height in mm." +#~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm." + +#~ msgctxt "bridge_wall_max_overhang description" +#~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings." +#~ msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte." + +#~ msgctxt "spaghetti_max_infill_angle description" +#~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer." +#~ msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada." + +#~ msgctxt "meshfix_maximum_deviation description" +#~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller." +#~ msgstr "O valor máximo de desvio permitido ao reduzir a resolução para o ajuste de Resolução Máxima. Se você aumenta este número, a impressão terá menos acuidade, mas o G-Code será menor." + +#~ msgctxt "support_join_distance description" +#~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one." +#~ msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única." + +#~ msgctxt "flow_rate_max_extrusion_offset description" +#~ msgid "The maximum distance in mm to compensate." +#~ msgstr "A distância máxima em mm a compensar." + +#~ msgctxt "spaghetti_max_height description" +#~ msgid "The maximum height of inside space which can be combined and filled from the top." +#~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo." + +#~ msgctxt "jerk_support_interface description" +#~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed." +#~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso." + +#~ msgctxt "max_feedrate_z_override description" +#~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed." +#~ msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z." + +#~ msgctxt "mold_width description" +#~ msgid "The minimal distance between the ouside of the mold and the outside of the model." +#~ msgstr "A distância mínima entre o exterior do molde e do modelo." + +#~ msgctxt "min_odd_wall_line_width description" +#~ msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width," +#~ msgstr "A largura mínima de filete para as paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no centro. Uma Largura Mínima de Filete de Parede Ímpar leva a uma largura máxima de filete de parede par mais alta. A largura máxima de filete de parede par é calculada como 2 * Largura Mínima de Filete de Parede Par." + +#~ msgctxt "flow_rate_extrusion_offset_factor description" +#~ msgid "The multiplication factor for the flow rate -> distance translation." +#~ msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância." + +#~ 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 "spaghetti_inset description" +#~ msgid "The offset from the walls from where the spaghetti infill will be printed." +#~ msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "Padrão ou estampa do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague mudam de direção em camadas alternadas, reduzindo o custo do material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos em totalidade a cada camada. Os padrões giróide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição mais igualitária de força em cada direção." + +#~ msgctxt "infill_pattern description" +#~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model." +#~ msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo o custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam em cada camada para prover uma distribuição mais uniforme de força em cada direção. O preenchimento de relâmpago tenta minimizar o material suportando apenas os tetos (internos) do objeto. Como tal, a porcentagem de preenchimento somente é 'válida' uma camada abaixo do que quer que seja que ela precise para suportar o modelo." + +#~ msgctxt "wall_add_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual um filete central (se já não houver algum) será adicionado. Reduza este ajuste para usar mais e e mais finos filetes. Aumente para usar menos, mais largos filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com paredes, portanto o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou contornos na impressão ao invés de paredes." + +#~ msgctxt "wall_split_middle_threshold description" +#~ msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall." +#~ msgstr "A largura de filete mínima, como fator da largura de filete normal, acima da qual o filete central (se houver algum) será dividido em dois. Reduza este ajuste para usar mais e maiores filetes. Aumente para usar menos e menores filetes. Note que isto se aplica -como se- a forma inteira devesse ser preenchida com parede, dado que o centro aqui se refere ao meio do objeto entre duas arestas externas da forma, mesmo se houver preenchimento ou (outros) contornos na impressão ao invés de paredes." + +#~ msgctxt "speed_support_interface description" +#~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality." +#~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes." + +#~ msgctxt "speed_layer_0 description" +#~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." +#~ msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão." + +#~ msgctxt "build_volume_temperature description" +#~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." +#~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." + +#~ msgctxt "material_print_temperature description" +#~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." +#~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "material_bed_temperature_layer_0 description" +#~ msgid "The temperature used for the heated build plate at the first layer." +#~ msgstr "A temperatura usada para a mesa aquecida na primeira camada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted." +#~ msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print." +#~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão." + +#~ msgctxt "material_bed_temperature description" +#~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually." +#~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente." + +#~ msgctxt "prime_tower_wall_thickness description" +#~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower." +#~ msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa." + +#~ msgctxt "wall_thickness description" +#~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +#~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes." + +#~ msgctxt "support_bottom_height description" +#~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests." +#~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta." + +#~ 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 "machine_gcode_flavor description" +#~ msgid "The type of gcode to be generated." +#~ msgstr "Tipo de G-Code a ser gerado para a impressora." + +#~ msgctxt "raft_smoothing description" +#~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +#~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft." + +#~ msgctxt "adaptive_layer_height_threshold description" +#~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer." +#~ msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada." + +#~ msgctxt "wireframe_roof_outer_delay description" +#~ msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing." +#~ msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre." + +#~ msgctxt "max_skin_angle_for_expansion description" +#~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical." +#~ msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical." + +#~ msgctxt "support_tree_enable label" +#~ msgid "Tree Support" +#~ msgstr "Suporte de Árvore" + +#~ msgctxt "support_tree_angle label" +#~ msgid "Tree Support Branch Angle" +#~ msgstr "Ângulo do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter label" +#~ msgid "Tree Support Branch Diameter" +#~ msgstr "Diâmetro de Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_diameter_angle label" +#~ msgid "Tree Support Branch Diameter Angle" +#~ msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore" + +#~ msgctxt "support_tree_branch_distance label" +#~ msgid "Tree Support Branch Distance" +#~ msgstr "Distância dos Galhos do Suporte em Árvore" + +#~ msgctxt "support_tree_collision_resolution label" +#~ msgid "Tree Support Collision Resolution" +#~ msgstr "Resolução de Colisão do Suporte em Árvore" + +#~ msgctxt "support_tree_max_diameter label" +#~ msgid "Tree Support Trunk Diameter" +#~ msgstr "Diâmetro de Tronco do Suporte em Árvore" + +#~ 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_thickness label" +#~ msgid "Tree Support Wall Thickness" +#~ msgstr "Espessura de Parede do Suporte em Árvore" + +#~ msgctxt "adaptive_layer_height_enabled label" +#~ msgid "Use adaptive layers" +#~ msgstr "Usar camadas adaptativas" + +#~ msgctxt "relative_extrusion description" +#~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output." +#~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito." + +#~ msgctxt "wireframe_bottom_delay label" +#~ msgid "WP Bottom Delay" +#~ msgstr "Espera da Base de IA" + +#~ msgctxt "wireframe_printspeed_bottom label" +#~ msgid "WP Bottom Printing Speed" +#~ msgstr "Velocidade de Impressão da Base da IA" + +#~ msgctxt "wireframe_flow_connection label" +#~ msgid "WP Connection Flow" +#~ msgstr "Fluxo de Conexão da IA" + +#~ msgctxt "wireframe_height label" +#~ msgid "WP Connection Height" +#~ msgstr "Altura da Conexão IA" + +#~ msgctxt "wireframe_printspeed_down label" +#~ msgid "WP Downward Printing Speed" +#~ msgstr "Velocidade de Impressão Descendente de IA" + +#~ msgctxt "wireframe_drag_along label" +#~ msgid "WP Drag Along" +#~ msgstr "Arrasto de IA" + +#~ msgctxt "wireframe_up_half_speed label" +#~ msgid "WP Ease Upward" +#~ msgstr "Facilitador Ascendente da IA" + +#~ msgctxt "wireframe_fall_down label" +#~ msgid "WP Fall Down" +#~ msgstr "Queda de IA" + +#~ msgctxt "wireframe_flat_delay label" +#~ msgid "WP Flat Delay" +#~ msgstr "Espera Plana de IA" + +#~ msgctxt "wireframe_flow_flat label" +#~ msgid "WP Flat Flow" +#~ msgstr "Fluxo Plano de IA" + +#~ msgctxt "wireframe_flow label" +#~ msgid "WP Flow" +#~ msgstr "Fluxo da IA" + +#~ msgctxt "wireframe_printspeed_flat label" +#~ msgid "WP Horizontal Printing Speed" +#~ msgstr "Velocidade de Impressão Horizontal de IA" + +#~ msgctxt "wireframe_top_jump label" +#~ msgid "WP Knot Size" +#~ msgstr "Tamanho do Nó de IA" + +#~ msgctxt "wireframe_nozzle_clearance label" +#~ msgid "WP Nozzle Clearance" +#~ msgstr "Espaço Livre para o Bico em IA" + +#~ msgctxt "wireframe_roof_drag_along label" +#~ msgid "WP Roof Drag Along" +#~ msgstr "Arrasto do Topo de IA" + +#~ msgctxt "wireframe_roof_fall_down label" +#~ msgid "WP Roof Fall Down" +#~ msgstr "Queda do Topo de IA" + +#~ msgctxt "wireframe_roof_inset label" +#~ msgid "WP Roof Inset Distance" +#~ msgstr "Distância de Penetração do Teto da IA" + +#~ msgctxt "wireframe_roof_outer_delay label" +#~ msgid "WP Roof Outer Delay" +#~ msgstr "Retardo exterior del techo en IA" + +#~ msgctxt "wireframe_printspeed label" +#~ msgid "WP Speed" +#~ msgstr "Velocidade da IA" + +#~ msgctxt "wireframe_straight_before_down label" +#~ msgid "WP Straighten Downward Lines" +#~ msgstr "Endireitar Filetes Descendentes de IA" + +#~ msgctxt "wireframe_strategy label" +#~ msgid "WP Strategy" +#~ msgstr "Estratégia de IA" + +#~ msgctxt "wireframe_top_delay label" +#~ msgid "WP Top Delay" +#~ msgstr "Espera do Topo de IA" + +#~ msgctxt "wireframe_printspeed_up label" +#~ msgid "WP Upward Printing Speed" +#~ msgstr "Velocidade de Impressão Ascendente da IA" + +#, fuzzy +#~ msgctxt "material_bed_temp_wait label" +#~ msgid "Wait for build plate heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ msgctxt "material_print_temp_wait label" +#~ msgid "Wait for nozzle heatup" +#~ msgstr "Aguardar o aquecimento do bico" + +#~ 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." +#~ msgstr "Paredes que têm inclinação maior que este ângulo serão impressas usando ajustes de seção pendente de parede. Quando o valor for 90, nenhuma parede será tratada como seção pendente." + +#~ msgctxt "support_interface_skip_height description" +#~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +#~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte." + +#~ msgctxt "retraction_combing_max_distance description" +#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction." +#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração." + +#~ msgctxt "z_offset_taper_layers description" +#~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print." +#~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão." + +#~ msgctxt "skin_no_small_gaps_heuristic description" +#~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting." +#~ msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste." + +#~ 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 "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 "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 "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 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 "Opção que dz se se imprime todos os modelos uma camada por vez, ou se se espera que cada um termine para ir para o próximo. Modo um de cada vez é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de maneira que a cabeça de impressão possa se mover entre eles e todos os modelos forem mais baixos que a distância entre o bico e os eixos X/Y." + +#~ msgctxt "spaghetti_infill_stepped description" +#~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print." +#~ msgstr "Opção para ou se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão." + +#~ msgctxt "support_interface_line_width description" +#~ msgid "Width of a single support interface line." +#~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo." + +#~ msgctxt "dual_pre_wipe label" +#~ msgid "Wipe Nozzle After Switch" +#~ msgstr "Limpar Bico Depois da Troca" + +#~ msgctxt "wipe_hop_enable label" +#~ msgid "Wipe Z Hop When Retracted" +#~ msgstr "Salto Z da Limpeza Quando Retraída" + +#~ msgctxt "wireframe_enabled label" +#~ msgid "Wire Printing" +#~ msgstr "Impressão em Arame" + +#~ msgctxt "z_offset_taper_layers label" +#~ msgid "Z Offset Taper Layers" +#~ msgstr "Camadas de Amenização do Deslocamento Z" + +#~ msgctxt "support_zag_skip_count label" +#~ msgid "ZigZag Connection Skip Count" +#~ msgstr "Contagem de Pulos das Conexões de Ziguezague" + +#~ msgctxt "blackmagic description" +#~ msgid "category_blackmagic" +#~ msgstr "categoria_blackmagic" + +#~ msgctxt "meshfix description" +#~ msgid "category_fixes" +#~ msgstr "reparos_de_categoria" + +#~ msgctxt "experimental description" +#~ msgid "experimental!" +#~ msgstr "experimental!" From 405f5dbed6dd1def828df724514598cf376478a7 Mon Sep 17 00:00:00 2001 From: MariMakes <40423138+MariMakes@users.noreply.github.com> Date: Tue, 24 Oct 2023 14:27:31 +0200 Subject: [PATCH 060/121] Update changelog for stable Updated changelog for stable --- resources/texts/change_log.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index c45e0056083..a4c59c2749c 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -28,6 +28,7 @@ - Updated printing temperatures for UltiMaker printers to be more uniform - Updated Support Interface Settings for UltiMaker printers - Introduced a support material tag, so support is automatically printed with support material +- Default has been updated to Balanced to reflect the perfect harmony between these visual, engineering, and draft profiles. * Quality of Life Improvements - Use Tab to navigate between settings in the Per Model Settings window @@ -52,10 +53,12 @@ - Updated supporting certify libraries - Introduced a new Post Processing Script; Limit XY Accel for bed-slinger printers, contributed by @GregValiant - Introduced the machine name in the gcode headers, contributed by @smartin015 +- Extruder settings are cached to speed up slicing, contributed by @sesse * Bug Fixes that improve Printed Part Quality - The first support layers were printed incorrectly if adhesion was set to None - The support was printed before the brim when the origin was at the center of the buildplate +- Some improvements to the Zseam for user-specified or the sharpest corner seam alignment - Printers with a high resolution would incorrectly print embossed features - The flow would unexpectedly increase after a bridge was completed. - Bridging settings would not be applied to the first skin layer if the infill density was set to 0 @@ -63,6 +66,19 @@ - A brim would be too small if the extruder was not defined. - The Initial Buildplate and Printing Temperature would not be applied correctly when printing One-At-A-Time +* Bugs resolved since the Beta Release +- Updated some settings for UltiMaker printers to prevent infill from being exposed, introduce a visual mode for PETG, and prevent stringing for PETG and ABS +- Fixed the upgrade script for UltiMaker materials that would cause configuration errors +- Updated the arrange algorithm to work better with larger models +- Prevented future crashes caused by the new gradual flow plugin with some active printers +- Fixed Linux Legacy crashes for open file dialog due to OS icon style +- The Linux Appimage had an unnessecarily large file size +- The top layers where not showing distinct inner and outer walls. +- A printjob with a different raft extruder could cause a printjob to be considered too large to print +- A project file with an intent would not be loaded correctly +- Moved the position of the Target Machine name in the start gcode to predicted time and material use for some printers +- Restored the ColorDialog to prevent an SDK break + * Other Bug Fixes - You could not load some Marketplace materials with intents on the like BASF Ultrafuse 17-4PH - For some Linux versions it was not possible to add a 3D printer @@ -94,6 +110,9 @@ - Updated start gcode and homing behavior in Creality Ender 3 S1, contributed by @GregValiant. - Updated faulty disallowed areas for Anycubic Kossel, contributed by @GregValiant +* Community translations: +- Updated Brazilian translations, contributed by @Patola + [5.4] * Introduced the new Tree Support contributed by @ThomasRahm From e6a163770df8a9454f8db3b21ea16f541e7f502a Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 24 Oct 2023 16:10:19 +0200 Subject: [PATCH 061/121] Reformulate prime tower default position CURA-10783 --- resources/definitions/fdmprinter.def.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 794dcd02397..f4aff86964c 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -886,7 +886,7 @@ "default_value": 0.4, "type": "float", "value": "line_width", - "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('prime_tower_brim_enable') or resolveOrValue('draft_shield_enabled') or resolveOrValue('ooze_shield_enabled')", + "enabled": "resolveOrValue('adhesion_type') == 'skirt' or resolveOrValue('adhesion_type') == 'brim' or resolveOrValue('draft_shield_enabled') or resolveOrValue('ooze_shield_enabled')", "settable_per_mesh": false, "settable_per_extruder": true }, @@ -6641,9 +6641,9 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "machine_width - max(extruderValue(skirt_brim_extruder_nr, 'brim_width') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_x'))) - 1", - "maximum_value": "machine_width / 2 if machine_center_is_zero else machine_width", - "minimum_value": "resolveOrValue('prime_tower_size') - machine_width / 2 if machine_center_is_zero else resolveOrValue('prime_tower_size')", + "value": "((resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - max((resolveOrValue('prime_tower_base_size') if (adhesion_type == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_x'))) - 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", + "minimum_value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - (machine_width / 2 if machine_center_is_zero else 0)", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6655,9 +6655,9 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "machine_depth - prime_tower_size - max(extruderValue(skirt_brim_extruder_nr, 'brim_width') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_y'))) - 3", - "maximum_value": "machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')", - "minimum_value": "machine_depth / -2 if machine_center_is_zero else 0", + "value": "machine_depth - prime_tower_size - max((resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_y'))) - 1 - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "maximum_value": "(machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", + "minimum_value": "(machine_depth / -2 if machine_center_is_zero else 0) + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -6673,6 +6673,7 @@ }, "prime_tower_brim_enable": { + "value": "resolveOrValue('adhesion_type') in ['raft', 'brim']", "label": "Prime Tower Base", "description": "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't.", "type": "bool", From 3417a858b4869967752b59bba88f2e9d36948272 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 24 Oct 2023 16:11:41 +0200 Subject: [PATCH 062/121] Use default prime tower position for everyone This is necessary to ensure that all printers use a valid prime tower position, now that the position computation rule has changed and includes the base/brim. CURA-10783 --- resources/definitions/Mark2_for_Ultimaker2.def.json | 4 +--- resources/definitions/SV02.def.json | 4 +--- resources/definitions/atmat_signal_pro_base.def.json | 4 +--- resources/definitions/bibo2_dual.def.json | 4 +--- resources/definitions/builder_premium_large.def.json | 4 +--- resources/definitions/builder_premium_medium.def.json | 4 +--- resources/definitions/builder_premium_small.def.json | 4 +--- resources/definitions/cartesio.def.json | 4 +--- resources/definitions/deltacomb_base.def.json | 4 +--- resources/definitions/dxu.def.json | 4 +--- resources/definitions/felixpro2dual.def.json | 4 +--- resources/definitions/geeetech_A30M.def.json | 6 ++---- resources/definitions/geeetech_A30T.def.json | 6 ++---- resources/definitions/geeetech_I3ProC.def.json | 4 +--- resources/definitions/geeetech_MizarM.def.json | 6 ++---- resources/definitions/hms434.def.json | 4 +--- resources/definitions/leapfrog_bolt_pro.def.json | 4 +--- resources/definitions/lnl3d_d3.def.json | 6 ++---- resources/definitions/lnl3d_d3_vulcan.def.json | 6 ++---- resources/definitions/lnl3d_d5.def.json | 6 ++---- resources/definitions/lnl3d_d6.def.json | 6 ++---- resources/definitions/lotmaxx_sc60.def.json | 4 +--- resources/definitions/makeit_pro_l.def.json | 4 +--- resources/definitions/makeit_pro_m.def.json | 4 +--- resources/definitions/makeit_pro_mx.def.json | 4 +--- resources/definitions/raise3D_N2_dual.def.json | 4 +--- resources/definitions/raise3D_N2_plus_dual.def.json | 4 +--- resources/definitions/raise3D_N2_plus_single.def.json | 4 +--- resources/definitions/raise3D_N2_single.def.json | 4 +--- resources/definitions/skriware_2.def.json | 4 +--- resources/definitions/stereotech_ste320.def.json | 6 ++---- resources/definitions/strateo3d.def.json | 4 +--- resources/definitions/strateo3d_IDEX420.def.json | 4 +--- resources/definitions/ultimaker3.def.json | 3 +-- resources/definitions/ultimaker_original_dual.def.json | 6 ++---- ...Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg | 2 -- ...apfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg | 2 -- ...eapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg | 2 -- ...pfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg | 2 -- ...Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg | 2 -- ...apfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg | 2 -- .../gmax15plus/gmax15plus_global_dual_normal.inst.cfg | 2 -- .../gmax15plus/gmax15plus_global_dual_thick.inst.cfg | 2 -- .../quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg | 2 -- .../gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg | 2 -- .../tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg | 2 -- .../tizyx_evy_dual_global_Flex_Quality.inst.cfg | 2 -- .../tizyx_evy_dual_global_High_Quality.inst.cfg | 2 -- .../tizyx_evy_dual_global_Normal_Quality.inst.cfg | 2 -- .../tizyx_evy_dual_global_PVA_Quality.inst.cfg | 2 -- 50 files changed, 44 insertions(+), 143 deletions(-) diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 305a9b18da6..f8da6e356ce 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -137,8 +137,6 @@ "machine_start_gcode": { "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nM200 D0 T0 ;reset filament diameter\\nM200 D0 T1\\nG28 Z0; home all\\nG28 X0 Y0\\nG0 Z20 F2400 ;move the platform to 20mm\\nG92 E0\\nM190 S{material_bed_temperature_layer_0}\\nM109 T0 S{material_standby_temperature, 0}\\nM109 T1 S{material_print_temperature_layer_0, 1}\\nM104 T0 S{material_print_temperature_layer_0, 0}\\nT1 ; move to the 2th head\\nG0 Z20 F2400\\nG92 E-7.0 ;prime distance\\nG1 E0 F45 ;purge nozzle\\nG1 E-5.1 F1500 ; retract\\nG1 X90 Z0.01 F5000 ; move away from the prime poop\\nG1 X50 F9000\\nG0 Z20 F2400\\nT0 ; move to the first head\\nM104 T1 S{material_standby_temperature, 1}\\nG0 Z20 F2400\\nM104 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\\nG92 E-7.0\\nG1 E0 F45 ;purge nozzle\\nG1 X60 Z0.01 F5000 ; move away from the prime poop\\nG1 X20 F9000\\nM400 ;finish all moves\\nG92 E0\\n;end of startup sequence\\n\"" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": false }, "machine_width": { "default_value": 223 }, - "prime_tower_position_x": { "value": "185" }, - "prime_tower_position_y": { "value": "160" }, "retraction_amount": { "default_value": 5.1 }, "retraction_speed": { "default_value": 25 }, "speed_support": { "value": "speed_wall_0" }, @@ -164,4 +162,4 @@ "value": "retraction_speed" } } -} \ No newline at end of file +} diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index 728a6c62427..ecb5eea28ef 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -60,8 +60,6 @@ "material_diameter": { "default_value": 1.75 }, "material_initial_print_temperature": { "value": "material_print_temperature" }, "prime_tower_min_volume": { "value": "((resolveOrValue('layer_height'))/2" }, - "prime_tower_position_x": { "value": "240" }, - "prime_tower_position_y": { "value": "190" }, "prime_tower_size": { "value": "30" }, "prime_tower_wipe_enabled": { "default_value": true }, "retraction_amount": { "default_value": 5 }, @@ -73,4 +71,4 @@ "top_bottom_thickness": { "default_value": 1 }, "wall_0_wipe_dist": { "value": 0.0 } } -} \ No newline at end of file +} diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index 7d14fa6576c..7dad5a121ef 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -111,8 +111,6 @@ "minimum_polygon_circumference": { "value": "0.2" }, "optimize_wall_printing_order": { "value": "True" }, "prime_tower_enable": { "value": "True" }, - "prime_tower_position_x": { "value": "270" }, - "prime_tower_position_y": { "value": "270" }, "retraction_amount": { "value": "1" }, "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "value": "10" }, @@ -173,4 +171,4 @@ "wall_overhang_speed_factor": { "value": "50" }, "zig_zaggify_infill": { "value": "True" } } -} \ No newline at end of file +} diff --git a/resources/definitions/bibo2_dual.def.json b/resources/definitions/bibo2_dual.def.json index 344fdbf3b96..19fc6be081b 100644 --- a/resources/definitions/bibo2_dual.def.json +++ b/resources/definitions/bibo2_dual.def.json @@ -41,8 +41,6 @@ "machine_start_gcode": { "default_value": "M104 T0 165\nM104 T1 165\nM109 T{initial_extruder_nr} S{material_print_temperature_layer_0, initial_extruder_nr}\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z2.0 F400 ;move the platform down 2mm\nT0\nG92 E0\nG28\nG1 Y0 F1200 E0\nG92 E0\nT{initial_extruder_nr}\nM117 BIBO Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 214 }, - "prime_tower_position_x": { "value": "50" }, - "prime_tower_position_y": { "value": "50" }, "speed_print": { "default_value": 40 } } -} \ No newline at end of file +} diff --git a/resources/definitions/builder_premium_large.def.json b/resources/definitions/builder_premium_large.def.json index 1ba55471d32..0dd4b6661ae 100644 --- a/resources/definitions/builder_premium_large.def.json +++ b/resources/definitions/builder_premium_large.def.json @@ -81,8 +81,6 @@ "material_standby_temperature": { "value": "material_print_temperature" }, "prime_blob_enable": { "enabled": true }, "prime_tower_min_volume": { "default_value": 50 }, - "prime_tower_position_x": { "value": "175" }, - "prime_tower_position_y": { "value": "178" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "default_value": 3 }, "retraction_speed": { "default_value": 15 }, @@ -102,4 +100,4 @@ "travel_retract_before_outer_wall": { "default_value": true }, "wall_thickness": { "value": "1.2" } } -} \ No newline at end of file +} diff --git a/resources/definitions/builder_premium_medium.def.json b/resources/definitions/builder_premium_medium.def.json index b8a3d8578dd..e0525e12325 100644 --- a/resources/definitions/builder_premium_medium.def.json +++ b/resources/definitions/builder_premium_medium.def.json @@ -81,8 +81,6 @@ "material_standby_temperature": { "value": "material_print_temperature" }, "prime_blob_enable": { "enabled": true }, "prime_tower_min_volume": { "default_value": 50 }, - "prime_tower_position_x": { "value": "175" }, - "prime_tower_position_y": { "value": "178" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "default_value": 3 }, "retraction_speed": { "default_value": 15 }, @@ -102,4 +100,4 @@ "travel_retract_before_outer_wall": { "default_value": true }, "wall_thickness": { "value": "1.2" } } -} \ No newline at end of file +} diff --git a/resources/definitions/builder_premium_small.def.json b/resources/definitions/builder_premium_small.def.json index ab773a45d26..882d6662846 100644 --- a/resources/definitions/builder_premium_small.def.json +++ b/resources/definitions/builder_premium_small.def.json @@ -80,8 +80,6 @@ "material_standby_temperature": { "value": "material_print_temperature" }, "prime_blob_enable": { "enabled": true }, "prime_tower_min_volume": { "default_value": 50 }, - "prime_tower_position_x": { "value": "175" }, - "prime_tower_position_y": { "value": "178" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "default_value": 3 }, "retraction_speed": { "default_value": 15 }, @@ -101,4 +99,4 @@ "travel_retract_before_outer_wall": { "default_value": true }, "wall_thickness": { "value": "1.2" } } -} \ No newline at end of file +} diff --git a/resources/definitions/cartesio.def.json b/resources/definitions/cartesio.def.json index db725f91ed0..934995355f0 100644 --- a/resources/definitions/cartesio.def.json +++ b/resources/definitions/cartesio.def.json @@ -66,9 +66,7 @@ "optimize_wall_printing_order": { "default_value": true }, "prime_blob_enable": { "default_value": false }, "prime_tower_min_volume": { "value": "0.7" }, - "prime_tower_position_x": { "value": "125" }, - "prime_tower_position_y": { "value": "70" }, "prime_tower_size": { "value": 24.0 }, "retraction_extra_prime_amount": { "minimum_value_warning": "-2.0" } } -} \ No newline at end of file +} diff --git a/resources/definitions/deltacomb_base.def.json b/resources/definitions/deltacomb_base.def.json index a4634bfcf1f..f712c2c2cbf 100644 --- a/resources/definitions/deltacomb_base.def.json +++ b/resources/definitions/deltacomb_base.def.json @@ -55,8 +55,6 @@ "machine_shape": { "default_value": "elliptic" }, "machine_start_gcode": { "default_value": ";---------------------------------------\n;Deltacomb start script\n;---------------------------------------\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nM420 S1; Bed Level Enable\nG92 E0 ;zero the extruded length\nG1 Z15.0 F9000 ;move to the platform down 15mm\nG1 F9000\n\n;Put printing message on LCD screen\nM117 In stampa...\nM140 S{print_bed_temperature} ;set the target bed temperature\n;---------------------------------------" }, "prime_tower_brim_enable": { "value": false }, - "prime_tower_position_x": { "value": "prime_tower_size / 2" }, - "prime_tower_position_y": { "value": "machine_depth / 2 - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" }, "prime_tower_size": { "value": "math.sqrt(extruders_enabled_count * prime_tower_min_volume / layer_height / math.pi) * 2" }, "retraction_amount": { "default_value": 3.5 }, "retraction_combing": { "value": "'noskin'" }, @@ -87,4 +85,4 @@ "travel_avoid_supports": { "value": "True" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } -} \ No newline at end of file +} diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index 8513dd5f8e9..004212b2832 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -131,8 +131,6 @@ "machine_width": { "default_value": 238 }, "material_adhesion_tendency": { "enabled": true }, "material_diameter": { "default_value": 1.75 }, - "prime_tower_position_x": { "value": "180" }, - "prime_tower_position_y": { "value": "160" }, "retraction_amount": { "default_value": 6.5 }, "retraction_speed": { "default_value": 25 }, "speed_support": { "value": "speed_wall_0" }, @@ -158,4 +156,4 @@ "value": "retraction_speed" } } -} \ No newline at end of file +} diff --git a/resources/definitions/felixpro2dual.def.json b/resources/definitions/felixpro2dual.def.json index fd621f60737..3a18755b176 100644 --- a/resources/definitions/felixpro2dual.def.json +++ b/resources/definitions/felixpro2dual.def.json @@ -56,8 +56,6 @@ "default_value": 110, "value": "material_flow * 1.1" }, - "prime_tower_position_x": { "value": "250" }, - "prime_tower_position_y": { "value": "200" }, "retraction_amount": { "default_value": 1 }, "retraction_speed": { "default_value": 50 }, "skirt_brim_minimal_length": { "default_value": 130 }, @@ -66,4 +64,4 @@ "top_bottom_thickness": { "default_value": 1 }, "wall_thickness": { "value": "1" } } -} \ No newline at end of file +} diff --git a/resources/definitions/geeetech_A30M.def.json b/resources/definitions/geeetech_A30M.def.json index 8b6e6a703bf..4526c5dbfa8 100644 --- a/resources/definitions/geeetech_A30M.def.json +++ b/resources/definitions/geeetech_A30M.def.json @@ -30,8 +30,6 @@ "machine_height": { "default_value": 420 }, "machine_name": { "default_value": "Geeetech A30M" }, "machine_start_gcode": { "default_value": ";Geeetech A30M Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, - "machine_width": { "default_value": 320 }, - "prime_tower_position_x": { "value": 290 }, - "prime_tower_position_y": { "value": 260 } + "machine_width": { "default_value": 320 } } -} \ No newline at end of file +} diff --git a/resources/definitions/geeetech_A30T.def.json b/resources/definitions/geeetech_A30T.def.json index 610ee35fa40..e734cf64513 100644 --- a/resources/definitions/geeetech_A30T.def.json +++ b/resources/definitions/geeetech_A30T.def.json @@ -31,8 +31,6 @@ "machine_height": { "default_value": 420 }, "machine_name": { "default_value": "Geeetech A30T" }, "machine_start_gcode": { "default_value": ";Geeetech A30T Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, - "machine_width": { "default_value": 320 }, - "prime_tower_position_x": { "value": 290 }, - "prime_tower_position_y": { "value": 260 } + "machine_width": { "default_value": 320 } } -} \ No newline at end of file +} diff --git a/resources/definitions/geeetech_I3ProC.def.json b/resources/definitions/geeetech_I3ProC.def.json index f05185e5bab..bdad018e296 100644 --- a/resources/definitions/geeetech_I3ProC.def.json +++ b/resources/definitions/geeetech_I3ProC.def.json @@ -31,8 +31,6 @@ "machine_name": { "default_value": "Geeetech I3ProC" }, "machine_start_gcode": { "default_value": ";Geeetech I3ProC Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y10 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y180.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y180.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y10 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, "machine_width": { "default_value": 200 }, - "prime_tower_position_x": { "value": 170 }, - "prime_tower_position_y": { "value": 140 }, "retraction_amount": { "value": 2 } } -} \ No newline at end of file +} diff --git a/resources/definitions/geeetech_MizarM.def.json b/resources/definitions/geeetech_MizarM.def.json index d4182ebb62d..4ca8c9cf2aa 100644 --- a/resources/definitions/geeetech_MizarM.def.json +++ b/resources/definitions/geeetech_MizarM.def.json @@ -31,8 +31,6 @@ "machine_name": { "default_value": "Geeetech MizarM" }, "machine_start_gcode": { "default_value": ";Official open-source firmware for MizarM: https://github.com/Geeetech3D/Mizar-M \n\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, "machine_width": { "default_value": 255 }, - "material_standby_temperature": { "value": 200 }, - "prime_tower_position_x": { "value": 225 }, - "prime_tower_position_y": { "value": 195 } + "material_standby_temperature": { "value": 200 } } -} \ No newline at end of file +} diff --git a/resources/definitions/hms434.def.json b/resources/definitions/hms434.def.json index 5250df5d733..60eb4cbeec7 100644 --- a/resources/definitions/hms434.def.json +++ b/resources/definitions/hms434.def.json @@ -137,8 +137,6 @@ "minimum_polygon_circumference": { "value": 0.05 }, "optimize_wall_printing_order": { "default_value": true }, "prime_blob_enable": { "default_value": false }, - "prime_tower_position_x": { "value": 125 }, - "prime_tower_position_y": { "value": 70 }, "prime_tower_size": { "value": 20.6 }, "retract_at_layer_change": { "value": false }, "retraction_combing": { "value": "'off'" }, @@ -184,4 +182,4 @@ "z_seam_x": { "value": "300" }, "z_seam_y": { "value": "325" } } -} \ No newline at end of file +} diff --git a/resources/definitions/leapfrog_bolt_pro.def.json b/resources/definitions/leapfrog_bolt_pro.def.json index c880eef16c3..0e4d3c3bfd5 100644 --- a/resources/definitions/leapfrog_bolt_pro.def.json +++ b/resources/definitions/leapfrog_bolt_pro.def.json @@ -81,11 +81,9 @@ "material_initial_print_temperature": { "value": "default_material_print_temperature" }, "material_standby_temperature": { "enabled": false }, "prime_tower_enable": { "resolve": "extruders_enabled_count > 1" }, - "prime_tower_position_x": { "value": "169" }, - "prime_tower_position_y": { "value": "25" }, "retraction_amount": { "default_value": 2 }, "retraction_combing": { "value": "'all'" }, "skirt_line_count": { "default_value": 3 }, "speed_travel": { "value": "200" } } -} \ No newline at end of file +} diff --git a/resources/definitions/lnl3d_d3.def.json b/resources/definitions/lnl3d_d3.def.json index 52e8042306f..0c0bfacd411 100755 --- a/resources/definitions/lnl3d_d3.def.json +++ b/resources/definitions/lnl3d_d3.def.json @@ -17,8 +17,6 @@ "machine_depth": { "default_value": 300 }, "machine_height": { "default_value": 350 }, "machine_name": { "default_value": "LNL3D D3" }, - "machine_width": { "default_value": 300 }, - "prime_tower_position_x": { "value": "155" }, - "prime_tower_position_y": { "value": "155" } + "machine_width": { "default_value": 300 } } -} \ No newline at end of file +} diff --git a/resources/definitions/lnl3d_d3_vulcan.def.json b/resources/definitions/lnl3d_d3_vulcan.def.json index f81cae81c50..fe0d2aea297 100755 --- a/resources/definitions/lnl3d_d3_vulcan.def.json +++ b/resources/definitions/lnl3d_d3_vulcan.def.json @@ -17,8 +17,6 @@ "machine_depth": { "default_value": 300 }, "machine_height": { "default_value": 320 }, "machine_name": { "default_value": "LNL3D D3 Vulcan" }, - "machine_width": { "default_value": 295 }, - "prime_tower_position_x": { "value": "155" }, - "prime_tower_position_y": { "value": "155" } + "machine_width": { "default_value": 295 } } -} \ No newline at end of file +} diff --git a/resources/definitions/lnl3d_d5.def.json b/resources/definitions/lnl3d_d5.def.json index 535341166fd..6b1e9667375 100755 --- a/resources/definitions/lnl3d_d5.def.json +++ b/resources/definitions/lnl3d_d5.def.json @@ -17,8 +17,6 @@ "machine_depth": { "default_value": 500 }, "machine_height": { "default_value": 600 }, "machine_name": { "default_value": "LNL3D D5" }, - "machine_width": { "default_value": 500 }, - "prime_tower_position_x": { "value": "155" }, - "prime_tower_position_y": { "value": "155" } + "machine_width": { "default_value": 500 } } -} \ No newline at end of file +} diff --git a/resources/definitions/lnl3d_d6.def.json b/resources/definitions/lnl3d_d6.def.json index b6f99a13aeb..2f2f8ef0084 100644 --- a/resources/definitions/lnl3d_d6.def.json +++ b/resources/definitions/lnl3d_d6.def.json @@ -17,8 +17,6 @@ "machine_depth": { "default_value": 600 }, "machine_height": { "default_value": 600 }, "machine_name": { "default_value": "LNL3D D6" }, - "machine_width": { "default_value": 600 }, - "prime_tower_position_x": { "value": "155" }, - "prime_tower_position_y": { "value": "155" } + "machine_width": { "default_value": 600 } } -} \ No newline at end of file +} diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index 25dc7f5ae8b..08a54821787 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -46,8 +46,6 @@ "optimize_wall_printing_order": { "value": true }, "prime_tower_enable": { "value": true }, "prime_tower_min_volume": { "value": 30 }, - "prime_tower_position_x": { "value": 50 }, - "prime_tower_position_y": { "value": 50 }, "retract_at_layer_change": { "value": false }, "retraction_amount": { "value": 4.5 }, "roofing_layer_count": { "value": 1 }, @@ -69,4 +67,4 @@ "z_seam_type": { "default_value": "sharpest_corner" }, "zig_zaggify_infill": { "value": true } } -} \ No newline at end of file +} diff --git a/resources/definitions/makeit_pro_l.def.json b/resources/definitions/makeit_pro_l.def.json index dfba3006986..7ef242c46b2 100644 --- a/resources/definitions/makeit_pro_l.def.json +++ b/resources/definitions/makeit_pro_l.def.json @@ -43,12 +43,10 @@ "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 305 }, - "prime_tower_position_x": { "value": "185" }, - "prime_tower_position_y": { "value": "160" }, "print_sequence": { "enabled": true }, "retraction_amount": { "default_value": 6 }, "retraction_speed": { "default_value": 180 }, "speed_print": { "default_value": 60 }, "wall_thickness": { "value": "1.2" } } -} \ No newline at end of file +} diff --git a/resources/definitions/makeit_pro_m.def.json b/resources/definitions/makeit_pro_m.def.json index 7b42c3acafc..cd1220ef0e9 100644 --- a/resources/definitions/makeit_pro_m.def.json +++ b/resources/definitions/makeit_pro_m.def.json @@ -42,12 +42,10 @@ "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 200 }, - "prime_tower_position_x": { "value": "185" }, - "prime_tower_position_y": { "value": "160" }, "print_sequence": { "enabled": false }, "retraction_amount": { "default_value": 6 }, "retraction_speed": { "default_value": 180 }, "speed_print": { "default_value": 60 }, "wall_thickness": { "value": "1.2" } } -} \ No newline at end of file +} diff --git a/resources/definitions/makeit_pro_mx.def.json b/resources/definitions/makeit_pro_mx.def.json index f7728af7f63..bad188d0639 100644 --- a/resources/definitions/makeit_pro_mx.def.json +++ b/resources/definitions/makeit_pro_mx.def.json @@ -42,12 +42,10 @@ "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG92 E0 ;zero the extruded length\nG28 ;home\nG1 F200 E30 ;extrude 30 mm of feed stock\nG92 E0 ;zero the extruded length\nG1 E-5 ;retract 5 mm\nG28 SC ;Do homeing, clean nozzles and let printer to know that printing started\nG92 X-6 ;Sets Curas checker board to match printers heated bed coordinates\nG1 F{speed_travel}\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 200 }, - "prime_tower_position_x": { "value": "185" }, - "prime_tower_position_y": { "value": "160" }, "print_sequence": { "enabled": false }, "retraction_amount": { "default_value": 6 }, "retraction_speed": { "default_value": 180 }, "speed_print": { "default_value": 60 }, "wall_thickness": { "value": "1.2" } } -} \ No newline at end of file +} diff --git a/resources/definitions/raise3D_N2_dual.def.json b/resources/definitions/raise3D_N2_dual.def.json index 690a9730b42..59bb2d61564 100644 --- a/resources/definitions/raise3D_N2_dual.def.json +++ b/resources/definitions/raise3D_N2_dual.def.json @@ -42,8 +42,6 @@ "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\nT1; left tool\n; set extruder steps per mm\nM92 E140\nT0; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\nT1; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 305 }, - "prime_tower_position_x": { "value": "195" }, - "prime_tower_position_y": { "value": "149" }, "retraction_amount": { "default_value": 1.0 } } -} \ No newline at end of file +} diff --git a/resources/definitions/raise3D_N2_plus_dual.def.json b/resources/definitions/raise3D_N2_plus_dual.def.json index 66996960153..13469cfe6cd 100644 --- a/resources/definitions/raise3D_N2_plus_dual.def.json +++ b/resources/definitions/raise3D_N2_plus_dual.def.json @@ -42,8 +42,6 @@ "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\nT1; left tool\n; set extruder steps per mm\nM92 E140\nT0; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\nT1; left tool\nG92 E0 E1\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 305 }, - "prime_tower_position_x": { "value": "195" }, - "prime_tower_position_y": { "value": "149" }, "retraction_amount": { "default_value": 1.0 } } -} \ No newline at end of file +} diff --git a/resources/definitions/raise3D_N2_plus_single.def.json b/resources/definitions/raise3D_N2_plus_single.def.json index 5508af21884..1b99e490a2e 100644 --- a/resources/definitions/raise3D_N2_plus_single.def.json +++ b/resources/definitions/raise3D_N2_plus_single.def.json @@ -37,8 +37,6 @@ "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 305 }, - "prime_tower_position_x": { "value": "195" }, - "prime_tower_position_y": { "value": "149" }, "retraction_amount": { "default_value": 1.0 } } -} \ No newline at end of file +} diff --git a/resources/definitions/raise3D_N2_single.def.json b/resources/definitions/raise3D_N2_single.def.json index e5a9af0a0e3..de0550a8960 100644 --- a/resources/definitions/raise3D_N2_single.def.json +++ b/resources/definitions/raise3D_N2_single.def.json @@ -37,8 +37,6 @@ "machine_start_gcode": { "default_value": "G90\nG21\n; home all axes\nG28\nG92 X0 Y0 Z0\n; move heatbed into position\nG1 X20.0 Y20.0 Z1.0 F1000\n; zero extruders\nG92 E0 E1\nT0; right tool\n; set extruder steps per mm\nM92 E140\n; purge nozzle\nG1 E25 F250\n; zero extruders\nG92 E0 E1\n; move heatbed down a little more\nG1 Z5.0 F20\n; wait 600ms\nG4 600\n; move to tack down the strands\nG1 X20.0 Y30.0 Z0 F9000\n; wait 600ms\nG4 600\n;move up a bit\nG1 Z5.0 F9000\n; wait 300ms\nG4 300\n;fast move to center\nG1 X152.5 Y152.5 F9000\nT0\n;Raise3D Job Start\nM117 Printing...\nM1001\n" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 305 }, - "prime_tower_position_x": { "value": "195" }, - "prime_tower_position_y": { "value": "149" }, "retraction_amount": { "default_value": 1.0 } } -} \ No newline at end of file +} diff --git a/resources/definitions/skriware_2.def.json b/resources/definitions/skriware_2.def.json index 642b766e0e7..79b59845115 100644 --- a/resources/definitions/skriware_2.def.json +++ b/resources/definitions/skriware_2.def.json @@ -143,8 +143,6 @@ "optimize_wall_printing_order": { "default_value": true }, "prime_tower_flow": { "value": "99" }, "prime_tower_min_volume": { "default_value": 4 }, - "prime_tower_position_x": { "value": "1" }, - "prime_tower_position_y": { "value": "1" }, "prime_tower_size": { "default_value": 1 }, "raft_acceleration": { "value": "400" }, "raft_airgap": { "default_value": 0.2 }, @@ -265,4 +263,4 @@ "z_seam_x": { "value": "115" }, "z_seam_y": { "value": "180" } } -} \ No newline at end of file +} diff --git a/resources/definitions/stereotech_ste320.def.json b/resources/definitions/stereotech_ste320.def.json index 26748414116..749e9ff61bd 100644 --- a/resources/definitions/stereotech_ste320.def.json +++ b/resources/definitions/stereotech_ste320.def.json @@ -45,8 +45,6 @@ "machine_name": { "default_value": "Stereotech STE320" }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;homing\nG1 Z15.0 F9000 ;move the platform down 15mm\nT1 ;Switch to the 2nd extruder\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F200 E-{switch_extruder_retraction_amount}\nT0 ;Switch to the 1st extruder\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, - "machine_width": { "default_value": 218 }, - "prime_tower_position_x": { "value": "195" }, - "prime_tower_position_y": { "value": "149" } + "machine_width": { "default_value": 218 } } -} \ No newline at end of file +} diff --git a/resources/definitions/strateo3d.def.json b/resources/definitions/strateo3d.def.json index 564ae78254b..31204f6f588 100644 --- a/resources/definitions/strateo3d.def.json +++ b/resources/definitions/strateo3d.def.json @@ -226,8 +226,6 @@ "meshfix_maximum_deviation": { "default_value": 0.04 }, "optimize_wall_printing_order": { "value": "True" }, "prime_tower_min_volume": { "default_value": 35 }, - "prime_tower_position_x": { "value": "machine_width/2 + prime_tower_size/2" }, - "prime_tower_position_y": { "value": "machine_depth - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" }, "retraction_amount": { "default_value": 1.5 }, "retraction_combing_max_distance": { "default_value": 5 }, "retraction_count_max": { "default_value": 15 }, @@ -276,4 +274,4 @@ "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "wall_thickness": { "value": "wall_line_width_0 + wall_line_width_x" } } -} \ No newline at end of file +} diff --git a/resources/definitions/strateo3d_IDEX420.def.json b/resources/definitions/strateo3d_IDEX420.def.json index 3c217dea34a..59785e4d3f3 100644 --- a/resources/definitions/strateo3d_IDEX420.def.json +++ b/resources/definitions/strateo3d_IDEX420.def.json @@ -114,8 +114,6 @@ "material_diameter": { "default_value": 1.75 }, "prime_tower_enable": { "default_value": true }, "prime_tower_min_volume": { "default_value": 35.6 }, - "prime_tower_position_x": { "value": "machine_depth / 2 - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_x'))) - 1" }, - "prime_tower_position_y": { "value": "machine_depth / 2 - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_y'))) - 3" }, "raft_acceleration": { "value": "machine_acceleration" }, "raft_base_acceleration": { "value": "machine_acceleration" }, "raft_interface_acceleration": { "value": "machine_acceleration" }, @@ -232,4 +230,4 @@ "travel_avoid_distance": { "value": "3" }, "wall_line_count": { "value": "4" } } -} \ No newline at end of file +} diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index af8fc071220..18fe051aaa1 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -150,7 +150,6 @@ "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, "prime_tower_enable": { "default_value": true }, - "prime_tower_position_x": { "value": "machine_depth - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) - 30" }, "prime_tower_wipe_enabled": { "default_value": false }, "retraction_amount": { "value": "6.5" }, "retraction_hop": { "value": "2" }, @@ -176,4 +175,4 @@ "wall_0_inset": { "value": "0" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } -} \ No newline at end of file +} diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json index ee024dcf0d2..99890813edb 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -89,8 +89,6 @@ "machine_name": { "default_value": "Ultimaker Original" }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nT1 ;Switch to the 2nd extruder\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F200 E-{switch_extruder_retraction_amount}\nT0 ;Switch to the 1st extruder\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, - "machine_width": { "default_value": 205 }, - "prime_tower_position_x": { "value": "195" }, - "prime_tower_position_y": { "value": "149" } + "machine_width": { "default_value": 205 } } -} \ No newline at end of file +} diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index 3b5437d0d4d..f4da80ded99 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -40,8 +40,6 @@ optimize_wall_printing_order = True prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_position_x = 169 -prime_tower_position_y = 25 prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index 3a6467bdc23..a052562cd34 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -40,8 +40,6 @@ optimize_wall_printing_order = True prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_position_x = 169 -prime_tower_position_y = 25 prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index 1a763f07ec7..145cd34ead9 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -38,8 +38,6 @@ optimize_wall_printing_order = True prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_position_x = 169 -prime_tower_position_y = 25 prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index 69698b555ba..e6e2cb78a00 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -38,8 +38,6 @@ optimize_wall_printing_order = True prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_position_x = 169 -prime_tower_position_y = 25 prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index 404eb48a2e2..56587fe8838 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -37,8 +37,6 @@ optimize_wall_printing_order = True prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_position_x = 169 -prime_tower_position_y = 25 prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index c85a86507a1..10353f61103 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -37,8 +37,6 @@ optimize_wall_printing_order = True prime_tower_brim_enable = True prime_tower_enable = True prime_tower_min_volume = 6 -prime_tower_position_x = 169 -prime_tower_position_y = 25 prime_tower_size = 20 prime_tower_wipe_enabled = True retract_at_layer_change = False diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 62b96f2e850..d9f0a0aaeaf 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -31,8 +31,6 @@ ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False -prime_tower_position_x = 350 -prime_tower_position_y = 350 retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 4ce1ac32d9d..620622e555f 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -31,8 +31,6 @@ ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False -prime_tower_position_x = 350 -prime_tower_position_y = 350 retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index e37ec93ea84..05eeb68305a 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -31,8 +31,6 @@ ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False -prime_tower_position_x = 350 -prime_tower_position_y = 350 retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index dcbfb3d58a9..b63ef09a6b6 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -30,8 +30,6 @@ ooze_shield_angle = 20 ooze_shield_dist = 4 ooze_shield_enabled = True prime_tower_enable = False -prime_tower_position_x = 350 -prime_tower_position_y = 350 retraction_amount = 0.75 retraction_combing = off retraction_speed = 70 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index 35106e960cf..ac5f3e5bee7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -24,8 +24,6 @@ material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True prime_tower_enable = True prime_tower_flow = 110 -prime_tower_position_x = 127.5 -prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 retraction_min_travel = 2 skirt_gap = 2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index 9b6258a1f41..eca85becc64 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -21,8 +21,6 @@ material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True prime_tower_enable = True prime_tower_flow = 110 -prime_tower_position_x = 127.5 -prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 retraction_hop_enabled = False support_enable = True diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 9ad32705aaa..8071d7193e5 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -32,8 +32,6 @@ material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True prime_tower_enable = True prime_tower_flow = 110 -prime_tower_position_x = 127.5 -prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 retraction_amount = 5 retraction_hop_enabled = False diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 5aa5a445fec..8354fba5e09 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -32,8 +32,6 @@ material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True prime_tower_enable = True prime_tower_flow = 110 -prime_tower_position_x = 127.5 -prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 retraction_amount = 5 retraction_hop_enabled = False diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 262090dce6c..074632abda3 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -21,8 +21,6 @@ material_print_temperature = =default_material_print_temperature optimize_wall_printing_order = True prime_tower_enable = True prime_tower_flow = 110 -prime_tower_position_x = 127.5 -prime_tower_position_y = =math.ceil(250-prime_tower_size) prime_tower_size = 35 retraction_hop_enabled = False support_enable = True From d3150016baf84fd203714696e9502065dd6c1750 Mon Sep 17 00:00:00 2001 From: wawanbreton Date: Tue, 24 Oct 2023 14:13:22 +0000 Subject: [PATCH 063/121] Applied printer-linter format --- resources/definitions/Mark2_for_Ultimaker2.def.json | 2 +- resources/definitions/SV02.def.json | 2 +- resources/definitions/atmat_signal_pro_base.def.json | 2 +- resources/definitions/bibo2_dual.def.json | 2 +- resources/definitions/builder_premium_large.def.json | 2 +- resources/definitions/builder_premium_medium.def.json | 2 +- resources/definitions/builder_premium_small.def.json | 2 +- resources/definitions/cartesio.def.json | 2 +- resources/definitions/deltacomb_base.def.json | 2 +- resources/definitions/dxu.def.json | 2 +- resources/definitions/felixpro2dual.def.json | 2 +- resources/definitions/geeetech_A30M.def.json | 2 +- resources/definitions/geeetech_A30T.def.json | 2 +- resources/definitions/geeetech_I3ProC.def.json | 2 +- resources/definitions/geeetech_MizarM.def.json | 2 +- resources/definitions/hms434.def.json | 2 +- resources/definitions/leapfrog_bolt_pro.def.json | 2 +- resources/definitions/lnl3d_d3.def.json | 2 +- resources/definitions/lnl3d_d3_vulcan.def.json | 2 +- resources/definitions/lnl3d_d5.def.json | 2 +- resources/definitions/lnl3d_d6.def.json | 2 +- resources/definitions/lotmaxx_sc60.def.json | 2 +- resources/definitions/makeit_pro_l.def.json | 2 +- resources/definitions/makeit_pro_m.def.json | 2 +- resources/definitions/makeit_pro_mx.def.json | 2 +- resources/definitions/raise3D_N2_dual.def.json | 2 +- resources/definitions/raise3D_N2_plus_dual.def.json | 2 +- resources/definitions/raise3D_N2_plus_single.def.json | 2 +- resources/definitions/raise3D_N2_single.def.json | 2 +- resources/definitions/skriware_2.def.json | 2 +- resources/definitions/stereotech_ste320.def.json | 2 +- resources/definitions/strateo3d.def.json | 2 +- resources/definitions/strateo3d_IDEX420.def.json | 2 +- resources/definitions/ultimaker3.def.json | 2 +- resources/definitions/ultimaker_original_dual.def.json | 2 +- 35 files changed, 35 insertions(+), 35 deletions(-) diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index f8da6e356ce..5eda5ca6f29 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -162,4 +162,4 @@ "value": "retraction_speed" } } -} +} \ No newline at end of file diff --git a/resources/definitions/SV02.def.json b/resources/definitions/SV02.def.json index ecb5eea28ef..45b2572242e 100644 --- a/resources/definitions/SV02.def.json +++ b/resources/definitions/SV02.def.json @@ -71,4 +71,4 @@ "top_bottom_thickness": { "default_value": 1 }, "wall_0_wipe_dist": { "value": 0.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index 7dad5a121ef..f19dc8920d7 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -171,4 +171,4 @@ "wall_overhang_speed_factor": { "value": "50" }, "zig_zaggify_infill": { "value": "True" } } -} +} \ No newline at end of file diff --git a/resources/definitions/bibo2_dual.def.json b/resources/definitions/bibo2_dual.def.json index 19fc6be081b..c8da4897ea1 100644 --- a/resources/definitions/bibo2_dual.def.json +++ b/resources/definitions/bibo2_dual.def.json @@ -43,4 +43,4 @@ "machine_width": { "default_value": 214 }, "speed_print": { "default_value": 40 } } -} +} \ No newline at end of file diff --git a/resources/definitions/builder_premium_large.def.json b/resources/definitions/builder_premium_large.def.json index 0dd4b6661ae..f3bfa592724 100644 --- a/resources/definitions/builder_premium_large.def.json +++ b/resources/definitions/builder_premium_large.def.json @@ -100,4 +100,4 @@ "travel_retract_before_outer_wall": { "default_value": true }, "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/builder_premium_medium.def.json b/resources/definitions/builder_premium_medium.def.json index e0525e12325..1d685960202 100644 --- a/resources/definitions/builder_premium_medium.def.json +++ b/resources/definitions/builder_premium_medium.def.json @@ -100,4 +100,4 @@ "travel_retract_before_outer_wall": { "default_value": true }, "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/builder_premium_small.def.json b/resources/definitions/builder_premium_small.def.json index 882d6662846..b59b7fadcf0 100644 --- a/resources/definitions/builder_premium_small.def.json +++ b/resources/definitions/builder_premium_small.def.json @@ -99,4 +99,4 @@ "travel_retract_before_outer_wall": { "default_value": true }, "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/cartesio.def.json b/resources/definitions/cartesio.def.json index 934995355f0..eadef638573 100644 --- a/resources/definitions/cartesio.def.json +++ b/resources/definitions/cartesio.def.json @@ -69,4 +69,4 @@ "prime_tower_size": { "value": 24.0 }, "retraction_extra_prime_amount": { "minimum_value_warning": "-2.0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/deltacomb_base.def.json b/resources/definitions/deltacomb_base.def.json index f712c2c2cbf..7ffd3178305 100644 --- a/resources/definitions/deltacomb_base.def.json +++ b/resources/definitions/deltacomb_base.def.json @@ -85,4 +85,4 @@ "travel_avoid_supports": { "value": "True" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" } } -} +} \ No newline at end of file diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index 004212b2832..bb61db16867 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -156,4 +156,4 @@ "value": "retraction_speed" } } -} +} \ No newline at end of file diff --git a/resources/definitions/felixpro2dual.def.json b/resources/definitions/felixpro2dual.def.json index 3a18755b176..316891224e7 100644 --- a/resources/definitions/felixpro2dual.def.json +++ b/resources/definitions/felixpro2dual.def.json @@ -64,4 +64,4 @@ "top_bottom_thickness": { "default_value": 1 }, "wall_thickness": { "value": "1" } } -} +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A30M.def.json b/resources/definitions/geeetech_A30M.def.json index 4526c5dbfa8..864ad270865 100644 --- a/resources/definitions/geeetech_A30M.def.json +++ b/resources/definitions/geeetech_A30M.def.json @@ -32,4 +32,4 @@ "machine_start_gcode": { "default_value": ";Geeetech A30M Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/geeetech_A30T.def.json b/resources/definitions/geeetech_A30T.def.json index e734cf64513..283902ae850 100644 --- a/resources/definitions/geeetech_A30T.def.json +++ b/resources/definitions/geeetech_A30T.def.json @@ -33,4 +33,4 @@ "machine_start_gcode": { "default_value": ";Geeetech A30T Custom Start G-code\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, "machine_width": { "default_value": 320 } } -} +} \ No newline at end of file diff --git a/resources/definitions/geeetech_I3ProC.def.json b/resources/definitions/geeetech_I3ProC.def.json index bdad018e296..eabb4bd61c0 100644 --- a/resources/definitions/geeetech_I3ProC.def.json +++ b/resources/definitions/geeetech_I3ProC.def.json @@ -33,4 +33,4 @@ "machine_width": { "default_value": 200 }, "retraction_amount": { "value": 2 } } -} +} \ No newline at end of file diff --git a/resources/definitions/geeetech_MizarM.def.json b/resources/definitions/geeetech_MizarM.def.json index 4ca8c9cf2aa..b681dda657a 100644 --- a/resources/definitions/geeetech_MizarM.def.json +++ b/resources/definitions/geeetech_MizarM.def.json @@ -33,4 +33,4 @@ "machine_width": { "default_value": 255 }, "material_standby_temperature": { "value": 200 } } -} +} \ No newline at end of file diff --git a/resources/definitions/hms434.def.json b/resources/definitions/hms434.def.json index 60eb4cbeec7..0972dcdb343 100644 --- a/resources/definitions/hms434.def.json +++ b/resources/definitions/hms434.def.json @@ -182,4 +182,4 @@ "z_seam_x": { "value": "300" }, "z_seam_y": { "value": "325" } } -} +} \ No newline at end of file diff --git a/resources/definitions/leapfrog_bolt_pro.def.json b/resources/definitions/leapfrog_bolt_pro.def.json index 0e4d3c3bfd5..e4a13217e5f 100644 --- a/resources/definitions/leapfrog_bolt_pro.def.json +++ b/resources/definitions/leapfrog_bolt_pro.def.json @@ -86,4 +86,4 @@ "skirt_line_count": { "default_value": 3 }, "speed_travel": { "value": "200" } } -} +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d3.def.json b/resources/definitions/lnl3d_d3.def.json index 0c0bfacd411..a678be9b1b1 100755 --- a/resources/definitions/lnl3d_d3.def.json +++ b/resources/definitions/lnl3d_d3.def.json @@ -19,4 +19,4 @@ "machine_name": { "default_value": "LNL3D D3" }, "machine_width": { "default_value": 300 } } -} +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d3_vulcan.def.json b/resources/definitions/lnl3d_d3_vulcan.def.json index fe0d2aea297..05ea23d7ab0 100755 --- a/resources/definitions/lnl3d_d3_vulcan.def.json +++ b/resources/definitions/lnl3d_d3_vulcan.def.json @@ -19,4 +19,4 @@ "machine_name": { "default_value": "LNL3D D3 Vulcan" }, "machine_width": { "default_value": 295 } } -} +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d5.def.json b/resources/definitions/lnl3d_d5.def.json index 6b1e9667375..7b7b6d97556 100755 --- a/resources/definitions/lnl3d_d5.def.json +++ b/resources/definitions/lnl3d_d5.def.json @@ -19,4 +19,4 @@ "machine_name": { "default_value": "LNL3D D5" }, "machine_width": { "default_value": 500 } } -} +} \ No newline at end of file diff --git a/resources/definitions/lnl3d_d6.def.json b/resources/definitions/lnl3d_d6.def.json index 2f2f8ef0084..4575dc8fdc2 100644 --- a/resources/definitions/lnl3d_d6.def.json +++ b/resources/definitions/lnl3d_d6.def.json @@ -19,4 +19,4 @@ "machine_name": { "default_value": "LNL3D D6" }, "machine_width": { "default_value": 600 } } -} +} \ No newline at end of file diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index 08a54821787..f4ce358be1e 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -67,4 +67,4 @@ "z_seam_type": { "default_value": "sharpest_corner" }, "zig_zaggify_infill": { "value": true } } -} +} \ No newline at end of file diff --git a/resources/definitions/makeit_pro_l.def.json b/resources/definitions/makeit_pro_l.def.json index 7ef242c46b2..38087c9b6be 100644 --- a/resources/definitions/makeit_pro_l.def.json +++ b/resources/definitions/makeit_pro_l.def.json @@ -49,4 +49,4 @@ "speed_print": { "default_value": 60 }, "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/makeit_pro_m.def.json b/resources/definitions/makeit_pro_m.def.json index cd1220ef0e9..218d1b553c0 100644 --- a/resources/definitions/makeit_pro_m.def.json +++ b/resources/definitions/makeit_pro_m.def.json @@ -48,4 +48,4 @@ "speed_print": { "default_value": 60 }, "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/makeit_pro_mx.def.json b/resources/definitions/makeit_pro_mx.def.json index bad188d0639..6d9c9700100 100644 --- a/resources/definitions/makeit_pro_mx.def.json +++ b/resources/definitions/makeit_pro_mx.def.json @@ -48,4 +48,4 @@ "speed_print": { "default_value": 60 }, "wall_thickness": { "value": "1.2" } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_dual.def.json b/resources/definitions/raise3D_N2_dual.def.json index 59bb2d61564..f7982165bf1 100644 --- a/resources/definitions/raise3D_N2_dual.def.json +++ b/resources/definitions/raise3D_N2_dual.def.json @@ -44,4 +44,4 @@ "machine_width": { "default_value": 305 }, "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_plus_dual.def.json b/resources/definitions/raise3D_N2_plus_dual.def.json index 13469cfe6cd..0652fb66b58 100644 --- a/resources/definitions/raise3D_N2_plus_dual.def.json +++ b/resources/definitions/raise3D_N2_plus_dual.def.json @@ -44,4 +44,4 @@ "machine_width": { "default_value": 305 }, "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_plus_single.def.json b/resources/definitions/raise3D_N2_plus_single.def.json index 1b99e490a2e..bafdd8a5bb1 100644 --- a/resources/definitions/raise3D_N2_plus_single.def.json +++ b/resources/definitions/raise3D_N2_plus_single.def.json @@ -39,4 +39,4 @@ "machine_width": { "default_value": 305 }, "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/raise3D_N2_single.def.json b/resources/definitions/raise3D_N2_single.def.json index de0550a8960..65a28aac4c1 100644 --- a/resources/definitions/raise3D_N2_single.def.json +++ b/resources/definitions/raise3D_N2_single.def.json @@ -39,4 +39,4 @@ "machine_width": { "default_value": 305 }, "retraction_amount": { "default_value": 1.0 } } -} +} \ No newline at end of file diff --git a/resources/definitions/skriware_2.def.json b/resources/definitions/skriware_2.def.json index 79b59845115..b022f27cf7c 100644 --- a/resources/definitions/skriware_2.def.json +++ b/resources/definitions/skriware_2.def.json @@ -263,4 +263,4 @@ "z_seam_x": { "value": "115" }, "z_seam_y": { "value": "180" } } -} +} \ No newline at end of file diff --git a/resources/definitions/stereotech_ste320.def.json b/resources/definitions/stereotech_ste320.def.json index 749e9ff61bd..cb3adabca62 100644 --- a/resources/definitions/stereotech_ste320.def.json +++ b/resources/definitions/stereotech_ste320.def.json @@ -47,4 +47,4 @@ "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 218 } } -} +} \ No newline at end of file diff --git a/resources/definitions/strateo3d.def.json b/resources/definitions/strateo3d.def.json index 31204f6f588..f21a13ca869 100644 --- a/resources/definitions/strateo3d.def.json +++ b/resources/definitions/strateo3d.def.json @@ -274,4 +274,4 @@ "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "wall_thickness": { "value": "wall_line_width_0 + wall_line_width_x" } } -} +} \ No newline at end of file diff --git a/resources/definitions/strateo3d_IDEX420.def.json b/resources/definitions/strateo3d_IDEX420.def.json index 59785e4d3f3..d4236c126ed 100644 --- a/resources/definitions/strateo3d_IDEX420.def.json +++ b/resources/definitions/strateo3d_IDEX420.def.json @@ -230,4 +230,4 @@ "travel_avoid_distance": { "value": "3" }, "wall_line_count": { "value": "4" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 18fe051aaa1..058b3dfa7ad 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -175,4 +175,4 @@ "wall_0_inset": { "value": "0" }, "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } } -} +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json index 99890813edb..a4cd6bfdf04 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -91,4 +91,4 @@ "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 205 } } -} +} \ No newline at end of file From d27a991c7b4cf9309eb1e68489a98cd3b22670aa Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 24 Oct 2023 16:23:28 +0200 Subject: [PATCH 064/121] Base curve magnitude is now a float CURA-10783 --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index f4aff86964c..59db03ae16e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6714,7 +6714,7 @@ { "label": "Prime Tower Base Curve Magnitude", "description": "The magnitude factor used for the curve of the prime tower foot.", - "type": "int", + "type": "float", "enabled": "resolveOrValue('prime_tower_enable') and (resolveOrValue('prime_tower_brim_enable') or resolveOrValue('adhesion_type') == 'raft')", "default_value": 4, "minimum_value": "0", From b4117bc601332c4cf938d8afd1104dc44b3ab251 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 25 Oct 2023 01:34:04 +0200 Subject: [PATCH 065/121] no need to package glibc-source --- packaging/AppImage-builder/AppImageBuilder.yml.jinja | 1 - 1 file changed, 1 deletion(-) diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 992082e5c64..574809be888 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -48,7 +48,6 @@ AppDir: main include: - xdg-desktop-portal-kde - - glibc-source - libgtk-3-0 - librsvg2-2 - librsvg2-common From 55314a643f2f626f606f8bf8113331cbd7ec4d19 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 25 Oct 2023 09:15:29 +0200 Subject: [PATCH 066/121] Prime tower position refinement CURA-10783 --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 59db03ae16e..88b187a8a2e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6641,7 +6641,7 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "((resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - max((resolveOrValue('prime_tower_base_size') if (adhesion_type == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_x'))) - 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "value": "(resolveOrValue('machine_width') / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (resolveOrValue('machine_width') - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (resolveOrValue('machine_width') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_width / 2 if machine_center_is_zero else machine_width) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "minimum_value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - (machine_width / 2 if machine_center_is_zero else 0)", "settable_per_mesh": false, @@ -6655,7 +6655,7 @@ "unit": "mm", "enabled": "resolveOrValue('prime_tower_enable')", "default_value": 200, - "value": "machine_depth - prime_tower_size - max((resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - max(map(abs, extruderValues('machine_nozzle_offset_y'))) - 1 - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", + "value": "machine_depth - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)", "maximum_value": "(machine_depth / 2 - resolveOrValue('prime_tower_size') if machine_center_is_zero else machine_depth - resolveOrValue('prime_tower_size')) - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "minimum_value": "(machine_depth / -2 if machine_center_is_zero else 0) + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0)", "settable_per_mesh": false, From c7a950d0d0679ff1a0f34080897c95f170b27713 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 25 Oct 2023 10:28:43 +0200 Subject: [PATCH 067/121] Set version to 5.5.0 Contributes to CURA-11218 --- conanfile.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/conanfile.py b/conanfile.py index a24f70470f1..8fe04fba071 100644 --- a/conanfile.py +++ b/conanfile.py @@ -48,7 +48,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.5.0-beta.2" + self.version = "5.5.0" @property def _pycharm_targets(self): @@ -305,15 +305,15 @@ def validate(self): def requirements(self): self.requires("boost/1.82.0") - self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") + self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("curaengine/(latest)@ultimaker/stable") + self.requires("curaengine/5.5.0") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") - self.requires("curaengine_plugin_gradual_flow/(latest)@ultimaker/stable") - self.requires("uranium/(latest)@ultimaker/stable") - self.requires("cura_binary_data/(latest)@ultimaker/stable") + self.requires("curaengine_plugin_gradual_flow/0.1.0") + self.requires("uranium/5.5.0") + self.requires("cura_binary_data/5.5.0") self.requires("cpython/3.10.4") if self.options.internal: self.requires("cura_private_data/(latest)@ultimaker/testing") From 89267dd33f0f20e0a09f8894ce6ee924dfd42f8c Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Wed, 25 Oct 2023 11:22:57 +0200 Subject: [PATCH 068/121] Fix overridden default values CURA-10783 --- resources/definitions/elegoo_base.def.json | 2 +- resources/definitions/lnl3d_base.def.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/elegoo_base.def.json b/resources/definitions/elegoo_base.def.json index c54a388806a..fede962748b 100644 --- a/resources/definitions/elegoo_base.def.json +++ b/resources/definitions/elegoo_base.def.json @@ -71,7 +71,7 @@ "minimum_interface_area": { "default_value": 10 }, "minimum_support_area": { "value": "3 if support_structure == 'normal' else 0" }, "optimize_wall_printing_order": { "default_value": true }, - "prime_tower_brim_enable": { "default_value": true }, + "prime_tower_brim_enable": { "value": true }, "prime_tower_min_volume": { "value": "(layer_height) * (prime_tower_size / 2)**2 * 3 * 0.5 " }, "prime_tower_size": { "default_value": 30 }, "prime_tower_wipe_enabled": { "default_value": false }, diff --git a/resources/definitions/lnl3d_base.def.json b/resources/definitions/lnl3d_base.def.json index 7130bff845e..317121a2149 100644 --- a/resources/definitions/lnl3d_base.def.json +++ b/resources/definitions/lnl3d_base.def.json @@ -67,7 +67,7 @@ "minimum_interface_area": { "value": 10 }, "minimum_support_area": { "value": "2 if support_structure == 'normal' else 0" }, "optimize_wall_printing_order": { "value": "True" }, - "prime_tower_brim_enable": { "default_value": true }, + "prime_tower_brim_enable": { "value": true }, "prime_tower_wipe_enabled": { "default_value": false }, "raft_airgap": { "default_value": 0.2 }, "raft_margin": { "default_value": 2 }, From bd4cc7057d4167123fd91fefdaafeae860342df7 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 25 Oct 2023 11:50:37 +0200 Subject: [PATCH 069/121] pin fdm_materials to 5.5.0 Contributes to CURA-11218 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 8fe04fba071..7a85c60cc77 100644 --- a/conanfile.py +++ b/conanfile.py @@ -319,7 +319,7 @@ def requirements(self): self.requires("cura_private_data/(latest)@ultimaker/testing") self.requires("fdm_materials/(latest)@internal/testing") else: - self.requires("fdm_materials/(latest)@ultimaker/stable") + self.requires("fdm_materials/5.5.0") def build_requirements(self): if self.options.devtools: From ab843c52ae70c65a67c71de574157486916d7506 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Wed, 25 Oct 2023 14:08:09 +0200 Subject: [PATCH 070/121] Add prime-tower-base settings to visibility category. done as part of CURA-10783 --- resources/setting_visibility/expert.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index ff502fd80af..d2e5319c87a 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -358,6 +358,9 @@ prime_tower_position_x prime_tower_position_y prime_tower_wipe_enabled prime_tower_brim_enable +prime_tower_base_size +prime_tower_base_height +prime_tower_base_curvature ooze_shield_enabled ooze_shield_angle ooze_shield_dist From 603d69451299324c120d705bc1c423bacca68369 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 25 Oct 2023 16:27:36 +0200 Subject: [PATCH 071/121] Fix duration in makerbot metadata CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 2a6243828c7..87206a8aaae 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -170,8 +170,9 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["build_plane_temperature"] = material_bed_temperature print_information = application.getPrintInformation() - meta["commanded_duration_s"] = print_information.currentPrintTime.seconds - meta["duration_s"] = print_information.currentPrintTime.seconds + + meta["commanded_duration_s"] = int(print_information.currentPrintTime) + meta["duration_s"] = int(print_information.currentPrintTime) material_lengths = list(map(meter_to_millimeter, print_information.materialLengths)) meta["extrusion_distance_mm"] = material_lengths[0] @@ -202,7 +203,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["preferences"] = dict() for node in nodes: - bound = node.getBoundingBox() + bounds = node.getBoundingBox() meta["preferences"][str(node.getName())] = { "machineBounds": [bounds.right, bounds.back, bounds.left, bounds.front] if bounds is not None else None, "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory, From 251f247147eb43b6fb40a99c71067e3bc1eef6cc Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 25 Oct 2023 17:52:09 +0200 Subject: [PATCH 072/121] Update `platform_temperature` and `build_plane_temperature` CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 4aa8120b67f..059dbd185d7 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -167,7 +167,10 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: } material_bed_temperature = global_stack.getProperty("material_bed_temperature", "value") - meta["build_plane_temperature"] = material_bed_temperature + meta["platform_temperature"] = material_bed_temperature + + build_volume_temperature = global_stack.getProperty("build_volume_temperature", "value") + meta["build_plane_temperature"] = build_volume_temperature print_information = application.getPrintInformation() From 6d0332e895d79dac951d7349310489af7361490b Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 25 Oct 2023 22:41:28 +0200 Subject: [PATCH 073/121] use the latest 0.1.x stable gradual flow plugin --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 4c6138656b2..a1727b9daec 100644 --- a/conanfile.py +++ b/conanfile.py @@ -311,7 +311,7 @@ def requirements(self): self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") - self.requires("curaengine_plugin_gradual_flow/(latest)@ultimaker/testing") + self.requires("curaengine_plugin_gradual_flow/(latest)@ultimaker/stable") self.requires("uranium/(latest)@ultimaker/testing") self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") From 15e7bb1f07e6d365203caaac05420efeb45f8ddd Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Thu, 26 Oct 2023 14:11:44 +0200 Subject: [PATCH 074/121] Pin gradual flow --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index a1727b9daec..b2d5b3ab182 100644 --- a/conanfile.py +++ b/conanfile.py @@ -311,7 +311,7 @@ def requirements(self): self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") - self.requires("curaengine_plugin_gradual_flow/(latest)@ultimaker/stable") + self.requires("curaengine_plugin_gradual_flow/0.1.0") self.requires("uranium/(latest)@ultimaker/testing") self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") From 51ace512185656effecf76a1e1ed6b29e41b2008 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Thu, 26 Oct 2023 15:57:05 +0200 Subject: [PATCH 075/121] Fractional layer-heights description refinement CURA-10407 --- resources/definitions/fdmprinter.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 308587ad704..3b7dc014f2e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5130,7 +5130,7 @@ "support_z_distance": { "label": "Support Z Distance", - "description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. Apart from the top-layer, this value is rounded up to a multiple of the layer height.", + "description": "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers.", "unit": "mm", "type": "float", "minimum_value": "0", @@ -5144,7 +5144,7 @@ "support_top_distance": { "label": "Support Top Distance", - "description": "Distance from the top of the support to the print. Note that this is not rounded.", + "description": "Distance from the top of the support to the print.", "unit": "mm", "minimum_value": "0", "maximum_value_warning": "machine_nozzle_size", @@ -5158,7 +5158,7 @@ "support_bottom_distance": { "label": "Support Bottom Distance", - "description": "Distance from the print to the bottom of the support. Not that this is rounded up to the next layer height.", + "description": "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height.", "unit": "mm", "minimum_value": "0", "maximum_value_warning": "machine_nozzle_size", From b2ced7c0bade3814773f7bccbad0f911e238d9cc Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 26 Oct 2023 16:09:38 +0200 Subject: [PATCH 076/121] Install pyDulcificum Contributes to CURA-10561 --- conandata.yml | 1 + conanfile.py | 3 +++ plugins/MakerbotWriter/MakerbotWriter.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/conandata.yml b/conandata.yml index c5ca663f911..c027bde5679 100644 --- a/conandata.yml +++ b/conandata.yml @@ -86,6 +86,7 @@ pyinstaller: hiddenimports: - "pySavitar" - "pyArcus" + - "pyDulcificum" - "pynest2d" - "PyQt6" - "PyQt6.QtNetwork" diff --git a/conanfile.py b/conanfile.py index a9173e6614b..27736d9daae 100644 --- a/conanfile.py +++ b/conanfile.py @@ -192,6 +192,7 @@ def configure(self): self.options["pyarcus"].shared = True self.options["pysavitar"].shared = True self.options["pynest2d"].shared = True + self.options["dulcificum"].shared = True self.options["cpython"].shared = True self.options["boost"].header_only = True if self.settings.os == "Linux": @@ -204,9 +205,11 @@ def validate(self): def requirements(self): self.requires("boost/1.82.0") + self.requires("fmt/9.0.0") self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") + self.requires("dulcificum/(latest)@ultimaker/cura_10561") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 059dbd185d7..db4a8b7797f 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -5,6 +5,7 @@ import json from typing import cast, List, Optional, Dict from zipfile import BadZipFile, ZipFile, ZIP_DEFLATED +import pyDulcificum as du from PyQt6.QtCore import QBuffer @@ -29,6 +30,7 @@ class MakerbotWriter(MeshWriter): def __init__(self) -> None: super().__init__(add_to_recent_files=False) + Logger.info(f"Using PyDulcificum: {du.__version__}") _PNG_FORMATS = [ {"prefix": "isometric_thumbnail", "width": 120, "height": 120}, From 494543a7d782dd1117b13c568aa1c3d2caf879d0 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 26 Oct 2023 16:23:04 +0200 Subject: [PATCH 077/121] Use CURA-10561 Uranium Contributes to CURA-10561 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 27736d9daae..31ad2108dee 100644 --- a/conanfile.py +++ b/conanfile.py @@ -214,7 +214,7 @@ def requirements(self): self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/testing") + self.requires("uranium/(latest)@ultimaker/cura_10561") self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: From 0ce4a6bd6752e7097c6c4049e6df7296c2febc04 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 26 Oct 2023 17:01:26 +0200 Subject: [PATCH 078/121] Add material map CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index db4a8b7797f..71620d84577 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -54,6 +54,21 @@ def __init__(self) -> None: "1A": "mk14", "2A": "mk14_s", } + _MATERIAL_MAP = { + '2780b345-577b-4a24-a2c5-12e6aad3e690': 'abs', + '88c8919c-6a09-471a-b7b6-e801263d862d': 'abs-wss1', + '416eead4-0d8e-4f0b-8bfc-a91a519befa5': 'asa', + '85bbae0e-938d-46fb-989f-c9b3689dc4f0': 'nylon-cf', + '283d439a-3490-4481-920c-c51d8cdecf9c': 'nylon', + '62414577-94d1-490d-b1e4-7ef3ec40db02': 'pc', + '69386c85-5b6c-421a-bec5-aeb1fb33f060': 'pet', # PETG + '0ff92885-617b-4144-a03c-9989872454bc': 'pla', + 'a4255da2-cb2a-4042-be49-4a83957a2f9a': 'pva', + 'a140ef8f-4f26-4e73-abe0-cfc29d6d1024': 'wss1', + '77873465-83a9-4283-bc44-4e542b8eb3eb': 'sr30', + '96fca5d9-0371-4516-9e96-8e8182677f3c': 'im-pla', + '19baa6a9-94ff-478b-b4a1-8157b74358d2': 'tpu', + } # must be called from the main thread because of OpenGL @staticmethod @@ -188,7 +203,13 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["uuid"] = print_information.slice_uuid - materials = [extruder.material.getMetaData().get("material") for extruder in extruders] + materials = [] + for extruder in extruders: + guid = extruder.material.getMetaData().get("GUID") + material_name = extruder.material.getMetaData().get("material") + material = self._MATERIAL_MAP.get(guid, material_name) + materials.append(material) + meta["material"] = materials[0] meta["materials"] = materials From cdb581a80b3312d056f97023a2495f6b96ef5523 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 26 Oct 2023 17:31:20 +0200 Subject: [PATCH 079/121] Use CURA-10561 private data branch Contributes to CURA-10561 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 31ad2108dee..938ffd13fd7 100644 --- a/conanfile.py +++ b/conanfile.py @@ -218,7 +218,7 @@ def requirements(self): self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: - self.requires("cura_private_data/(latest)@ultimaker/testing") + self.requires("cura_private_data/(latest)@ultimaker/cura_10561") self.requires("fdm_materials/(latest)@internal/testing") else: self.requires("fdm_materials/(latest)@ultimaker/testing") From 089ee6c04b816dc0bad57faee2810489a3533676 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 26 Oct 2023 17:36:57 +0200 Subject: [PATCH 080/121] Use pyDulcificum Contributes to CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 71620d84577..6d91043e3ec 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -110,13 +110,12 @@ def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter. gcode_text_io = StringIO() success = gcode_writer.write(gcode_text_io, None) - # TODO convert gcode_text_io to json - # Writing the g-code failed. Then I can also not write the gzipped g-code. if not success: self.setInformation(gcode_writer.getInformation()) return False + json_toolpaths = du.gcode_2_miracle_jtp(gcode_text_io.getvalue()) metadata = self._getMeta(nodes) png_files = [] @@ -134,6 +133,7 @@ def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter. try: with ZipFile(stream, "w", compression=ZIP_DEFLATED) as zip_stream: zip_stream.writestr("meta.json", json.dumps(metadata, indent=4)) + zip_stream.writestr("print.jsontoolpath", json_toolpaths) for png_file in png_files: file, data = png_file["file"], png_file["data"] zip_stream.writestr(file, data) From b695f4eb357dbd8d6ffba7013efc39d146788954 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 27 Oct 2023 12:24:53 +0200 Subject: [PATCH 081/121] Add setting for specific prime tower raft line spacing CURA-11233 --- resources/definitions/fdmprinter.def.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b6e6a027e96..6ddc305ac0e 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6722,6 +6722,22 @@ "settable_per_mesh": false, "settable_per_extruder": false }, + "prime_tower_raft_base_line_spacing": + { + "label": "Prime Tower Raft Line Spacing", + "description": "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate.", + "unit": "mm", + "type": "float", + "default_value": 1.6, + "value": "raft_base_line_spacing", + "minimum_value": "0", + "minimum_value_warning": "raft_base_line_width", + "maximum_value_warning": "100", + "enabled": "resolveOrValue('prime_tower_enable') and resolveOrValue('adhesion_type') == 'raft'", + "settable_per_mesh": false, + "settable_per_extruder": true, + "limit_to_extruder": "raft_base_extruder_nr" + }, "ooze_shield_enabled": { "label": "Enable Ooze Shield", From aec5ec884444f29e6aa3bdb5c94e7d3741059ddb Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 27 Oct 2023 13:19:22 +0200 Subject: [PATCH 082/121] Add gaggle CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 6d91043e3ec..cd691618389 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -115,7 +115,7 @@ def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter. self.setInformation(gcode_writer.getInformation()) return False - json_toolpaths = du.gcode_2_miracle_jtp(gcode_text_io.getvalue()) + json_toolpaths = convert(gcode_text_io.getvalue()) metadata = self._getMeta(nodes) png_files = [] @@ -235,6 +235,8 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory, } + meta["miracle_config"] = {"gaggles": {str(node.getName()): {} for node in nodes}} + cura_engine_info = ConanInstalls.get("curaengine", {"version": "unknown", "revision": "unknown"}) meta["curaengine_version"] = cura_engine_info["version"] meta["curaengine_commit_hash"] = cura_engine_info["revision"] From b0c63c35c649813c12e8f16fb026ad5fb1573a95 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 27 Oct 2023 13:43:26 +0200 Subject: [PATCH 083/121] Use `pyDulcificum` again CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index cd691618389..af9b271671e 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -115,7 +115,7 @@ def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter. self.setInformation(gcode_writer.getInformation()) return False - json_toolpaths = convert(gcode_text_io.getvalue()) + json_toolpaths = du.gcode_2_miracle_jtp(gcode_text_io.getvalue()) metadata = self._getMeta(nodes) png_files = [] @@ -237,6 +237,18 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["miracle_config"] = {"gaggles": {str(node.getName()): {} for node in nodes}} + meta["purge_routins"] = [ + [ + ["move", [54, 9, 0, 0, 0], 100, [False, False, False, True, True]], + ["purge_move", [72, 9, 0, 100, 0], 3, [False, False, False, True, True]], + ["move", [63, 0, 0, 0, 0], 30, [False, False, False, True, True]] + ], [ + ["move", [54, 9, 0, 0, 0], 100, [False, False, False, True, True]], + ["purge_move", [72, 9, 0, 0, 100], 1, [False, False, False, True, True]], + ["move", [63, 0, 0, 0, 0], 30, [False, False, False, True, True]] + ] + ] + cura_engine_info = ConanInstalls.get("curaengine", {"version": "unknown", "revision": "unknown"}) meta["curaengine_version"] = cura_engine_info["version"] meta["curaengine_commit_hash"] = cura_engine_info["revision"] From b60a3b04ad567ecc0555cd1f581c63b5d7ee50a2 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 27 Oct 2023 13:54:53 +0200 Subject: [PATCH 084/121] Add versions CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index af9b271671e..a574d15bbdd 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -237,25 +237,19 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["miracle_config"] = {"gaggles": {str(node.getName()): {} for node in nodes}} - meta["purge_routins"] = [ - [ - ["move", [54, 9, 0, 0, 0], 100, [False, False, False, True, True]], - ["purge_move", [72, 9, 0, 100, 0], 3, [False, False, False, True, True]], - ["move", [63, 0, 0, 0, 0], 30, [False, False, False, True, True]] - ], [ - ["move", [54, 9, 0, 0, 0], 100, [False, False, False, True, True]], - ["purge_move", [72, 9, 0, 0, 100], 1, [False, False, False, True, True]], - ["move", [63, 0, 0, 0, 0], 30, [False, False, False, True, True]] - ] - ] - cura_engine_info = ConanInstalls.get("curaengine", {"version": "unknown", "revision": "unknown"}) meta["curaengine_version"] = cura_engine_info["version"] meta["curaengine_commit_hash"] = cura_engine_info["revision"] + dulcificum_info = ConanInstalls.get("dulcificum", {"version": "unknown", "revision": "unknown"}) + meta["dulcificum_version"] = dulcificum_info["version"] + meta["dulcificum_commit_hash"] = dulcificum_info["revision"] + meta["makerbot_writer_version"] = self.getVersion() # meta["makerbot_writer_commit_hash"] = self.getRevision() + meta["pyDulcificum"] = du.__version__ + for name, package_info in ConanInstalls.items(): if not name.startswith("curaengine_ "): continue From 5915994d7f6da026927516a76e3d6d00099932f4 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 27 Oct 2023 14:08:54 +0200 Subject: [PATCH 085/121] codecleanup CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index a574d15bbdd..04dcec34d42 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -246,12 +246,11 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["dulcificum_commit_hash"] = dulcificum_info["revision"] meta["makerbot_writer_version"] = self.getVersion() - # meta["makerbot_writer_commit_hash"] = self.getRevision() - meta["pyDulcificum"] = du.__version__ + # Add engine plugin information to the metadata for name, package_info in ConanInstalls.items(): - if not name.startswith("curaengine_ "): + if not name.startswith("curaengine_"): continue meta[f"{name}_version"] = package_info["version"] meta[f"{name}_commit_hash"] = package_info["revision"] From edb38aa5f37170949b645b425fa8515252b4aded Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 28 Oct 2023 08:13:55 +0200 Subject: [PATCH 086/121] Use internal user cura_private_data Easier to filter upon Contributes to CURA-10561 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index b2d5b3ab182..5c331ff6ca0 100644 --- a/conanfile.py +++ b/conanfile.py @@ -316,7 +316,7 @@ def requirements(self): self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: - self.requires("cura_private_data/(latest)@ultimaker/testing") + self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: self.requires("fdm_materials/(latest)@ultimaker/testing") From d8b35aa09f799a509ea8087f84c17641296873c9 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 28 Oct 2023 08:21:19 +0200 Subject: [PATCH 087/121] remove private packages before uploading Contributes to CURA-10561 --- .github/workflows/linux.yml | 13 +++++-------- .github/workflows/macos.yml | 6 +++++- .github/workflows/windows.yml | 5 +++++ 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 719a07250cb..cdbb66a5b40 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -106,16 +106,8 @@ jobs: $HOME/.conan/conan_download_cache key: conan-${{ runner.os }}-${{ runner.arch }}-installer-cache - - name: Hack needed specifically for ubuntu-22.04 from mid-Feb 2023 onwards - if: ${{ startsWith(inputs.operating_system, 'ubuntu-22.04') }} - run: sudo apt remove libodbc2 libodbcinst2 unixodbc-common -y - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - name: Install Linux system requirements run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y sudo apt update sudo apt upgrade @@ -157,6 +149,11 @@ jobs: - name: Create the Packages (Bash) run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json" + - name: Remove internal packages before uploading + run: | + conan remove "*@internal/*" -f || true + conan remove "cura_private_data*" -f || true + - name: Upload the Package(s) if: always() run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 78b4c23fef2..028822d778a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -158,8 +158,12 @@ jobs: - name: Create the Packages (Bash) run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING --json "cura_inst/conan_install_info.json" + - name: Remove internal packages before uploading + run: | + conan remove "*@internal/*" -f || true + conan remove "cura_private_data*" -f || true + - name: Upload the Package(s) - if: ${{ inputs.operating_system != 'self-hosted' }} run: | conan upload "*" -r cura --all -c diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9c9775cae77..40d9df92c3d 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -124,6 +124,11 @@ jobs: - name: Create the Packages (Powershell) run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING --json "cura_inst/conan_install_info.json" + - name: Remove internal packages before uploading + run: | + conan remove "*@internal/*" -f || true + conan remove "cura_private_data*" -f || true + - name: Upload the Package(s) if: always() run: | From 64f5f5491997fe0bc8a8d5b5ebc15fe61deb83a6 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 28 Oct 2023 12:59:18 +0200 Subject: [PATCH 088/121] Fix missing pyinstaller spec generation Contributes to CURA-10561 --- conanfile.py | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 86 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index e046ba806dd..3104cddcc51 100644 --- a/conanfile.py +++ b/conanfile.py @@ -176,6 +176,89 @@ def _generate_cura_version(self, location): conan_installs=self._conan_installs(), )) + def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file): + pyinstaller_metadata = self.conan_data["pyinstaller"] + datas = [] + for data in pyinstaller_metadata["datas"].values(): + if not self.options.internal and data.get("internal", False): + continue + + if "package" in data: # get the paths from conan package + if data["package"] == self.name: + if self.in_local_cache: + src_path = os.path.join(self.package_folder, data["src"]) + else: + src_path = os.path.join(self.source_folder, data["src"]) + else: + src_path = os.path.join(self.deps_cpp_info[data["package"]].rootpath, data["src"]) + elif "root" in data: # get the paths relative from the install folder + src_path = os.path.join(self.install_folder, data["root"], data["src"]) + else: + continue + if Path(src_path).exists(): + datas.append((str(src_path), data["dst"])) + + binaries = [] + for binary in pyinstaller_metadata["binaries"].values(): + if "package" in binary: # get the paths from conan package + src_path = os.path.join(self.deps_cpp_info[binary["package"]].rootpath, binary["src"]) + elif "root" in binary: # get the paths relative from the sourcefolder + src_path = str(self.source_path.joinpath(binary["root"], binary["src"])) + if self.settings.os == "Windows": + src_path = src_path.replace("\\", "\\\\") + else: + continue + if not Path(src_path).exists(): + self.output.warning(f"Source path for binary {binary['binary']} does not exist") + continue + + for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"): + binaries.append((str(bin), binary["dst"])) + for bin in Path(src_path).glob(binary["binary"]): + binaries.append((str(bin), binary["dst"])) + + # Make sure all Conan dependencies which are shared are added to the binary list for pyinstaller + for _, dependency in self.dependencies.host.items(): + for bin_paths in dependency.cpp_info.bindirs: + binaries.extend([(f"{p}", ".") for p in Path(bin_paths).glob("**/*.dll")]) + for lib_paths in dependency.cpp_info.libdirs: + binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.so*")]) + binaries.extend([(f"{p}", ".") for p in Path(lib_paths).glob("**/*.dylib*")]) + + # Copy dynamic libs from lib path + binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.dylib*")]) + binaries.extend([(f"{p}", ".") for p in Path(self._base_dir.joinpath("lib")).glob("**/*.so*")]) + + # Collect all dll's from PyQt6 and place them in the root + binaries.extend([(f"{p}", ".") for p in Path(self._site_packages, "PyQt6", "Qt6").glob("**/*.dll")]) + + with open(os.path.join(self.recipe_folder, "UltiMaker-Cura.spec.jinja"), "r") as f: + pyinstaller = Template(f.read()) + + version = self.conf_info.get("user.cura:version", default = self.version, check_type = str) + cura_version = Version(version) + + with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f: + f.write(pyinstaller.render( + name = str(self.options.display_name).replace(" ", "-"), + display_name = self._app_name, + entrypoint = entrypoint_location, + datas = datas, + binaries = binaries, + venv_script_path = str(self._script_dir), + hiddenimports = pyinstaller_metadata["hiddenimports"], + collect_all = pyinstaller_metadata["collect_all"], + icon = icon_path, + entitlements_file = entitlements_file, + osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None", + upx = str(self.settings.os == "Windows"), + strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now + target_arch = self._pyinstaller_spec_arch, + macos = self.settings.os == "Macos", + version = f"'{version}'", + short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'", + )) + def export_sources(self): copy(self, "*", os.path.join(self.recipe_folder, "plugins"), os.path.join(self.export_sources_folder, "plugins")) copy(self, "*", os.path.join(self.recipe_folder, "resources"), os.path.join(self.export_sources_folder, "resources"), excludes = "*.mo") @@ -300,9 +383,9 @@ def generate(self): vb.generate() # # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - # cpp_info = self.dependencies["gettext"].cpp_info - # pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0]) - # pot.generate() + cpp_info = self.dependencies["gettext"].cpp_info + pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0]) + pot.generate() def build(self): if self.options.devtools: From bb6f8fa554887e810675d629c7811fd25bde24df Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 28 Oct 2023 14:37:54 +0200 Subject: [PATCH 089/121] Fix incorrect embedded quotes Contributes to CURA-10561 --- .github/workflows/linux.yml | 4 ++-- .github/workflows/macos.yml | 4 ++-- .github/workflows/windows.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 7941b13328f..1cabf719bd9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -216,7 +216,7 @@ jobs: f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") for dep_name, dep_info in ConanDependencies.items(): - f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n") + f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - name: Summarize the used Python modules shell: python @@ -236,7 +236,7 @@ jobs: f.write(content) f.writelines("## Python modules:\n") for dep_name, dep_info in ConanDependencies.items(): - f.writelines(f"`{dep_name} {dep_info["version"]}`\n") + f.writelines(f"`{dep_name} {dep_info['version']}`\n") - name: Create the Linux AppImage (Bash) run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 9f2d44bf802..53fb1195206 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -228,7 +228,7 @@ jobs: f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") for dep_name, dep_info in ConanDependencies.items(): - f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n") + f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - name: Summarize the used Python modules shell: python @@ -248,7 +248,7 @@ jobs: f.write(content) f.writelines("## Python modules:\n") for dep_name, dep_info in ConanDependencies.items(): - f.writelines(f"`{dep_name} {dep_info["version"]}`\n") + f.writelines(f"`{dep_name} {dep_info['version']}`\n") - name: Create the Macos dmg (Bash) run: python ../cura_inst/packaging/MacOS/build_macos.py --source_path ../cura_inst --dist_path . --cura_conan_version $CURA_CONAN_VERSION --filename "${{ steps.filename.outputs.INSTALLER_FILENAME }}" --build_dmg --build_pkg --app_name "$CURA_APP_NAME" diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 28790dd05a6..cd5e8438786 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -187,7 +187,7 @@ jobs: f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") for dep_name, dep_info in ConanDependencies.items(): - f.writelines(f"`{dep_name} {dep_info["version"]} {dep_info["revision"]}`\n") + f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - name: Summarize the used Python modules shell: python @@ -207,7 +207,7 @@ jobs: f.write(content) f.writelines("## Python modules:\n") for dep_name, dep_info in ConanDependencies.items(): - f.writelines(f"`{dep_name} {dep_info["version"]}`\n") + f.writelines(f"`{dep_name} {dep_info['version']}`\n") - name: Create PFX certificate from BASE64_PFX_CONTENT secret id: create-pfx From 91be79fbf3621c16c405c01fcb6223e2579a40e4 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 28 Oct 2023 18:05:09 +0200 Subject: [PATCH 090/121] Fix incorrect deps workflow summary Contributes to CURA-10561 --- .github/workflows/linux.yml | 26 ++++---------------------- .github/workflows/macos.yml | 26 ++++---------------------- .github/workflows/windows.yml | 26 ++++---------------------- 3 files changed, 12 insertions(+), 66 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1cabf719bd9..81228e5f2d6 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -196,14 +196,12 @@ jobs: f.write(content) f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - name: Summarize the used Conan dependencies + - name: Summarize the used dependencies shell: python run: | import os - import json - from pathlib import Path - from cura.CuraVersion import ConanInstalls + from cura.CuraVersion import ConanInstalls, PythonInstalls summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" @@ -215,27 +213,11 @@ jobs: f.write(content) f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") - for dep_name, dep_info in ConanDependencies.items(): + for dep_name, dep_info in ConanInstalls.items(): f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - - name: Summarize the used Python modules - shell: python - run: | - import os - import pkg_resources - - from cura.CuraVersion import ConanDependencies - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) f.writelines("## Python modules:\n") - for dep_name, dep_info in ConanDependencies.items(): + for dep_name, dep_info in PythonInstalls.items(): f.writelines(f"`{dep_name} {dep_info['version']}`\n") - name: Create the Linux AppImage (Bash) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 53fb1195206..ef4e7e4a120 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -208,14 +208,12 @@ jobs: f.write(content) f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - name: Summarize the used Conan dependencies + - name: Summarize the used dependencies shell: python run: | import os - import json - from pathlib import Path - from cura.CuraVersion import ConanInstalls + from cura.CuraVersion import ConanInstalls, PythonInstalls summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" @@ -227,27 +225,11 @@ jobs: f.write(content) f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") - for dep_name, dep_info in ConanDependencies.items(): + for dep_name, dep_info in ConanInstalls.items(): f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - - name: Summarize the used Python modules - shell: python - run: | - import os - import pkg_resources - - from cura.CuraVersion import PythonInstalls - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) f.writelines("## Python modules:\n") - for dep_name, dep_info in ConanDependencies.items(): + for dep_name, dep_info in PythonInstalls.items(): f.writelines(f"`{dep_name} {dep_info['version']}`\n") - name: Create the Macos dmg (Bash) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index cd5e8438786..176b4196c0d 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -167,14 +167,12 @@ jobs: f.write(content) f.writelines(f"INSTALLER_FILENAME={installer_filename}\n") - - name: Summarize the used Conan dependencies + - name: Summarize the used dependencies shell: python run: | import os - import json - from pathlib import Path - from cura.CuraVersion import ConanInstalls + from cura.CuraVersion import ConanInstalls, PythonInstalls summary_env = os.environ["GITHUB_STEP_SUMMARY"] content = "" @@ -186,27 +184,11 @@ jobs: f.write(content) f.writelines("# ${{ steps.filename.outputs.INSTALLER_FILENAME }}\n") f.writelines("## Conan packages:\n") - for dep_name, dep_info in ConanDependencies.items(): + for dep_name, dep_info in ConanInstalls.items(): f.writelines(f"`{dep_name} {dep_info['version']} {dep_info['revision']}`\n") - - name: Summarize the used Python modules - shell: python - run: | - import os - import pkg_resources - - from cura.CuraVersion import PythonInstalls - - summary_env = os.environ["GITHUB_STEP_SUMMARY"] - content = "" - if os.path.exists(summary_env): - with open(summary_env, "r") as f: - content = f.read() - - with open(summary_env, "w") as f: - f.write(content) f.writelines("## Python modules:\n") - for dep_name, dep_info in ConanDependencies.items(): + for dep_name, dep_info in PythonInstalls.items(): f.writelines(f"`{dep_name} {dep_info['version']}`\n") - name: Create PFX certificate from BASE64_PFX_CONTENT secret From 4b7cefa891e11df431a2b5076d832b62227941f0 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sat, 28 Oct 2023 18:14:42 +0200 Subject: [PATCH 091/121] No need to build unit tests for installer Contributes to CURA-10561 --- .github/workflows/linux.yml | 2 +- .github/workflows/macos.yml | 2 +- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 81228e5f2d6..1dee7a237f6 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -147,7 +147,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index ef4e7e4a120..3bde4f1b002 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -156,7 +156,7 @@ jobs: run: conan config set storage.download_cache="$HOME/.conan/conan_download_cache" - name: Create the Packages (Bash) - run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING" + run: conan install $CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$ENTERPRISE -o cura:staging=$STAGING -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 176b4196c0d..ad946d9d99f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -122,7 +122,7 @@ jobs: run: conan config set storage.download_cache="C:\Users\runneradmin\.conan\conan_download_cache" - name: Create the Packages (Powershell) - run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING + run: conan install $Env:CURA_CONAN_VERSION ${{ inputs.conan_args }} --build=missing --update -if cura_inst -g VirtualPythonEnv -o cura:enterprise=$Env:ENTERPRISE -o cura:staging=$Env:STAGING -c tools.build:skip_test=True - name: Remove internal packages before uploading run: | From 872ce27d8a48e00ad85a9f7d82c394552ae10a16 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sun, 29 Oct 2023 11:51:56 +0100 Subject: [PATCH 092/121] Give translations their own option Only available on bash/zsh environments Contributes to CURA-10561 - CURA-11117 --- conanfile.py | 44 +++++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/conanfile.py b/conanfile.py index 3104cddcc51..18a3275f201 100644 --- a/conanfile.py +++ b/conanfile.py @@ -34,7 +34,8 @@ class CuraConan(ConanFile): "cloud_api_version": "ANY", "display_name": "ANY", # TODO: should this be an option?? "cura_debug_mode": [True, False], # FIXME: Use profiles - "internal": [True, False] + "internal": [True, False], + "enable_i18n": [True, False], } default_options = { "enterprise": "False", @@ -44,6 +45,7 @@ class CuraConan(ConanFile): "display_name": "UltiMaker Cura", "cura_debug_mode": False, # Not yet implemented "internal": False, + "enable_i18n": False, } def set_version(self): @@ -271,6 +273,10 @@ def export_sources(self): copy(self, "requirements-ultimaker.txt", self.recipe_folder, self.export_sources_folder) copy(self, "cura_app.py", self.recipe_folder, self.export_sources_folder) + def config_options(self): + if self.settings.os == "Windows" and not self.conf.get("tools.microsoft.bash:path", check_type=str): + del self.options.enable_i18n + def configure(self): self.options["pyarcus"].shared = True self.options["pysavitar"].shared = True @@ -307,10 +313,8 @@ def requirements(self): self.requires("fdm_materials/(latest)@ultimaker/testing") def build_requirements(self): - if self.options.devtools: - if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str): - # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True) + if self.options.get_safe("enable_i18n", False): + self.tool_requires("gettext/0.21@ultimaker/testing", force_host_context = True) def layout(self): self.folders.source = "." @@ -377,26 +381,24 @@ def generate(self): icon_path = "'{}'".format(os.path.join(self.source_folder, "packaging", self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") + if self.options.get_safe("enable_i18n", False): # Update the po and pot files - if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type=str): - vb = VirtualBuildEnv(self) - vb.generate() + vb = VirtualBuildEnv(self) + vb.generate() - # # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - cpp_info = self.dependencies["gettext"].cpp_info - pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0]) - pot.generate() + # # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement + cpp_info = self.dependencies["gettext"].cpp_info + pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0]) + pot.generate() def build(self): - if self.options.devtools: - if self.settings.os != "Windows" or self.conf.get("tools.microsoft.bash:path", check_type = str): - # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"): - mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_path)) - mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) - mkdir(self, str(unix_path(self, Path(mo_file).parent))) - cpp_info = self.dependencies["gettext"].cpp_info - self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True) + if self.options.get_safe("enable_i18n", False): + for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"): + mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_path)) + mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) + mkdir(self, str(unix_path(self, Path(mo_file).parent))) + cpp_info = self.dependencies["gettext"].cpp_info + self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True) def deploy(self): copy(self, "*", os.path.join(self.package_folder, self.cpp.package.resdirs[2]), os.path.join(self.install_folder, "packaging"), keep_path = True) From 94eb9e1a21825af84161bb0544aaf772e9cddf48 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sun, 29 Oct 2023 11:52:27 +0100 Subject: [PATCH 093/121] Build dulcificum static on Windows Contributes to CURA-10561 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 18a3275f201..b47c5789d9e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -281,7 +281,7 @@ def configure(self): self.options["pyarcus"].shared = True self.options["pysavitar"].shared = True self.options["pynest2d"].shared = True - self.options["dulcificum"].shared = True + self.options["dulcificum"].shared = self.settings.os != "Windows" self.options["cpython"].shared = True self.options["boost"].header_only = True if self.settings.os == "Linux": From 16249e490ed3c8a2a8227969a7ebc779605c2188 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Sun, 29 Oct 2023 14:25:06 +0100 Subject: [PATCH 094/121] Allow sideloading of resources via env `CURA_DATA_ROOT` and `URANIUM_DATA_ROOT` This allows the conanfile.py to point to `venv/share/cura` This functionality is disabled in sys.frozen Contributes to CURA-10561 --- conanfile.py | 2 ++ cura/CuraApplication.py | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/conanfile.py b/conanfile.py index b47c5789d9e..31b741a9707 100644 --- a/conanfile.py +++ b/conanfile.py @@ -67,6 +67,8 @@ def _cura_run_env(self): self._cura_env = Environment() self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml"))) self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins"))) + if not self.in_local_cache: + self._cura_env.define( "CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) if self.settings.os == "Linux": self._cura_env.define("QT_QPA_FONTDIR", "/usr/share/fonts") diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index b51fbd9d821..722a728863f 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -6,6 +6,7 @@ import tempfile import time import platform +from pathlib import Path from typing import cast, TYPE_CHECKING, Optional, Callable, List, Any, Dict import numpy @@ -366,6 +367,10 @@ def __addExpectedResourceDirsAndSearchPaths(self): Resources.addSecureSearchPath(os.path.join(self._app_install_dir, "share", "cura", "resources")) if not hasattr(sys, "frozen"): + cura_data_root = os.environ.get('CURA_DATA_ROOT', None) + if cura_data_root: + Resources.addSearchPath(str(Path(cura_data_root).joinpath("resources"))) + Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "resources")) # local Conan cache From a3eed42a384446ddc086ce856474140efd0c8484 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 11:17:32 +0100 Subject: [PATCH 095/121] Add `prime_tower_raft_base_line_spacing` to setting visibility Also fix setting name `prime_tower_base_curve_magnitude` CURA-10561 --- resources/setting_visibility/expert.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index d2e5319c87a..2f2dd7671d0 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -360,7 +360,8 @@ prime_tower_wipe_enabled prime_tower_brim_enable prime_tower_base_size prime_tower_base_height -prime_tower_base_curvature +prime_tower_base_curve_magnitude +prime_tower_raft_base_line_spacing ooze_shield_enabled ooze_shield_angle ooze_shield_dist From 2660933d6ea9c29b9d76f96d2c07f335481dd546 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 13:37:50 +0100 Subject: [PATCH 096/121] Add mimetype for .makerbot files CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 04dcec34d42..ecb00066905 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -12,6 +12,7 @@ from UM.Logger import Logger from UM.Math.AxisAlignedBox import AxisAlignedBox from UM.Mesh.MeshWriter import MeshWriter +from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.PluginRegistry import PluginRegistry from UM.Scene.SceneNode import SceneNode from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator @@ -31,6 +32,13 @@ class MakerbotWriter(MeshWriter): def __init__(self) -> None: super().__init__(add_to_recent_files=False) Logger.info(f"Using PyDulcificum: {du.__version__}") + MimeTypeDatabase.addMimeType( + MimeType( + name="application/x-makerbot", + comment="Makerbot Toolpath Package", + suffixes=["makerbot"] + ) + ) _PNG_FORMATS = [ {"prefix": "isometric_thumbnail", "width": 120, "height": 120}, From 540c8399e7641bf310b319efc17f1cdf4028a1bd Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 12:47:01 +0100 Subject: [PATCH 097/121] Replace altool for notary tool CURA-9929 --- packaging/MacOS/build_macos.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/packaging/MacOS/build_macos.py b/packaging/MacOS/build_macos.py index eae9afceff7..fc78abf76f2 100644 --- a/packaging/MacOS/build_macos.py +++ b/packaging/MacOS/build_macos.py @@ -87,15 +87,16 @@ def notarize_file(dist_path: str, filename: str) -> None: """ Notarize a file. This takes 5+ minutes, there is indication that this step is successful.""" notarize_user = os.environ.get("MAC_NOTARIZE_USER") notarize_password = os.environ.get("MAC_NOTARIZE_PASS") - altool_executable = os.environ.get("ALTOOL_EXECUTABLE", "altool") + notarize_team = os.environ.get("MACOS_CERT_USER") + notary_executable = os.environ.get("NOTARY_TOOL_EXECUTABLE", "notarytool") notarize_arguments = [ - "xcrun", altool_executable, - "--notarize-app", - "--primary-bundle-id", ULTIMAKER_CURA_DOMAIN, - "--username", notarize_user, + "xcrun", notary_executable, + "submit", + "--apple-id", notarize_user, "--password", notarize_password, - "--file", Path(dist_path, filename) + "--team-id", notarize_team, + Path(dist_path, filename) ] subprocess.run(notarize_arguments) From 71ada85966ae53d776e7fa36ab78692c18b5ee70 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 15:41:54 +0100 Subject: [PATCH 098/121] Use camercase for `isometricSnapshot` def CURA-10561 --- cura/Snapshot.py | 2 +- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 4fd8f57b941..0aeacbc1bb4 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -37,7 +37,7 @@ def getImageBoundaries(image: QImage): return min_x, max_x, min_y, max_y @staticmethod - def isometric_snapshot(width: int = 300, height: int = 300) -> Optional[QImage]: + def isometricSnapshot(width: int = 300, height: int = 300) -> Optional[QImage]: """Create an isometric snapshot of the scene.""" root = Application.getInstance().getController().getScene().getRoot() diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index ecb00066905..e0b5b0eb2be 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -86,7 +86,7 @@ def _createThumbnail(width: int, height: int) -> Optional[QBuffer]: Logger.warning("Can't create snapshot when renderer not initialized.") return try: - snapshot = Snapshot.isometric_snapshot(width, height) + snapshot = Snapshot.isometricSnapshot(width, height) except: Logger.logException("w", "Failed to create snapshot image") return From 7e91750f584e4fa96089f9425991c91bad9754c1 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 15:43:02 +0100 Subject: [PATCH 099/121] Use camercase for `nodeBounds` def CURA-10561 --- cura/Snapshot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 0aeacbc1bb4..138777d812c 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -45,7 +45,7 @@ def isometricSnapshot(width: int = 300, height: int = 300) -> Optional[QImage]: # the direction the camera is looking at to create the isometric view iso_view_dir = Vector(-1, -1, -1).normalized() - bounds = Snapshot.node_bounds(root) + bounds = Snapshot.nodeBounds(root) if bounds is None: Logger.log("w", "There appears to be nothing to render") return None @@ -104,7 +104,7 @@ def isometricSnapshot(width: int = 300, height: int = 300) -> Optional[QImage]: return render_pass.getOutput() @staticmethod - def node_bounds(root_node: SceneNode) -> Optional[AxisAlignedBox]: + def nodeBounds(root_node: SceneNode) -> Optional[AxisAlignedBox]: axis_aligned_box = None for node in DepthFirstIterator(root_node): if not getattr(node, "_outside_buildarea", False): @@ -140,7 +140,7 @@ def snapshot(width = 300, height = 300): camera = Camera("snapshot", root) # determine zoom and look at - bbox = Snapshot.node_bounds(root) + bbox = Snapshot.nodeBounds(root) # If there is no bounding box, it means that there is no model in the buildplate if bbox is None: Logger.log("w", "Unable to create snapshot as we seem to have an empty buildplate") From c68a4b1bb75c83963785cdb388a71c8bb00271ea Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 15:44:42 +0100 Subject: [PATCH 100/121] Write correct key for `pyDulcificum_version` metadata CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index e0b5b0eb2be..666d77a5375 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -254,7 +254,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["dulcificum_commit_hash"] = dulcificum_info["revision"] meta["makerbot_writer_version"] = self.getVersion() - meta["pyDulcificum"] = du.__version__ + meta["pyDulcificum_version"] = du.__version__ # Add engine plugin information to the metadata for name, package_info in ConanInstalls.items(): From 4f649e57d13b41c7e8565beeb35987568bcd666e Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 16:10:13 +0100 Subject: [PATCH 101/121] Write `meterToMillimeter` as camelcase CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 666d77a5375..2ed8bb3dd9b 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -202,7 +202,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta["commanded_duration_s"] = int(print_information.currentPrintTime) meta["duration_s"] = int(print_information.currentPrintTime) - material_lengths = list(map(meter_to_millimeter, print_information.materialLengths)) + material_lengths = list(map(meterToMillimeter, print_information.materialLengths)) meta["extrusion_distance_mm"] = material_lengths[0] meta["extrusion_distances_mm"] = material_lengths @@ -273,6 +273,6 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: return meta -def meter_to_millimeter(value: float) -> float: +def meterToMillimeter(value: float) -> float: """Converts a value in meters to millimeters.""" return value * 1000.0 From f8bb30b0252809c4a2032dfad2cf5ea0960e9e2f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 16:31:32 +0100 Subject: [PATCH 102/121] Use better variable naming CURA-10561 --- cura/Snapshot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cura/Snapshot.py b/cura/Snapshot.py index 138777d812c..e493f0e79c5 100644 --- a/cura/Snapshot.py +++ b/cura/Snapshot.py @@ -53,12 +53,12 @@ def isometricSnapshot(width: int = 300, height: int = 300) -> Optional[QImage]: camera = Camera("snapshot") # find local x and y directional vectors of the camera - s = iso_view_dir.cross(Vector.Unit_Y).normalized() - u = s.cross(iso_view_dir).normalized() + tangent_space_x_direction = iso_view_dir.cross(Vector.Unit_Y).normalized() + tangent_space_y_direction = tangent_space_x_direction.cross(iso_view_dir).normalized() # find extreme screen space coords of the scene - x_points = [p.dot(s) for p in bounds.points] - y_points = [p.dot(u) for p in bounds.points] + x_points = [p.dot(tangent_space_x_direction) for p in bounds.points] + y_points = [p.dot(tangent_space_y_direction) for p in bounds.points] min_x = min(x_points) max_x = max(x_points) min_y = min(y_points) From 0c8496b7ab7008a0a4688263f760f4606db3f941 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 17:03:59 +0100 Subject: [PATCH 103/121] Set write flag for thumbnail CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 2ed8bb3dd9b..aac1b3495c8 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -92,7 +92,7 @@ def _createThumbnail(width: int, height: int) -> Optional[QBuffer]: return thumbnail_buffer = QBuffer() - thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) + thumbnail_buffer.open(QBuffer.OpenModeFlag.WriteOnly) snapshot.save(thumbnail_buffer, "PNG") From 20719ea5b590963f3a68c7ae3d9e5061b56b2ce0 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 30 Oct 2023 17:55:06 +0100 Subject: [PATCH 104/121] Use definition name rather then display name of the machine CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index aac1b3495c8..f90cef16398 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -169,7 +169,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Dict[str, any]: meta = dict() - meta["bot_type"] = MakerbotWriter._PRINT_NAME_MAP.get((name := global_stack.name), name) + meta["bot_type"] = MakerbotWriter._PRINT_NAME_MAP.get((name := global_stack.definition.name), name) bounds: Optional[AxisAlignedBox] = None for node in nodes: From 9e0def310cda0c33e05661f93a415edd79938e23 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 10:20:44 +0100 Subject: [PATCH 105/121] Update Material GUID LUT Contributes to CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 55 +++++++++++++++++------- 1 file changed, 40 insertions(+), 15 deletions(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index f90cef16398..7009ad650cc 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -62,21 +62,46 @@ def __init__(self) -> None: "1A": "mk14", "2A": "mk14_s", } - _MATERIAL_MAP = { - '2780b345-577b-4a24-a2c5-12e6aad3e690': 'abs', - '88c8919c-6a09-471a-b7b6-e801263d862d': 'abs-wss1', - '416eead4-0d8e-4f0b-8bfc-a91a519befa5': 'asa', - '85bbae0e-938d-46fb-989f-c9b3689dc4f0': 'nylon-cf', - '283d439a-3490-4481-920c-c51d8cdecf9c': 'nylon', - '62414577-94d1-490d-b1e4-7ef3ec40db02': 'pc', - '69386c85-5b6c-421a-bec5-aeb1fb33f060': 'pet', # PETG - '0ff92885-617b-4144-a03c-9989872454bc': 'pla', - 'a4255da2-cb2a-4042-be49-4a83957a2f9a': 'pva', - 'a140ef8f-4f26-4e73-abe0-cfc29d6d1024': 'wss1', - '77873465-83a9-4283-bc44-4e542b8eb3eb': 'sr30', - '96fca5d9-0371-4516-9e96-8e8182677f3c': 'im-pla', - '19baa6a9-94ff-478b-b4a1-8157b74358d2': 'tpu', - } + _MATERIAL_MAP = {"2780b345-577b-4a24-a2c5-12e6aad3e690": "abs", + "88c8919c-6a09-471a-b7b6-e801263d862d": "abs-wss1", + "416eead4-0d8e-4f0b-8bfc-a91a519befa5": "asa", + "85bbae0e-938d-46fb-989f-c9b3689dc4f0": "nylon-cf", + "283d439a-3490-4481-920c-c51d8cdecf9c": "nylon", + "62414577-94d1-490d-b1e4-7ef3ec40db02": "pc", + "69386c85-5b6c-421a-bec5-aeb1fb33f060": "petg", + "0ff92885-617b-4144-a03c-9989872454bc": "pla", + "a4255da2-cb2a-4042-be49-4a83957a2f9a": "pva", + "a140ef8f-4f26-4e73-abe0-cfc29d6d1024": "wss1", + "77873465-83a9-4283-bc44-4e542b8eb3eb": "sr30", + "96fca5d9-0371-4516-9e96-8e8182677f3c": "im-pla", + "9f52c514-bb53-46a6-8c0c-d507cd6ee742": "abs", + "0f9a2a91-f9d6-4b6b-bd9b-a120a29391be": "abs", + "d3e972f2-68c0-4d2f-8cfd-91028dfc3381": "abs", + "cb76bd6e-91fd-480c-a191-12301712ec77": "abs-wss1", + "a017777e-3f37-4d89-a96c-dc71219aac77": "abs-wss1", + "4d96000d-66de-4d54-a580-91827dcfd28f": "abs-wss1", + "0ecb0e1a-6a66-49fb-b9ea-61a8924e0cf5": "asa", + "efebc2ea-2381-4937-926f-e824524524a5": "asa", + "b0199512-5714-4951-af85-be19693430f8": "asa", + "b9f55a0a-a2b6-4b8d-8d48-07802c575bd1": "pla", + "c439d884-9cdc-4296-a12c-1bacae01003f": "pla", + "16a723e3-44df-49f4-82ec-2a1173c1e7d9": "pla", + "74d0f5c2-fdfd-4c56-baf1-ff5fa92d177e": "pla", + "64dcb783-470d-4400-91b1-7001652f20da": "pla", + "3a1b479b-899c-46eb-a2ea-67050d1a4937": "pla", + "4708ac49-5dde-4cc2-8c0a-87425a92c2b3": "pla", + "4b560eda-1719-407f-b085-1c2c1fc8ffc1": "pla", + "e10a287d-0067-4a58-9083-b7054f479991": "im-pla", + "01a6b5b0-fab1-420c-a5d9-31713cbeb404": "im-pla", + "f65df4ad-a027-4a48-a51d-975cc8b87041": "im-pla", + "f48739f8-6d96-4a3d-9a2e-8505a47e2e35": "im-pla", + "5c7d7672-e885-4452-9a78-8ba90ec79937": "petg", + "91e05a6e-2f5b-4964-b973-d83b5afe6db4": "petg", + "bdc7dd03-bf38-48ee-aeca-c3e11cee799e": "petg", + "54f66c89-998d-4070-aa60-1cb0fd887518": "nylon", + "002c84b3-84ac-4b5a-b57d-fe1f555a6351": "pva", + "e4da5fcb-f62d-48a2-aaef-0b645aa6973b": "wss1", + "77f06146-6569-437d-8380-9edb0d635a32": "sr30"} # must be called from the main thread because of OpenGL @staticmethod From 625fb06267401b73e0a3a67bef0f9fa66a6066b9 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 31 Oct 2023 11:30:23 +0100 Subject: [PATCH 106/121] Add makerbotwriter to cura.json CURA-10561 --- resources/bundled_packages/cura.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index b9667eea13a..12ab219f308 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -305,6 +305,23 @@ } } }, + "MakerbotWriter": { + "package_info": { + "package_id": "MakerbotWriter", + "package_type": "plugin", + "display_name": "Makerbot Printfile Writer", + "description": "Provides support for writing MakerBot Format Packages.", + "package_version": "1.0.1", + "sdk_version": "8.5.0", + "website": "https://ultimaker.com", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "plugins@ultimaker.com", + "website": "https://ultimaker.com" + } + } + }, "ModelChecker": { "package_info": { "package_id": "ModelChecker", From 6a07c346d6a6d6299756e36a7c9b3086ed60944e Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 31 Oct 2023 11:31:10 +0100 Subject: [PATCH 107/121] Update comment CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 7009ad650cc..122f4b8e915 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -129,7 +129,7 @@ def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter. self.setInformation(catalog.i18nc("@error:not supported", "MakerbotWriter does not support text mode.")) return False - # The GCodeWriter plugin is bundled, so it must at least exist. (What happens if people disable that plugin?) + # The GCodeWriter plugin is always available since it is in the "required" list of plugins. gcode_writer = PluginRegistry.getInstance().getPluginObject("GCodeWriter") if gcode_writer is None: From f9517ada4421b230c89bde4c2c64376993690c2f Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 15:33:05 +0100 Subject: [PATCH 108/121] Add ABS-CF to material map Contributes to CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 122f4b8e915..dde1541cfe4 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -77,6 +77,7 @@ def __init__(self) -> None: "9f52c514-bb53-46a6-8c0c-d507cd6ee742": "abs", "0f9a2a91-f9d6-4b6b-bd9b-a120a29391be": "abs", "d3e972f2-68c0-4d2f-8cfd-91028dfc3381": "abs", + "495a0ce5-9daf-4a16-b7b2-06856d82394d": "abs-cf", "cb76bd6e-91fd-480c-a191-12301712ec77": "abs-wss1", "a017777e-3f37-4d89-a96c-dc71219aac77": "abs-wss1", "4d96000d-66de-4d54-a580-91827dcfd28f": "abs-wss1", From 4c575908fc7ec5c7e5004c1467fa4a1f09a9b3d9 Mon Sep 17 00:00:00 2001 From: Paul Kuiper <46715907+pkuiper-ultimaker@users.noreply.github.com> Date: Tue, 31 Oct 2023 17:10:33 +0100 Subject: [PATCH 109/121] - Method X and Method XL profiles for ABS-R, ABS-CF and RapidRinse --- .../ultimaker_method_base.def.json | 693 ++++++++++++++++++ .../definitions/ultimaker_methodx.def.json | 88 +++ .../definitions/ultimaker_methodxl.def.json | 55 ++ .../ultimaker_methodx_extruder_left.def.json | 26 + .../ultimaker_methodx_extruder_right.def.json | 26 + .../ultimaker_methodxl_extruder_left.def.json | 26 + ...ultimaker_methodxl_extruder_right.def.json | 26 + ...thodx_1c_um-abscf-175_0.2mm_solid.inst.cfg | 16 + ...thodx_1xa_um-absr-175_0.2mm_solid.inst.cfg | 16 + ...hodx_lab_um-abscf-175_0.2mm_solid.inst.cfg | 16 + ...thodx_lab_um-absr-175_0.2mm_solid.inst.cfg | 16 + ...hodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg | 16 + ...hodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg | 16 + ...odxl_lab_um-abscf-175_0.2mm_solid.inst.cfg | 16 + ...hodxl_lab_um-absr-175_0.2mm_solid.inst.cfg | 16 + .../um_methodx_1c_um-abscf-175_0.2mm.inst.cfg | 42 ++ .../um_methodx_1xa_um-absr-175_0.2mm.inst.cfg | 42 ++ ...thodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 34 + .../um_methodx_global_Draft_Quality.inst.cfg | 14 + ...um_methodx_lab_um-abscf-175_0.2mm.inst.cfg | 42 ++ .../um_methodx_lab_um-absr-175_0.2mm.inst.cfg | 42 ++ ...um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg | 44 ++ ...um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg | 44 ++ ...hodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg | 34 + .../um_methodxl_global_Draft_Quality.inst.cfg | 14 + ...m_methodxl_lab_um-abscf-175_0.2mm.inst.cfg | 44 ++ ...um_methodxl_lab_um-absr-175_0.2mm.inst.cfg | 44 ++ .../variants/ultimaker_methodx_1C.inst.cfg | 13 + .../variants/ultimaker_methodx_1XA.inst.cfg | 13 + .../variants/ultimaker_methodx_2XA.inst.cfg | 13 + .../variants/ultimaker_methodx_LAB.inst.cfg | 13 + .../variants/ultimaker_methodxl_1C.inst.cfg | 13 + .../variants/ultimaker_methodxl_1XA.inst.cfg | 13 + .../variants/ultimaker_methodxl_2XA.inst.cfg | 13 + .../variants/ultimaker_methodxl_LAB.inst.cfg | 13 + 35 files changed, 1612 insertions(+) create mode 100644 resources/definitions/ultimaker_method_base.def.json create mode 100644 resources/definitions/ultimaker_methodx.def.json create mode 100644 resources/definitions/ultimaker_methodxl.def.json create mode 100644 resources/extruders/ultimaker_methodx_extruder_left.def.json create mode 100644 resources/extruders/ultimaker_methodx_extruder_right.def.json create mode 100644 resources/extruders/ultimaker_methodxl_extruder_left.def.json create mode 100644 resources/extruders/ultimaker_methodxl_extruder_right.def.json create mode 100644 resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm_solid.inst.cfg create mode 100644 resources/intent/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm_solid.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm.inst.cfg create mode 100644 resources/quality/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm.inst.cfg create mode 100644 resources/variants/ultimaker_methodx_1C.inst.cfg create mode 100644 resources/variants/ultimaker_methodx_1XA.inst.cfg create mode 100644 resources/variants/ultimaker_methodx_2XA.inst.cfg create mode 100644 resources/variants/ultimaker_methodx_LAB.inst.cfg create mode 100644 resources/variants/ultimaker_methodxl_1C.inst.cfg create mode 100644 resources/variants/ultimaker_methodxl_1XA.inst.cfg create mode 100644 resources/variants/ultimaker_methodxl_2XA.inst.cfg create mode 100644 resources/variants/ultimaker_methodxl_LAB.inst.cfg diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json new file mode 100644 index 00000000000..adb55bf2d30 --- /dev/null +++ b/resources/definitions/ultimaker_method_base.def.json @@ -0,0 +1,693 @@ +{ + "version": 2, + "inherits": "ultimaker", + "metadata": { + "author": "Ultimaker", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "generic_bvoh_175", + "generic_cpe_175", + "generic_hips_175", + "generic_pc_175", + "ultimaker_rapidrinse_175", + "ultimaker_sr30_175", + "generic_tpu_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_" + ], + "file_formats": "application/x-makerbot", + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { + "0": "ultimaker_method_extruder_left", + "1": "ultimaker_method_extruder_right" + }, + "manufacturer": "Ultimaker B.V.", + "nozzle_offsetting_for_disallowed_areas": false, + "platform": "ultimaker_method_platform.stl", + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_quality_type": "fast", + "preferred_variant_name": "1A", + "preferred_material": "generic_pla_175", + "supports_material_export": true, + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "visible": false, + "weight": -1 + }, + "name": "Makerbot Method Base Profile", + "overrides": { + "adhesion_extruder_nr": { + "value": 0 + }, + "adhesion_type": { + "value": "'raft'" + }, + "bridge_enable_more_layers": { + "value": true + }, + "bridge_fan_speed": { + "value": "cool_fan_speed_max" + }, + "bridge_fan_speed_2": { + "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" + }, + "bridge_fan_speed_3": { + "value": "cool_fan_speed_min" + }, + "bridge_settings_enabled": { + "value": true + }, + "bridge_skin_density": { + "value": 100 + }, + "bridge_skin_density_2": { + "value": 100 + }, + "bridge_skin_density_3": { + "value": 100 + }, + "bridge_skin_material_flow": { + "value": "material_flow" + }, + "bridge_skin_material_flow_2": { + "value": "material_flow" + }, + "bridge_skin_material_flow_3": { + "value": "material_flow" + }, + "bridge_skin_speed": { + "value": "speed_topbottom" + }, + "bridge_skin_speed_2": { + "value": "speed_topbottom" + }, + "bridge_skin_speed_3": { + "value": "speed_topbottom" + }, + "bridge_sparse_infill_max_density": { + "value": 50 + }, + "bridge_wall_coast": { + "value": 0 + }, + "bridge_wall_material_flow": { + "value": "material_flow" + }, + "bridge_wall_speed": { + "value": "speed_wall" + }, + "brim_width": { + "value": 5 + }, + "extruder_prime_pos_abs": { + "default_value": true + }, + "gradual_support_infill_steps": { + "value": 0 + }, + "infill_before_walls": { + "value": false + }, + "inset_direction": { + "value": "'inside_out'" + }, + "infill_enable_travel_optimization": { + "value": true + }, + "infill_material_flow": { + "value": "material_flow" + }, + "infill_overlap": { + "value": 0 + }, + "infill_pattern": { + "value": "'zigzag' if infill_sparse_density > 80 else 'lines'" + }, + "infill_wipe_dist": { + "value": 0 + }, + "layer_start_x": { + "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" + }, + "layer_start_y": { + "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" + }, + "limit_support_retractions": { + "value": false + }, + "machine_acceleration": { + "default_value": 3000 + }, + "machine_center_is_zero": { + "value": true + }, + "machine_depth": { + "default_value": 190 + }, + "machine_end_gcode": { + "default_value": "" + }, + "machine_extruder_count": { + "default_value": 2 + }, + "machine_gcode_flavor": { + "default_value": "Griffin" + }, + "machine_heated_bed": { + "default_value": false + }, + "machine_heated_build_volume": { + "default_value": true + }, + "machine_height": { + "default_value": 196 + }, + "machine_min_cool_heat_time_window": { + "value": 15 + }, + "machine_name": { + "default_value": "Makerbot Method" + }, + "machine_start_gcode": { + "default_value": "" + }, + "machine_width": { + "default_value": 150 + }, + "material_initial_print_temperature": { + "value": "material_print_temperature-10" + }, + "material_final_print_temperature": { + "value": "material_print_temperature-10" + }, + "machine_nozzle_heat_up_speed": { + "value": 3.5 + }, + "machine_nozzle_cool_down_speed": { + "value": 0.8 + }, + "material_flow": { + "value": 97 + }, + "skin_material_flow": { + "value": "0.95*material_flow" + }, + "material_print_temperature": { + "value": "default_material_print_temperature" + }, + "material_bed_temperature": { + "enabled": "machine_heated_bed" + }, + "material_bed_temperature_layer_0": { + "enabled": "machine_heated_bed" + }, + "material_shrinkage_percentage": { + "enabled": true + }, + "material_shrinkage_percentage_z": { + "resolve": "0.9852*sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" + }, + "min_wall_line_width": { + "value": 0.4 + }, + "minimum_support_area": { + "value": 0.1 + }, + "multiple_mesh_overlap": { + "value": 0 + }, + "optimize_wall_printing_order": { + "value": true + }, + "prime_blob_enable": { + "enabled": false + }, + "prime_tower_enable": { + "value": false + }, + "prime_tower_flow": { + "value": "material_flow" + }, + "prime_tower_line_width": { + "value": 1 + }, + "prime_tower_raft_base_line_spacing": { + "value": "raft_base_line_width" + }, + "prime_tower_wipe_enabled": { + "value": true + }, + "prime_tower_base_size": { + "value": 6 + }, + "prime_tower_base_height": { + "value": 6 + }, + "prime_tower_base_curve_magnitude": { + "value": 2 + }, + "raft_base_line_spacing": { + "value": "2*raft_base_line_width" + }, + "raft_base_line_width": { + "value": 1.4 + }, + "raft_base_speed": { + "value": 5 + }, + "raft_base_thickness": { + "value": 0.8 + }, + "raft_interface_layers": { + "value": 2 + }, + "raft_interface_line_width": { + "value": 1.2 + }, + "raft_interface_thickness": { + "value": 0.3 + }, + "raft_margin": { + "value": 3 + }, + "raft_surface_extruder_nr": { + "value": "int(anyExtruderWithMaterial('material_is_support_material'))" + }, + "raft_interface_extruder_nr": { + "value": "raft_surface_extruder_nr" + }, + "retraction_amount": { + "value": 0.75 + }, + "retraction_combing": { + "value": "'off'" + }, + "retraction_combing_max_distance": { + "value": "speed_travel / 10" + }, + "retraction_count_max": { + "value": 100 + }, + "retraction_extrusion_window": { + "value": 0 + }, + "retraction_hop": { + "value": 0.4 + }, + "retraction_hop_enabled": { + "value": true + }, + "retraction_hop_only_when_collides": { + "value": false + }, + "retraction_min_travel": { + "value": "line_width * 4" + }, + "retraction_prime_speed": { + "value": "retraction_speed" + }, + "retraction_speed": { + "value": 5 + }, + "roofing_layer_count": { + "value": 2 + }, + "roofing_material_flow": { + "value": "material_flow" + }, + "roofing_monotonic": { + "value": true + }, + "skin_monotonic": { + "value": true + }, + "skin_outline_count": { + "value": 0 + }, + "skin_overlap": { + "value": 0 + }, + "skin_preshrink": { + "value": 0 + }, + "skirt_brim_material_flow": { + "value": "material_flow" + }, + "skirt_brim_minimal_length": { + "value": 500 + }, + "speed_equalize_flow_width_factor": { + "value": 0 + }, + "speed_prime_tower": { + "value": "speed_topbottom" + }, + "speed_print": { + "value": 50 + }, + "speed_roofing": { + "value": "speed_wall_0" + }, + "speed_support": { + "value": "speed_wall" + }, + "speed_support_interface": { + "value": "speed_topbottom" + }, + "speed_topbottom": { + "value": "speed_wall" + }, + "speed_travel": { + "value": 250 + }, + "speed_wall": { + "value": "speed_print * 40/50" + }, + "speed_wall_0": { + "value": "speed_wall * 30/40" + }, + "speed_wall_x": { + "value": "speed_wall" + }, + "support_angle": { + "value": 40 + }, + "support_bottom_distance": { + "value": "support_z_distance / 2" + }, + "support_bottom_material_flow": { + "value": "material_flow" + }, + "support_brim_enable": { + "value": false + }, + "support_conical_min_width": { + "value": 10 + }, + "support_enable": { + "value": true + }, + "support_extruder_nr": { + "value": "int(anyExtruderWithMaterial('material_is_support_material'))" + }, + "support_fan_enable": { + "value": false + }, + "support_infill_rate": { + "value": 20.0 + }, + "support_interface_enable": { + "value": true + }, + "support_interface_material_flow": { + "value": "material_flow" + }, + "support_interface_offset": { + "value": 0 + }, + "support_interface_pattern": { + "value": "'lines'" + }, + "support_interface_wall_count": { + "value": 2 + }, + "support_material_flow": { + "value": "material_flow" + }, + "support_pattern": { + "value": "'lines'" + }, + "support_roof_material_flow": { + "value": "material_flow" + }, + "support_supported_skin_fan_speed": { + "value": "cool_fan_speed_max" + }, + "support_top_distance": { + "value": "support_z_distance" + }, + "support_wall_count": { + "value": "1 if support_conical_enabled or support_structure == 'tree' else 0" + }, + "support_xy_distance": { + "value": 0.2 + }, + "support_z_distance": { + "value": 0 + }, + "switch_extruder_retraction_amount": { + "value": 0.5 + }, + "switch_extruder_retraction_speeds": { + "value": "retraction_speed" + }, + "top_bottom_thickness": { + "value": "5*layer_height" + }, + "travel_avoid_distance": { + "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" + }, + "travel_avoid_supports": { + "value": true + }, + "wall_0_inset": { + "value": 0 + }, + "wall_0_material_flow": { + "value": "material_flow" + }, + "wall_0_wipe_dist": { + "value": 0 + }, + "wall_material_flow": { + "value": "material_flow" + }, + "wall_x_material_flow": { + "value": "material_flow" + }, + "xy_offset": { + "value": 0 + }, + "xy_offset_layer_0": { + "value": "xy_offset" + }, + "zig_zaggify_infill": { + "value": true + }, + "z_seam_corner": { + "value": "'z_seam_corner_none'" + }, + "z_seam_position": { + "value": "'backright'" + }, + "z_seam_type": { + "value": "'sharpest_corner'" + }, + "acceleration_enabled": { + "value": true, + "enabled": false + }, + "acceleration_travel_enabled": { + "value": true, + "enabled": false + }, + "acceleration_print": { + "value": 300, + "enabled": false + }, + "acceleration_infill": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_wall": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_wall_0": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_wall_x": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_roofing": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_topbottom": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_support": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_support_infill": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_support_interface": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_support_roof": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_support_bottom": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_prime_tower": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_travel": { + "value": 5000, + "enabled": false + }, + "acceleration_travel_layer_0": { + "value": "acceleration_travel", + "enabled": false + }, + "acceleration_layer_0": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_print_layer_0": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_wall_0_roofing": { + "value": "acceleration_print", + "enabled": false + }, + "acceleration_wall_x_roofing": { + "value": "acceleration_print", + "enabled": false + }, + "jerk_enabled": { + "value": true, + "enabled": false + }, + "jerk_travel_enabled": { + "value": true, + "enabled": false + }, + "jerk_print": { + "value": 12.5, + "enabled": false + }, + "jerk_infill": { + "value": "jerk_print", + "enabled": false + }, + "jerk_wall": { + "value": "jerk_print", + "enabled": false + }, + "jerk_wall_0": { + "value": "jerk_print", + "enabled": false + }, + "jerk_wall_x": { + "value": "jerk_print", + "enabled": false + }, + "jerk_roofing": { + "value": "jerk_print", + "enabled": false + }, + "jerk_topbottom": { + "value": "jerk_print", + "enabled": false + }, + "jerk_support": { + "value": "jerk_print", + "enabled": false + }, + "jerk_support_infill": { + "value": "jerk_print", + "enabled": false + }, + "jerk_support_interface": { + "value": "jerk_print", + "enabled": false + }, + "jerk_support_roof": { + "value": "jerk_print", + "enabled": false + }, + "jerk_support_bottom": { + "value": "jerk_print", + "enabled": false + }, + "jerk_prime_tower": { + "value": "jerk_print", + "enabled": false + }, + "jerk_travel": { + "value": 12.5, + "enabled": false + }, + "jerk_travel_layer_0": { + "value": "jerk_travel", + "enabled": false + }, + "jerk_layer_0": { + "value": "jerk_print", + "enabled": false + }, + "jerk_print_layer_0": { + "value": "jerk_print", + "enabled": false + }, + "jerk_wall_0_roofing": { + "value": "jerk_print", + "enabled": false + }, + "jerk_wall_x_roofing": { + "value": "jerk_print", + "enabled": false + } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json new file mode 100644 index 00000000000..5d72311a257 --- /dev/null +++ b/resources/definitions/ultimaker_methodx.def.json @@ -0,0 +1,88 @@ +{ + "version": 2, + "name": "Makerbot Method X", + "inherits": "ultimaker_method_base", + "metadata": { + "visible": true, + "author": "Ultimaker", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "generic_asa_175", + "generic_abs_175", + "generic_bvoh_175", + "generic_petg_175", + "generic_pla_175", + "generic_tough_pla_175", + "generic_pva_175", + "generic_cffpa_175", + "generic_cpe_175", + "generic_nylon_175", + "generic_hips_175", + "generic_pc_175", + "ultimaker_sr30_175", + "generic_tpu_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_" + ], + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_platform.stl", + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_methodx_extruder_left", + "1": "ultimaker_methodx_extruder_right" + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_quality_type": "draft", + "preferred_variant_name": "1XA", + "preferred_material": "ultimaker_absr_175", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "variant_definition": "ultimaker_methodx", + "weight": -1 + }, + "overrides": { + "machine_name": { + "default_value": "Makerbot Method X" + } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json new file mode 100644 index 00000000000..2bde7a204b7 --- /dev/null +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -0,0 +1,55 @@ +{ + "version": 2, + "name": "Makerbot Method XL", + "inherits": "ultimaker_methodx", + "metadata": { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_xl_platform.stl", + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_methodxl_extruder_left", + "1": "ultimaker_methodxl_extruder_right" + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_quality_type": "draft", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": { + "machine_depth": { + "default_value": 305 + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_height": { + "default_value": 317 + }, + "machine_width": { + "default_value": 305 + }, + "machine_name": { + "default_value": "Makerbot Method XL" + }, + "material_shrinkage_percentage_z": { + "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" + }, + "speed_travel": { + "value": 500 + } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json new file mode 100644 index 00000000000..3f08402eea9 --- /dev/null +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "ultimaker_methodx", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_extruder_start_code": { + "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" + }, + "machine_extruder_end_code": { + "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" + } + } +} diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json new file mode 100644 index 00000000000..e2976ea788b --- /dev/null +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "ultimaker_methodx", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_extruder_start_code": { + "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" + }, + "machine_extruder_end_code": { + "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" + } + } +} diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json new file mode 100644 index 00000000000..925e41e741f --- /dev/null +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "ultimaker_methodxl", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_extruder_start_code": { + "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" + }, + "machine_extruder_end_code": { + "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" + } + } +} diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json new file mode 100644 index 00000000000..9f7a5992860 --- /dev/null +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -0,0 +1,26 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "ultimaker_methodxl", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_extruder_start_code": { + "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" + }, + "machine_extruder_end_code": { + "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" + } + } +} diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..509347edd4d --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..a14203b9c4e --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1XA + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..45c6ddfa53c --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = Lab + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..30353ab97e9 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = intent +variant = Lab + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..36c71e8fde0 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1C + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..855cf57e222 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = intent +variant = 1XA + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..b277fe82c6a --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = intent +variant = Lab + +[values] +infill_sparse_density = 100 + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm_solid.inst.cfg new file mode 100644 index 00000000000..0acc11121c5 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = intent +variant = Lab + +[values] +infill_sparse_density = 100 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..b41dad63115 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = False +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..8e0a4cdddb1 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = False +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..d52463de8e7 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_rapidrinse_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +raft_airgap = 0.0 +retract_at_layer_change = True +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg new file mode 100644 index 00000000000..5cf852fee24 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Fast +definition = ultimaker_methodx + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 ## in reality this is 0.203, compensate this in the z scaling factor of the extruder diff --git a/resources/quality/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..62acfc95bf4 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_lab_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = Lab +weight = -2 + +[values] +cool_fan_enabled = False +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..d76660f0e76 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_lab_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = quality +variant = Lab +weight = -2 + +[values] +cool_fan_enabled = False +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..97143d7344c --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1C +weight = -2 + +[values] +build_volume_temperature = 85 +cool_fan_enabled = False +default_material_bed_temperature = 95 +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..e23b9f48b27 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 1XA +weight = -2 + +[values] +build_volume_temperature = 85 +cool_fan_enabled = False +default_material_bed_temperature = 95 +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..bb7091627bb --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -0,0 +1,34 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_rapidrinse_175 +quality_type = draft +setting_version = 22 +type = quality +variant = 2XA +weight = -2 + +[values] +brim_replaces_support = False +raft_airgap = 0.0 +retract_at_layer_change = True +speed_prime_tower = 25.0 +speed_print = 50 +speed_roofing = 50 +speed_support = 50 +speed_support_bottom = 30 +speed_support_interface = 80 +speed_topbottom = 50 +speed_wall_0 = 50 +speed_wall_x = 50 +support_bottom_wall_count = 5 +support_fan_enable = False +support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height +support_interface_enable = True +support_wall_count = 1 +support_xy_distance = 0.2 +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg new file mode 100644 index 00000000000..48ea525f207 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -0,0 +1,14 @@ +[general] +version = 4 +name = Fast +definition = ultimaker_methodxl + +[metadata] +setting_version = 22 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..f5a988aea6d --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_lab_um-abscf-175_0.2mm.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_abscf_175 +quality_type = draft +setting_version = 22 +type = quality +variant = Lab +weight = -2 + +[values] +build_volume_temperature = 85 +cool_fan_enabled = False +default_material_bed_temperature = 95 +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm.inst.cfg new file mode 100644 index 00000000000..864c0d8bdc0 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_lab_um-absr-175_0.2mm.inst.cfg @@ -0,0 +1,44 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_absr_175 +quality_type = draft +setting_version = 22 +type = quality +variant = Lab +weight = -2 + +[values] +build_volume_temperature = 85 +cool_fan_enabled = False +default_material_bed_temperature = 95 +raft_air_gap = 0.3 +speed_prime_tower = 30.0 +speed_print = 120.0 +speed_roofing = 55 +speed_topbottom = 55 +speed_travel = 250.0 +speed_wall_0 = 45 +speed_wall_x = 65 +support_angle = 50 +support_bottom_density = 24 +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_fan_enable = False +support_infill_rate = 12.0 +support_interface_enable = True +support_interface_pattern = lines +support_line_width = 0.3 +support_pattern = lines +support_roof_density = 97 +support_roof_height = 1.015 +support_roof_line_width = 0.25 +support_use_towers = False +support_xy_distance = 0.2 +support_xy_distance_overhang = 0.15 +support_z_distance = 0.25 + diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg new file mode 100644 index 00000000000..1877c51d99b --- /dev/null +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 1C +version = 4 +definition = ultimaker_methodx + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = 1C +machine_nozzle_size = 0.4 diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg new file mode 100644 index 00000000000..39fb0441b4e --- /dev/null +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 1XA +version = 4 +definition = ultimaker_methodx + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = 1XA +machine_nozzle_size = 0.4 diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg new file mode 100644 index 00000000000..5e33e715593 --- /dev/null +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 2XA +version = 4 +definition = ultimaker_methodx + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = 2XA +machine_nozzle_size = 0.4 diff --git a/resources/variants/ultimaker_methodx_LAB.inst.cfg b/resources/variants/ultimaker_methodx_LAB.inst.cfg new file mode 100644 index 00000000000..80d9f69bb7c --- /dev/null +++ b/resources/variants/ultimaker_methodx_LAB.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Lab +version = 4 +definition = ultimaker_methodx + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = Lab +machine_nozzle_size = 0.4 diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg new file mode 100644 index 00000000000..62eb9657c75 --- /dev/null +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 1C +version = 4 +definition = ultimaker_methodxl + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = 1C +machine_nozzle_size = 0.4 diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg new file mode 100644 index 00000000000..60a275ecb5b --- /dev/null +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 1XA +version = 4 +definition = ultimaker_methodxl + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = 1XA +machine_nozzle_size = 0.4 diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg new file mode 100644 index 00000000000..d040c17a56d --- /dev/null +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = 2XA +version = 4 +definition = ultimaker_methodxl + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = 2XA +machine_nozzle_size = 0.4 diff --git a/resources/variants/ultimaker_methodxl_LAB.inst.cfg b/resources/variants/ultimaker_methodxl_LAB.inst.cfg new file mode 100644 index 00000000000..7eb50558429 --- /dev/null +++ b/resources/variants/ultimaker_methodxl_LAB.inst.cfg @@ -0,0 +1,13 @@ +[general] +name = Lab +version = 4 +definition = ultimaker_methodxl + +[metadata] +setting_version = 22 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_id = Lab +machine_nozzle_size = 0.4 From 8fa6cd2f773e3286652290787ff221339fa9f8c6 Mon Sep 17 00:00:00 2001 From: pkuiper-ultimaker Date: Tue, 31 Oct 2023 16:11:56 +0000 Subject: [PATCH 110/121] Applied printer-linter format --- .../ultimaker_method_base.def.json | 1127 +++++++---------- .../definitions/ultimaker_methodx.def.json | 166 +-- .../definitions/ultimaker_methodxl.def.json | 88 +- .../ultimaker_methodx_extruder_left.def.json | 24 +- .../ultimaker_methodx_extruder_right.def.json | 24 +- .../ultimaker_methodxl_extruder_left.def.json | 24 +- ...ultimaker_methodxl_extruder_right.def.json | 24 +- .../um_methodx_global_Draft_Quality.inst.cfg | 9 +- .../um_methodxl_global_Draft_Quality.inst.cfg | 9 +- .../variants/ultimaker_methodx_1C.inst.cfg | 5 +- .../variants/ultimaker_methodx_1XA.inst.cfg | 5 +- .../variants/ultimaker_methodx_2XA.inst.cfg | 5 +- .../variants/ultimaker_methodx_LAB.inst.cfg | 5 +- .../variants/ultimaker_methodxl_1C.inst.cfg | 5 +- .../variants/ultimaker_methodxl_1XA.inst.cfg | 5 +- .../variants/ultimaker_methodxl_2XA.inst.cfg | 5 +- .../variants/ultimaker_methodxl_LAB.inst.cfg | 5 +- 17 files changed, 636 insertions(+), 899 deletions(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index adb55bf2d30..3c03020b1ea 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -1,693 +1,440 @@ { - "version": 2, - "inherits": "ultimaker", - "metadata": { - "author": "Ultimaker", - "exclude_materials": [ - "dsm_", - "Essentium_", - "imade3d_", - "chromatik_", - "3D-Fuel_", - "bestfilament_", - "emotiontech_", - "eryone_", - "eSUN_", - "Extrudr_", - "fabtotum_", - "fdplast_", - "filo3d_", - "generic_bvoh_175", - "generic_cpe_175", - "generic_hips_175", - "generic_pc_175", - "ultimaker_rapidrinse_175", - "ultimaker_sr30_175", - "generic_tpu_175", - "goofoo_", - "ideagen3D_", - "imade3d_", - "innofill_", - "layer_one_", - "leapfrog_", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "redd_", - "tizyx_", - "verbatim_", - "Vertex_", - "volumic_", - "xyzprinting_", - "zyyx_pro_", - "octofiber_", - "fiberlogy_" - ], - "file_formats": "application/x-makerbot", - "has_machine_materials": true, - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "machine_extruder_trains": { - "0": "ultimaker_method_extruder_left", - "1": "ultimaker_method_extruder_right" - }, - "manufacturer": "Ultimaker B.V.", - "nozzle_offsetting_for_disallowed_areas": false, - "platform": "ultimaker_method_platform.stl", - "platform_offset": [ - 0, - 0, - 0 - ], - "platform_texture": "MakerbotMethod.png", - "preferred_quality_type": "fast", - "preferred_variant_name": "1A", - "preferred_material": "generic_pla_175", - "supports_material_export": true, - "supports_network_connection": true, - "supports_usb_connection": false, - "variants_name": "Extruder", - "visible": false, - "weight": -1 - }, - "name": "Makerbot Method Base Profile", - "overrides": { - "adhesion_extruder_nr": { - "value": 0 - }, - "adhesion_type": { - "value": "'raft'" - }, - "bridge_enable_more_layers": { - "value": true - }, - "bridge_fan_speed": { - "value": "cool_fan_speed_max" - }, - "bridge_fan_speed_2": { - "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" - }, - "bridge_fan_speed_3": { - "value": "cool_fan_speed_min" - }, - "bridge_settings_enabled": { - "value": true - }, - "bridge_skin_density": { - "value": 100 - }, - "bridge_skin_density_2": { - "value": 100 - }, - "bridge_skin_density_3": { - "value": 100 - }, - "bridge_skin_material_flow": { - "value": "material_flow" - }, - "bridge_skin_material_flow_2": { - "value": "material_flow" - }, - "bridge_skin_material_flow_3": { - "value": "material_flow" - }, - "bridge_skin_speed": { - "value": "speed_topbottom" - }, - "bridge_skin_speed_2": { - "value": "speed_topbottom" - }, - "bridge_skin_speed_3": { - "value": "speed_topbottom" - }, - "bridge_sparse_infill_max_density": { - "value": 50 - }, - "bridge_wall_coast": { - "value": 0 - }, - "bridge_wall_material_flow": { - "value": "material_flow" - }, - "bridge_wall_speed": { - "value": "speed_wall" - }, - "brim_width": { - "value": 5 - }, - "extruder_prime_pos_abs": { - "default_value": true - }, - "gradual_support_infill_steps": { - "value": 0 - }, - "infill_before_walls": { - "value": false - }, - "inset_direction": { - "value": "'inside_out'" - }, - "infill_enable_travel_optimization": { - "value": true - }, - "infill_material_flow": { - "value": "material_flow" - }, - "infill_overlap": { - "value": 0 - }, - "infill_pattern": { - "value": "'zigzag' if infill_sparse_density > 80 else 'lines'" - }, - "infill_wipe_dist": { - "value": 0 - }, - "layer_start_x": { - "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" - }, - "layer_start_y": { - "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" - }, - "limit_support_retractions": { - "value": false - }, - "machine_acceleration": { - "default_value": 3000 - }, - "machine_center_is_zero": { - "value": true - }, - "machine_depth": { - "default_value": 190 - }, - "machine_end_gcode": { - "default_value": "" - }, - "machine_extruder_count": { - "default_value": 2 - }, - "machine_gcode_flavor": { - "default_value": "Griffin" - }, - "machine_heated_bed": { - "default_value": false - }, - "machine_heated_build_volume": { - "default_value": true - }, - "machine_height": { - "default_value": 196 - }, - "machine_min_cool_heat_time_window": { - "value": 15 - }, - "machine_name": { - "default_value": "Makerbot Method" - }, - "machine_start_gcode": { - "default_value": "" - }, - "machine_width": { - "default_value": 150 - }, - "material_initial_print_temperature": { - "value": "material_print_temperature-10" - }, - "material_final_print_temperature": { - "value": "material_print_temperature-10" - }, - "machine_nozzle_heat_up_speed": { - "value": 3.5 - }, - "machine_nozzle_cool_down_speed": { - "value": 0.8 - }, - "material_flow": { - "value": 97 - }, - "skin_material_flow": { - "value": "0.95*material_flow" - }, - "material_print_temperature": { - "value": "default_material_print_temperature" - }, - "material_bed_temperature": { - "enabled": "machine_heated_bed" - }, - "material_bed_temperature_layer_0": { - "enabled": "machine_heated_bed" - }, - "material_shrinkage_percentage": { - "enabled": true - }, - "material_shrinkage_percentage_z": { - "resolve": "0.9852*sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" - }, - "min_wall_line_width": { - "value": 0.4 - }, - "minimum_support_area": { - "value": 0.1 - }, - "multiple_mesh_overlap": { - "value": 0 - }, - "optimize_wall_printing_order": { - "value": true - }, - "prime_blob_enable": { - "enabled": false - }, - "prime_tower_enable": { - "value": false - }, - "prime_tower_flow": { - "value": "material_flow" - }, - "prime_tower_line_width": { - "value": 1 - }, - "prime_tower_raft_base_line_spacing": { - "value": "raft_base_line_width" - }, - "prime_tower_wipe_enabled": { - "value": true - }, - "prime_tower_base_size": { - "value": 6 - }, - "prime_tower_base_height": { - "value": 6 - }, - "prime_tower_base_curve_magnitude": { - "value": 2 - }, - "raft_base_line_spacing": { - "value": "2*raft_base_line_width" - }, - "raft_base_line_width": { - "value": 1.4 - }, - "raft_base_speed": { - "value": 5 - }, - "raft_base_thickness": { - "value": 0.8 - }, - "raft_interface_layers": { - "value": 2 - }, - "raft_interface_line_width": { - "value": 1.2 - }, - "raft_interface_thickness": { - "value": 0.3 - }, - "raft_margin": { - "value": 3 - }, - "raft_surface_extruder_nr": { - "value": "int(anyExtruderWithMaterial('material_is_support_material'))" - }, - "raft_interface_extruder_nr": { - "value": "raft_surface_extruder_nr" - }, - "retraction_amount": { - "value": 0.75 - }, - "retraction_combing": { - "value": "'off'" - }, - "retraction_combing_max_distance": { - "value": "speed_travel / 10" - }, - "retraction_count_max": { - "value": 100 - }, - "retraction_extrusion_window": { - "value": 0 - }, - "retraction_hop": { - "value": 0.4 - }, - "retraction_hop_enabled": { - "value": true - }, - "retraction_hop_only_when_collides": { - "value": false - }, - "retraction_min_travel": { - "value": "line_width * 4" - }, - "retraction_prime_speed": { - "value": "retraction_speed" - }, - "retraction_speed": { - "value": 5 - }, - "roofing_layer_count": { - "value": 2 - }, - "roofing_material_flow": { - "value": "material_flow" - }, - "roofing_monotonic": { - "value": true - }, - "skin_monotonic": { - "value": true - }, - "skin_outline_count": { - "value": 0 - }, - "skin_overlap": { - "value": 0 - }, - "skin_preshrink": { - "value": 0 - }, - "skirt_brim_material_flow": { - "value": "material_flow" - }, - "skirt_brim_minimal_length": { - "value": 500 - }, - "speed_equalize_flow_width_factor": { - "value": 0 - }, - "speed_prime_tower": { - "value": "speed_topbottom" - }, - "speed_print": { - "value": 50 - }, - "speed_roofing": { - "value": "speed_wall_0" - }, - "speed_support": { - "value": "speed_wall" - }, - "speed_support_interface": { - "value": "speed_topbottom" - }, - "speed_topbottom": { - "value": "speed_wall" - }, - "speed_travel": { - "value": 250 - }, - "speed_wall": { - "value": "speed_print * 40/50" - }, - "speed_wall_0": { - "value": "speed_wall * 30/40" - }, - "speed_wall_x": { - "value": "speed_wall" - }, - "support_angle": { - "value": 40 - }, - "support_bottom_distance": { - "value": "support_z_distance / 2" - }, - "support_bottom_material_flow": { - "value": "material_flow" - }, - "support_brim_enable": { - "value": false - }, - "support_conical_min_width": { - "value": 10 - }, - "support_enable": { - "value": true - }, - "support_extruder_nr": { - "value": "int(anyExtruderWithMaterial('material_is_support_material'))" - }, - "support_fan_enable": { - "value": false - }, - "support_infill_rate": { - "value": 20.0 - }, - "support_interface_enable": { - "value": true - }, - "support_interface_material_flow": { - "value": "material_flow" - }, - "support_interface_offset": { - "value": 0 - }, - "support_interface_pattern": { - "value": "'lines'" - }, - "support_interface_wall_count": { - "value": 2 - }, - "support_material_flow": { - "value": "material_flow" - }, - "support_pattern": { - "value": "'lines'" - }, - "support_roof_material_flow": { - "value": "material_flow" - }, - "support_supported_skin_fan_speed": { - "value": "cool_fan_speed_max" - }, - "support_top_distance": { - "value": "support_z_distance" - }, - "support_wall_count": { - "value": "1 if support_conical_enabled or support_structure == 'tree' else 0" - }, - "support_xy_distance": { - "value": 0.2 - }, - "support_z_distance": { - "value": 0 - }, - "switch_extruder_retraction_amount": { - "value": 0.5 - }, - "switch_extruder_retraction_speeds": { - "value": "retraction_speed" - }, - "top_bottom_thickness": { - "value": "5*layer_height" - }, - "travel_avoid_distance": { - "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" - }, - "travel_avoid_supports": { - "value": true - }, - "wall_0_inset": { - "value": 0 - }, - "wall_0_material_flow": { - "value": "material_flow" - }, - "wall_0_wipe_dist": { - "value": 0 - }, - "wall_material_flow": { - "value": "material_flow" - }, - "wall_x_material_flow": { - "value": "material_flow" - }, - "xy_offset": { - "value": 0 - }, - "xy_offset_layer_0": { - "value": "xy_offset" - }, - "zig_zaggify_infill": { - "value": true - }, - "z_seam_corner": { - "value": "'z_seam_corner_none'" - }, - "z_seam_position": { - "value": "'backright'" - }, - "z_seam_type": { - "value": "'sharpest_corner'" - }, - "acceleration_enabled": { - "value": true, - "enabled": false - }, - "acceleration_travel_enabled": { - "value": true, - "enabled": false - }, - "acceleration_print": { - "value": 300, - "enabled": false - }, - "acceleration_infill": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_wall": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_wall_0": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_wall_x": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_roofing": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_topbottom": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_support": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_support_infill": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_support_interface": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_support_roof": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_support_bottom": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_prime_tower": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_travel": { - "value": 5000, - "enabled": false - }, - "acceleration_travel_layer_0": { - "value": "acceleration_travel", - "enabled": false - }, - "acceleration_layer_0": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_print_layer_0": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_wall_0_roofing": { - "value": "acceleration_print", - "enabled": false - }, - "acceleration_wall_x_roofing": { - "value": "acceleration_print", - "enabled": false - }, - "jerk_enabled": { - "value": true, - "enabled": false - }, - "jerk_travel_enabled": { - "value": true, - "enabled": false - }, - "jerk_print": { - "value": 12.5, - "enabled": false - }, - "jerk_infill": { - "value": "jerk_print", - "enabled": false - }, - "jerk_wall": { - "value": "jerk_print", - "enabled": false - }, - "jerk_wall_0": { - "value": "jerk_print", - "enabled": false - }, - "jerk_wall_x": { - "value": "jerk_print", - "enabled": false - }, - "jerk_roofing": { - "value": "jerk_print", - "enabled": false - }, - "jerk_topbottom": { - "value": "jerk_print", - "enabled": false - }, - "jerk_support": { - "value": "jerk_print", - "enabled": false - }, - "jerk_support_infill": { - "value": "jerk_print", - "enabled": false - }, - "jerk_support_interface": { - "value": "jerk_print", - "enabled": false - }, - "jerk_support_roof": { - "value": "jerk_print", - "enabled": false - }, - "jerk_support_bottom": { - "value": "jerk_print", - "enabled": false - }, - "jerk_prime_tower": { - "value": "jerk_print", - "enabled": false - }, - "jerk_travel": { - "value": 12.5, - "enabled": false - }, - "jerk_travel_layer_0": { - "value": "jerk_travel", - "enabled": false - }, - "jerk_layer_0": { - "value": "jerk_print", - "enabled": false - }, - "jerk_print_layer_0": { - "value": "jerk_print", - "enabled": false - }, - "jerk_wall_0_roofing": { - "value": "jerk_print", - "enabled": false - }, - "jerk_wall_x_roofing": { - "value": "jerk_print", - "enabled": false + "version": 2, + "name": "Makerbot Method Base Profile", + "inherits": "ultimaker", + "metadata": + { + "visible": false, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_platform.stl", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "generic_bvoh_175", + "generic_cpe_175", + "generic_hips_175", + "generic_pc_175", + "ultimaker_rapidrinse_175", + "ultimaker_sr30_175", + "generic_tpu_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_" + ], + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_method_extruder_left", + "1": "ultimaker_method_extruder_right" + }, + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_material": "generic_pla_175", + "preferred_quality_type": "fast", + "preferred_variant_name": "1A", + "supports_material_export": true, + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": + { + "enabled": false, + "value": true + }, + "acceleration_infill": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_layer_0": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_prime_tower": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_print": + { + "enabled": false, + "value": 300 + }, + "acceleration_print_layer_0": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_roofing": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_bottom": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_infill": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_interface": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_support_roof": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_topbottom": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_travel": + { + "enabled": false, + "value": 5000 + }, + "acceleration_travel_enabled": + { + "enabled": false, + "value": true + }, + "acceleration_travel_layer_0": + { + "enabled": false, + "value": "acceleration_travel" + }, + "acceleration_wall": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_0": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_0_roofing": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_x": + { + "enabled": false, + "value": "acceleration_print" + }, + "acceleration_wall_x_roofing": + { + "enabled": false, + "value": "acceleration_print" + }, + "adhesion_extruder_nr": { "value": 0 }, + "adhesion_type": { "value": "'raft'" }, + "bridge_enable_more_layers": { "value": true }, + "bridge_fan_speed": { "value": "cool_fan_speed_max" }, + "bridge_fan_speed_2": { "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" }, + "bridge_fan_speed_3": { "value": "cool_fan_speed_min" }, + "bridge_settings_enabled": { "value": true }, + "bridge_skin_density": { "value": 100 }, + "bridge_skin_density_2": { "value": 100 }, + "bridge_skin_density_3": { "value": 100 }, + "bridge_skin_material_flow": { "value": "material_flow" }, + "bridge_skin_material_flow_2": { "value": "material_flow" }, + "bridge_skin_material_flow_3": { "value": "material_flow" }, + "bridge_skin_speed": { "value": "speed_topbottom" }, + "bridge_skin_speed_2": { "value": "speed_topbottom" }, + "bridge_skin_speed_3": { "value": "speed_topbottom" }, + "bridge_sparse_infill_max_density": { "value": 50 }, + "bridge_wall_coast": { "value": 0 }, + "bridge_wall_material_flow": { "value": "material_flow" }, + "bridge_wall_speed": { "value": "speed_wall" }, + "brim_width": { "value": 5 }, + "extruder_prime_pos_abs": { "default_value": true }, + "gradual_support_infill_steps": { "value": 0 }, + "infill_before_walls": { "value": false }, + "infill_enable_travel_optimization": { "value": true }, + "infill_material_flow": { "value": "material_flow" }, + "infill_overlap": { "value": 0 }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'lines'" }, + "infill_wipe_dist": { "value": 0 }, + "inset_direction": { "value": "'inside_out'" }, + "jerk_enabled": + { + "enabled": false, + "value": true + }, + "jerk_infill": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_layer_0": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_prime_tower": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_print": + { + "enabled": false, + "value": 12.5 + }, + "jerk_print_layer_0": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_roofing": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_bottom": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_infill": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_interface": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_support_roof": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_topbottom": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_travel": + { + "enabled": false, + "value": 12.5 + }, + "jerk_travel_enabled": + { + "enabled": false, + "value": true + }, + "jerk_travel_layer_0": + { + "enabled": false, + "value": "jerk_travel" + }, + "jerk_wall": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_0": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_0_roofing": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_x": + { + "enabled": false, + "value": "jerk_print" + }, + "jerk_wall_x_roofing": + { + "enabled": false, + "value": "jerk_print" + }, + "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, + "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, + "limit_support_retractions": { "value": false }, + "machine_acceleration": { "default_value": 3000 }, + "machine_center_is_zero": { "value": true }, + "machine_depth": { "default_value": 190 }, + "machine_end_gcode": { "default_value": "" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_heated_bed": { "default_value": false }, + "machine_heated_build_volume": { "default_value": true }, + "machine_height": { "default_value": 196 }, + "machine_min_cool_heat_time_window": { "value": 15 }, + "machine_name": { "default_value": "Makerbot Method" }, + "machine_nozzle_cool_down_speed": { "value": 0.8 }, + "machine_nozzle_heat_up_speed": { "value": 3.5 }, + "machine_start_gcode": { "default_value": "" }, + "machine_width": { "default_value": 150 }, + "material_bed_temperature": { "enabled": "machine_heated_bed" }, + "material_bed_temperature_layer_0": { "enabled": "machine_heated_bed" }, + "material_final_print_temperature": { "value": "material_print_temperature-10" }, + "material_flow": { "value": 97 }, + "material_initial_print_temperature": { "value": "material_print_temperature-10" }, + "material_print_temperature": { "value": "default_material_print_temperature" }, + "material_shrinkage_percentage": { "enabled": true }, + "material_shrinkage_percentage_z": { "resolve": "0.9852*sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, + "min_wall_line_width": { "value": 0.4 }, + "minimum_support_area": { "value": 0.1 }, + "multiple_mesh_overlap": { "value": 0 }, + "optimize_wall_printing_order": { "value": true }, + "prime_blob_enable": { "enabled": false }, + "prime_tower_base_curve_magnitude": { "value": 2 }, + "prime_tower_base_height": { "value": 6 }, + "prime_tower_base_size": { "value": 6 }, + "prime_tower_enable": { "value": false }, + "prime_tower_flow": { "value": "material_flow" }, + "prime_tower_line_width": { "value": 1 }, + "prime_tower_raft_base_line_spacing": { "value": "raft_base_line_width" }, + "prime_tower_wipe_enabled": { "value": true }, + "raft_base_line_spacing": { "value": "2*raft_base_line_width" }, + "raft_base_line_width": { "value": 1.4 }, + "raft_base_speed": { "value": 5 }, + "raft_base_thickness": { "value": 0.8 }, + "raft_interface_extruder_nr": { "value": "raft_surface_extruder_nr" }, + "raft_interface_layers": { "value": 2 }, + "raft_interface_line_width": { "value": 1.2 }, + "raft_interface_thickness": { "value": 0.3 }, + "raft_margin": { "value": 3 }, + "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" }, + "retraction_amount": { "value": 0.75 }, + "retraction_combing": { "value": "'off'" }, + "retraction_combing_max_distance": { "value": "speed_travel / 10" }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 0 }, + "retraction_hop": { "value": 0.4 }, + "retraction_hop_enabled": { "value": true }, + "retraction_hop_only_when_collides": { "value": false }, + "retraction_min_travel": { "value": "line_width * 4" }, + "retraction_prime_speed": { "value": "retraction_speed" }, + "retraction_speed": { "value": 5 }, + "roofing_layer_count": { "value": 2 }, + "roofing_material_flow": { "value": "material_flow" }, + "roofing_monotonic": { "value": true }, + "skin_material_flow": { "value": "0.95*material_flow" }, + "skin_monotonic": { "value": true }, + "skin_outline_count": { "value": 0 }, + "skin_overlap": { "value": 0 }, + "skin_preshrink": { "value": 0 }, + "skirt_brim_material_flow": { "value": "material_flow" }, + "skirt_brim_minimal_length": { "value": 500 }, + "speed_equalize_flow_width_factor": { "value": 0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_print": { "value": 50 }, + "speed_roofing": { "value": "speed_wall_0" }, + "speed_support": { "value": "speed_wall" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_wall" }, + "speed_travel": { "value": 250 }, + "speed_wall": { "value": "speed_print * 40/50" }, + "speed_wall_0": { "value": "speed_wall * 30/40" }, + "speed_wall_x": { "value": "speed_wall" }, + "support_angle": { "value": 40 }, + "support_bottom_distance": { "value": "support_z_distance / 2" }, + "support_bottom_material_flow": { "value": "material_flow" }, + "support_brim_enable": { "value": false }, + "support_conical_min_width": { "value": 10 }, + "support_enable": { "value": true }, + "support_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" }, + "support_fan_enable": { "value": false }, + "support_infill_rate": { "value": 20.0 }, + "support_interface_enable": { "value": true }, + "support_interface_material_flow": { "value": "material_flow" }, + "support_interface_offset": { "value": 0 }, + "support_interface_pattern": { "value": "'lines'" }, + "support_interface_wall_count": { "value": 2 }, + "support_material_flow": { "value": "material_flow" }, + "support_pattern": { "value": "'lines'" }, + "support_roof_material_flow": { "value": "material_flow" }, + "support_supported_skin_fan_speed": { "value": "cool_fan_speed_max" }, + "support_top_distance": { "value": "support_z_distance" }, + "support_wall_count": { "value": "1 if support_conical_enabled or support_structure == 'tree' else 0" }, + "support_xy_distance": { "value": 0.2 }, + "support_z_distance": { "value": 0 }, + "switch_extruder_retraction_amount": { "value": 0.5 }, + "switch_extruder_retraction_speeds": { "value": "retraction_speed" }, + "top_bottom_thickness": { "value": "5*layer_height" }, + "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, + "travel_avoid_supports": { "value": true }, + "wall_0_inset": { "value": 0 }, + "wall_0_material_flow": { "value": "material_flow" }, + "wall_0_wipe_dist": { "value": 0 }, + "wall_material_flow": { "value": "material_flow" }, + "wall_x_material_flow": { "value": "material_flow" }, + "xy_offset": { "value": 0 }, + "xy_offset_layer_0": { "value": "xy_offset" }, + "z_seam_corner": { "value": "'z_seam_corner_none'" }, + "z_seam_position": { "value": "'backright'" }, + "z_seam_type": { "value": "'sharpest_corner'" }, + "zig_zaggify_infill": { "value": true } } - } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 5d72311a257..1de740b000c 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -1,88 +1,88 @@ { - "version": 2, - "name": "Makerbot Method X", - "inherits": "ultimaker_method_base", - "metadata": { - "visible": true, - "author": "Ultimaker", - "exclude_materials": [ - "dsm_", - "Essentium_", - "imade3d_", - "chromatik_", - "3D-Fuel_", - "bestfilament_", - "emotiontech_", - "eryone_", - "eSUN_", - "Extrudr_", - "fabtotum_", - "fdplast_", - "filo3d_", - "generic_asa_175", - "generic_abs_175", - "generic_bvoh_175", - "generic_petg_175", - "generic_pla_175", - "generic_tough_pla_175", - "generic_pva_175", - "generic_cffpa_175", - "generic_cpe_175", - "generic_nylon_175", - "generic_hips_175", - "generic_pc_175", - "ultimaker_sr30_175", - "generic_tpu_175", - "goofoo_", - "ideagen3D_", - "imade3d_", - "innofill_", - "layer_one_", - "leapfrog_", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "redd_", - "tizyx_", - "verbatim_", - "Vertex_", - "volumic_", - "xyzprinting_", - "zyyx_pro_", - "octofiber_", - "fiberlogy_" - ], - "manufacturer": "Ultimaker B.V.", - "file_formats": "application/x-makerbot", - "platform": "ultimaker_method_platform.stl", - "has_machine_materials": true, - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "machine_extruder_trains": + "version": 2, + "name": "Makerbot Method X", + "inherits": "ultimaker_method_base", + "metadata": { - "0": "ultimaker_methodx_extruder_left", - "1": "ultimaker_methodx_extruder_right" + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_platform.stl", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "generic_asa_175", + "generic_abs_175", + "generic_bvoh_175", + "generic_petg_175", + "generic_pla_175", + "generic_tough_pla_175", + "generic_pva_175", + "generic_cffpa_175", + "generic_cpe_175", + "generic_nylon_175", + "generic_hips_175", + "generic_pc_175", + "ultimaker_sr30_175", + "generic_tpu_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_" + ], + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_methodx_extruder_left", + "1": "ultimaker_methodx_extruder_right" + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_material": "ultimaker_absr_175", + "preferred_quality_type": "draft", + "preferred_variant_name": "1XA", + "supports_network_connection": true, + "supports_usb_connection": false, + "variant_definition": "ultimaker_methodx", + "variants_name": "Extruder", + "weight": -1 }, - "platform_offset": [ - 0, - 0, - 0 - ], - "platform_texture": "MakerbotMethod.png", - "preferred_quality_type": "draft", - "preferred_variant_name": "1XA", - "preferred_material": "ultimaker_absr_175", - "supports_network_connection": true, - "supports_usb_connection": false, - "variants_name": "Extruder", - "variant_definition": "ultimaker_methodx", - "weight": -1 - }, - "overrides": { - "machine_name": { - "default_value": "Makerbot Method X" + "overrides": + { + "machine_name": { "default_value": "Makerbot Method X" } } - } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 2bde7a204b7..264f963c106 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -1,55 +1,43 @@ { - "version": 2, - "name": "Makerbot Method XL", - "inherits": "ultimaker_methodx", - "metadata": { - "visible": true, - "author": "Ultimaker", - "manufacturer": "Ultimaker B.V.", - "file_formats": "application/x-makerbot", - "platform": "ultimaker_method_xl_platform.stl", - "has_machine_materials": true, - "has_machine_quality": true, - "has_materials": true, - "has_variants": true, - "machine_extruder_trains": + "version": 2, + "name": "Makerbot Method XL", + "inherits": "ultimaker_methodx", + "metadata": { - "0": "ultimaker_methodxl_extruder_left", - "1": "ultimaker_methodxl_extruder_right" + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot", + "platform": "ultimaker_method_xl_platform.stl", + "has_machine_materials": true, + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_methodxl_extruder_left", + "1": "ultimaker_methodxl_extruder_right" + }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotMethod.png", + "preferred_quality_type": "draft", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 }, - "platform_offset": [ - 0, - 0, - 0 - ], - "platform_texture": "MakerbotMethod.png", - "preferred_quality_type": "draft", - "supports_network_connection": true, - "supports_usb_connection": false, - "variants_name": "Extruder", - "weight": -1 - }, - "overrides": { - "machine_depth": { - "default_value": 305 - }, - "machine_heated_bed": { - "default_value": true - }, - "machine_height": { - "default_value": 317 - }, - "machine_width": { - "default_value": 305 - }, - "machine_name": { - "default_value": "Makerbot Method XL" - }, - "material_shrinkage_percentage_z": { - "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" - }, - "speed_travel": { - "value": 500 + "overrides": + { + "machine_depth": { "default_value": 305 }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 317 }, + "machine_name": { "default_value": "Makerbot Method XL" }, + "machine_width": { "default_value": 305 }, + "material_shrinkage_percentage_z": { "resolve": "sum(extruderValues(\"material_shrinkage_percentage_z\")) / len(extruderValues(\"material_shrinkage_percentage_z\"))" }, + "speed_travel": { "value": 500 } } - } } \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json index 3f08402eea9..97e8a1f2c39 100644 --- a/resources/extruders/ultimaker_methodx_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -2,25 +2,23 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_methodx", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_code": { - "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" - }, - "machine_extruder_end_code": { - "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" - } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json index e2976ea788b..8a4ef334045 100644 --- a/resources/extruders/ultimaker_methodx_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -2,25 +2,23 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_methodx", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_code": { - "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" - }, - "machine_extruder_end_code": { - "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" - } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json index 925e41e741f..2bedf9a62c6 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -2,25 +2,23 @@ "version": 2, "name": "Extruder 1", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_methodxl", "position": "0" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 0, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_code": { - "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" - }, - "machine_extruder_end_code": { - "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" - } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json index 9f7a5992860..2fd5b376634 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -2,25 +2,23 @@ "version": 2, "name": "Extruder 2", "inherits": "fdmextruder", - "metadata": { + "metadata": + { "machine": "ultimaker_methodxl", "position": "1" }, - - "overrides": { - "extruder_nr": { + "overrides": + { + "extruder_nr": + { "default_value": 1, "maximum_value": "1" }, - "machine_nozzle_size": { "default_value": 0.4 }, - "material_diameter": { "default_value": 1.75 }, + "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, - "machine_extruder_start_code": { - "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM109 S{material_final_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed*255/100}" - }, - "machine_extruder_end_code": { - "default_value": "M106 P{extruder_nr} S255\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" - } + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } } -} +} \ No newline at end of file diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg index 5cf852fee24..b6aa30b475f 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fast definition = ultimaker_methodx +name = Fast +version = 4 [metadata] +global_quality = True +quality_type = draft setting_version = 22 type = quality -quality_type = draft weight = -2 -global_quality = True [values] layer_height = 0.2 ## in reality this is 0.203, compensate this in the z scaling factor of the extruder + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg index 48ea525f207..307c51c6bd2 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -1,14 +1,15 @@ [general] -version = 4 -name = Fast definition = ultimaker_methodxl +name = Fast +version = 4 [metadata] +global_quality = True +quality_type = draft setting_version = 22 type = quality -quality_type = draft weight = -2 -global_quality = True [values] layer_height = 0.2 + diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 1877c51d99b..74b8f9d8e18 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodx name = 1C version = 4 -definition = ultimaker_methodx [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = 1C machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index 39fb0441b4e..b68db556e48 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodx name = 1XA version = 4 -definition = ultimaker_methodx [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = 1XA machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index 5e33e715593..9b951fe99e3 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodx name = 2XA version = 4 -definition = ultimaker_methodx [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = 2XA machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodx_LAB.inst.cfg b/resources/variants/ultimaker_methodx_LAB.inst.cfg index 80d9f69bb7c..a4d66495c0b 100644 --- a/resources/variants/ultimaker_methodx_LAB.inst.cfg +++ b/resources/variants/ultimaker_methodx_LAB.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodx name = Lab version = 4 -definition = ultimaker_methodx [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = Lab machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 62eb9657c75..2e1c6905528 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodxl name = 1C version = 4 -definition = ultimaker_methodxl [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = 1C machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 60a275ecb5b..0db3501e1a4 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodxl name = 1XA version = 4 -definition = ultimaker_methodxl [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = 1XA machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index d040c17a56d..52a2e0382cf 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodxl name = 2XA version = 4 -definition = ultimaker_methodxl [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = 2XA machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_methodxl_LAB.inst.cfg b/resources/variants/ultimaker_methodxl_LAB.inst.cfg index 7eb50558429..7e7b6d466f1 100644 --- a/resources/variants/ultimaker_methodxl_LAB.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LAB.inst.cfg @@ -1,13 +1,14 @@ [general] +definition = ultimaker_methodxl name = Lab version = 4 -definition = ultimaker_methodxl [metadata] +hardware_type = nozzle setting_version = 22 type = variant -hardware_type = nozzle [values] machine_nozzle_id = Lab machine_nozzle_size = 0.4 + From 6a5e01a5faeff8fb960cbfcf2e43ce1aa3ddc565 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 31 Oct 2023 17:33:02 +0100 Subject: [PATCH 111/121] Uncouple dependencies CURA-10561 --- conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index 31b741a9707..1ce2b1d369d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -300,12 +300,12 @@ def requirements(self): self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/cura_10561") + self.requires("dulcificum/(latest)@ultimaker/testing") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/cura_10561") + self.requires("uranium/(latest)@ultimaker/testing") self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: From d7d458499ed4662b29e758226e53da6c2eafbbd0 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 18:49:23 +0100 Subject: [PATCH 112/121] Rename ABS-CF in material map to ABS-CF10 Contributes to CURA-10561 --- plugins/MakerbotWriter/MakerbotWriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index dde1541cfe4..1efac694c89 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -77,7 +77,7 @@ def __init__(self) -> None: "9f52c514-bb53-46a6-8c0c-d507cd6ee742": "abs", "0f9a2a91-f9d6-4b6b-bd9b-a120a29391be": "abs", "d3e972f2-68c0-4d2f-8cfd-91028dfc3381": "abs", - "495a0ce5-9daf-4a16-b7b2-06856d82394d": "abs-cf", + "495a0ce5-9daf-4a16-b7b2-06856d82394d": "abs-cf10", "cb76bd6e-91fd-480c-a191-12301712ec77": "abs-wss1", "a017777e-3f37-4d89-a96c-dc71219aac77": "abs-wss1", "4d96000d-66de-4d54-a580-91827dcfd28f": "abs-wss1", From cfd5f7da0cd80053c399e687a1d6f542b0334007 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 18:51:33 +0100 Subject: [PATCH 113/121] Add Method X and Method XL meshes Contributes to CURA-10561 --- resources/images/MakerbotMethod.png | Bin 0 -> 138 bytes resources/meshes/ultimaker_method_platform.stl | Bin 0 -> 361684 bytes .../meshes/ultimaker_method_xl_platform.stl | Bin 0 -> 920084 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 resources/images/MakerbotMethod.png create mode 100644 resources/meshes/ultimaker_method_platform.stl create mode 100644 resources/meshes/ultimaker_method_xl_platform.stl diff --git a/resources/images/MakerbotMethod.png b/resources/images/MakerbotMethod.png new file mode 100644 index 0000000000000000000000000000000000000000..4406a6175b848efd4563c5bb84b0e4a7cbcc1432 GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2V8<6ZZI=>f4aTa()7Bet#3xhBt!>l*8o|0J>k`SPAFjv*C{Z%-*QGB9v3Z*VMH6#S6s(kKd~A!RU;C_z*jC4d@Uki6NAImcRO?VIy``;U8P?LEgF zbB;Cl+Iyd~@2a2pwdX(Yj2AxbsrUY0XFTt@_g;U_(|-A>Pdnp*$35t{2OTr}|Fiwr zJ%HLdhxLlb+y=q@2HvE;?OG|I;HC>fauJ&=&r6 z;#&^idgLFz*|>K6;^A9|9{s7kIELRl=Zs)4-T#Hl{w5H6o^avruix@gtK+~&uI+v9 zyN}p-+PAOVg#9?l{lq`J)7DSF`iPA;+(qk9#Ek<4d%-^8yIRL>Hnxt}ylxScR`}6- zeD8+-TkY%r?oMXE{=yx5f9Ut`y7BMdI(x@#w*Nn0chPM(uR3-%+d1bW?|%JBdmnuM zT@CS`-#R%XX|&nwN6vo71wDejnA;KhQ?t^1ue$x_y8c`BVO#gL+Xw*7M)E=ZLMpyXunlgKw|uD&pqd%Lw*@{cp!y zWjz4ComL0becRm*GCn=ZHNjhdw+QxPMP{?#{MrwQvW8gfedV3D4qN}q-r2El-t)H? z-FEAS&)#lJ?R~os*!uY2yY0Rs1bZF$?nAd0PxD9(!s40}!wN{JgPOL%>TT!EQP9U*KTA)e#(*ZSeScjwAnmufw-)|0dVx{~U1G){RdW zb-S%auvd=k5`tCaF<1@3Ua$P!1HF5ad^6k{e5-d%-^X>^jePE|lY_ zKbmb_cKh$!df7)myLtbxzw)s&_gwp_|Jtkj&%8)Ed|O7a7wliX@6|Gw{PA6XFwgUx z4dmQb+oFm6@CP5hb;L*Cu&L*KP}r}X3r4Wl`yPAv)_*>9_xciI{?h$!cJNq#?C&d2l)!*3r{JGoiJ3_EmYGr5b zf86rY#rtpg!`+JFy9wBOFY=Jv9kKOSul>`_kMF1VCI2aiqyKgp!CtWMaN1Ra`x4L4 z??u=~Ph+3{_WKg-(Rl@4-1)QF(f@SS+FRE)HvjP-o-*fg=00va@&7#eTWhbm|CyUl z{p-^k1bgxL&t`9V)qU;mRc8lQk=6b0H{7)Mp2P8A1bby4+jyW-t(@;g^h`zN(`Rju zzm&{?yujk9ytaZ(Z>O%L)kgV%2A}SKi~O#g&hE$L9S%cl6@O z-#c*YJD?i$DbB(gfM8)h9wg3CBTl?K#o{D;P?HZK`^5W|iwDPOLf9(GQcAdEN zpff%K`*Tn6YldEH-*eG#2UG=}^ z{@M`gty_;^ujx+AnM`7-4G!go?eYDm*D=b9vuzQ2T>>KScZDx!hNceHiV^IUbIcM# z8Ns18a%Vo>kIg#;2=-#`+3eE0d_F#&@jFYz&3gvPWbz5pMi2=0;;}(S`rFk7BJWXz zgZZWr?6o|CZ+gPNo_geC&NOwwVU^2s^dFvg!JgOMX5H@k)OLa)JG_c349^ZaFkc=Q0lUa&9yyQ?Jf_aCx%^Op}fa{j0@ zj$SN{`!>C=zcc-%oR-Shry?!5J|S0BEi8NU6rL$==gti#Nf&r3e=ksthSsa6{4aUb{*LEQY(JM4JK8E;y9 z>T6$UV~!(?c<6nO+dC7E%l1t=5e445D_dj1gxs&lY zZ}*P9Z~kHVOit|C>`6zQKHq%%g=??KeHL|u|J=D?efT+n?>MIs?8UmZ2tLAy$-CDDBiM`QN9XwJYhSbW-7{Y7b7IU( zd=|Ccu9*K2#4R0yy?B0{&0e_Q2X{aBx|gh7aGziEIWguzjf8Wa`DU}N|NY2I4}JA( z*1quE7dHs@QoCl+Gxt1gap$Z5(ME=6GT1r~@_q1Z_69-x)n}Ix>;?PT5BRJ^zDhde zHE%rP!S`(zJ8!v1S?8RpRYS7s63MSMl(d1V^GUTW7|@}iqxx%rvr?YH)G`@hIIa6M<;rYq-6 z*o*nvtn^=pyujykwV{=EJ8a#L&1X3v*h_6(8D_IDeRluFqaXY@yGHSq1-4$>+pF_F zLHyDH!CtWMduQ$4SI8Ol-8iH8%z>@XpY0Rm%LK8%oV6GJ{-ckFm!50v^-Ou@e33kJ zzWDd_9IS2UJZCc5$)BEIc#i|O9xKngJm(bkX5kAH1`CTH9?q=Zs)4JzGu*u4BT&t97y@#F%%?P zcFAdnerN5yAAaHHv)3QnAlQp_^YQSX{`u}_4>@8(|9#}&-g)a|UzaPjY}pI?587G; zd*v))-mlm^cJar*|F%=leBcT5lP)}T>*yN~vAD0i`(ay;zTcr64>-8Keb;Z|XS3hl zbL`@;{@`t={^pOg2z*DcUOYd_Z28e|oOG9mAHO*A!#n1WIDNMDviRPKzm?<9wPv%8 z-#Fmn=fC{;#ob@kBG`++&6>^bxBoe(9JTAT#d)8(`~kaF^+y>F+%1*u^1_d&KT9|80w4 zFPq5j!nZxu5Gw5S~>*YCraGQ(&|6KHb&pPIkcZj-o6LlHE>ayx`rGM`8cK^oT z-EV&TSI_4UIDKvJi;wf(#d|XP&Wv^ zyY`Fr3o_E5W z&u2c*x%1_lvEz?hJma<3KIH!IZxQUp=Z!qwU2@Fgz$5?S(lZ`#(wwiB{IrG7%lupY zUtc?B@n7rjzx3RdG-Z=@aD6QR&{x<<#GPYU59Kv;jM>l{LH)m=)&3T8Q*=^@i*@| zLhs1te1zvguuousjv)NlOK6Y{b@4oHSCmwgg0$2Sr{^WaJF?v z`5t&bxqIbrdu0S~bMKSi@PXqNfB%>k!CvTNe|zU8@BO>oi{CzE@rAEEYJuyLe(%Vi zA!{4qGi#aKfAYHBKk=+X76;tYB3dv0KJsVRj$QolzdmyJ)q74{U{=%b{`sD|{buyO zcRP0RuAhGR?$7*Fi(oHwjK4W>)W5v&;v*jY!}H(V^U#H6qE~%=J63J}1ff1PnE%ud zUHH7O95w&e-PRj~UiIOHy8(Z<_DQ!r?~+bj>TTgJ)52J?zdlZ+9k&=<_|w%!LucI48NBncT2aw>EwSo;P}Nm|9eM+ zU@u&K`0WI*oWHf|XP@!sqUwbsc|8|>_|q@>zWi&qH+5AjMz9xi&t@Ng!%>T;U-gd7 z2mb8Q3mz#R!M599c+aC2`yTd=&Ew@=97eDg?gsQTQhCSg@M9Oh^XFIZzWz%mE_e>- zxt;r1zA^duF^ji;`O4kTJpQBx!Crh8$hWWiefvYVIqdkwu5ayFuol z(sge;esR?^TLgRYTq)1z&pvap|9x(-x9)KVpwIoV^=^RA|Jm##f;jA6%Lw*@?VlQa z=j|74o_Ci!EpEQ*q0MIi{KV3JhWv{cU$FV`WA3z=f2c*U7k`2{@DfBUO1{}8itR?Ih> zUHhANSiImHr!Ss!>3vRQ1bgv4kz5Bij#|9)1@G8=z1)lPJtw+PKYM3B`9x^#sKsla z^N!6M&u#v+fs23t>=g(%>f9)fiFTBT*^V5Fi=s7>p;To>b z{owHLSYGzgk8Cdf`JVGD{=7x77b`8F6@UJAAAI|3Zu3Ez;hN7&__>DvvPZ8T@-6t= zFTY6VM4tP2PUL$ndH3T-zPNVz?C|;V8xL$aIBxqX=RL0c;@bNEIeh+>V;|5U*bDb| z`iahLcIA;@T>JJb4xc~j>IXD;eL(0t44mz3cF-CBw056s51+s1ZY_en+B&{<_V>+y z=k}-Bm@_*#^b=ax{?5dvAl|6c$-_waZU&Z`~VhY0q9{h5fQ zKM=S3FFmF*9rnf)J-W{}aBAy4>HjX8P?qx5v&yq;GUpGH% zaYiWzY`m+;=rIBrGD0J%w{Fg%`e-aY0$UNx=l&xEd%*^WE2~(It7jBA?5q_I=2O3E z1gZsM%%L&Bp|;imZnbq+%b|OK;H;4CGD5o=2c& z7o7->F@n8dFLNkXvqHzA4xCZT9E@Nu*vlMz1h&TInl!3zUOBw_%7Iws;0j?YhpLO3 zoBi{ojfI&^J5g=TR&Add4*JOJ@Xq!e=K)^_)k`_FuLAL^S6*=HGtZX4 zc=GDO!Eref>hRyFLt{Z7wV|PNeDmllKk&fwzWt-h(H`;f*E(8`^Ui(xWF5#|>(DHm zqw=c1UD6{^RBg`I{U7y)1ME8%KEfHcS*<^8^XL;#xV<6x2xr2PX0vY|{pftl0*Yd6 zb=0`?VWX1LN)b?3ZEzq`BC;EBL`PHOq9*Jw1iC?wsI6J4jrx`me1vP7=HPrW9^lhV zZk+CR*R#oI`;XUvU&l*UTR~%tr{_>RU9SVE|meBx#M{X4J9%Vsz`qWk&`E2}94=PsZ7W~B1h zGfLjG+_1ldmMhtT?>=+`D@DlXmm9Utgse;T7>?KkAQ>urV;GL*|rF-HpfO> zQ!*wQ>5b7nL2-|*Lr2-uK z+y1uCXEHg@<$JXatP~;NI&9QB6S6Wzp65EYHp>Wty>!3Dmi_iSe%PuJJ_E=edGBBy zD@Di~LhF<3OeBK6axNhP*Gj&FFnwax2($ICbLHDtvxn?|(w7IUgTjbJaX zsYUP+MvO*Kk+#l6&N%GF^NMrOsu6jn%KO6WcxPYUpiSEmv@%5^*o)^CM~qgD&?Der zK1YmJreLq-*~f9V&V-MFoH?nL*z&F1daW}dD^uX9NLQvv1bfN1a_d;7!d8u#)2b19 zFCyPAZs^()`c^4ye_KRWrkK;p6iW#8YVTyc2L0(*XZ)MHPiKa4C#n|^?3Htg9h6lg zHfhy};Rtdc+sYK1v@%5^*o)5stP~;N zd2ZA?6S6YJoK~ht1bgv4V^g{QHF;iHnk&wK-*uzbnUIw!nroEBkWrIw!_zB!O!kAr zuOITZkzEb2as$7!t@d!8i6w-3Are-pP#)*NwJ27NNc8_VgvLcAzN+~<6M9DB>a5kW zZ531HV+6eN+$4n8f%}hGHNxu9znqmf3e4s=Ii?Zng-CoS<9aE(Jt+!%KBb7wHCd+d z!#)E@1beX}g^=e#>nl5RG%j_Cyvegs>rBYX6!MOYYsLM;Ub^4T8`4TKo>g*S9*jCx zL%>VxfUU8y**h#g14!JQSHfNm0k6E@U8+ObP=|W44Ky;+-#+eBUSkBS$m;U*r>#tp zpW-lrz4D%6sSZ|=(W@cYEAMcUgI103dAAz_`TJ43XRI|KXl05-u$PU;Dyv2$x<$y! z6b~7#OwoGPDiyYB#GF=*$mbe)hiOCCme65%P}4My)d;D^sk|$`pxUFL^g^1FKZnsu8D*R*lfgX+4PbT4zF5rZ{D^ zGKIX8N?!cNul6~u8j*43FVWJLH$m5Hoe5c);v!m^V(8WK$*K{j(y9^pX`Q?+Vk+p{ zBC!4KPg$AbR9cy0387wk7U0cOTQy=qt48Ffnewi|I#!C1_b1kCoe5c)VnHiYB!azE zX}mA2N@24#AhKWid|W=G9MdA$Oa8vvpThDSWCUg(--X}Tq+MztS z-o>gBcI}IG4$bB#NS_Z!2=&5#zH%yqtuv7oa^-x-sh-$c1bgu_1HAS3PF*!3KkMTe zj_-Y^5$wf$j-XW|a_-|9j?WcG(8?5vU@ty{ZPkc}OspD_=oTR>Q=BqdnWFWoRVr-N zh&inqk@KLuL1%Ze`UV|rf0t8MrkK;p6iW#8YG+YdXJSsPM&$DuJ{^knOzD#%MbOF= zO9=fuseQVuG4%Tq`?qwpUI*F6xl;bPlNovO*=4IntkJ3wIR<>Dww)*|Q>@X-6p3Ij z9{=U6@XkM90r;MA8o^##2ktmq1m9EfEU`Q@IL=n4$U7wV$|t>?OBjK9i4m;ZY$hvH ztkKF8Ig7FvpIvPo`Y-yMkDQ&g^T(C<2=*#lR*jg`su6iz!u34fn#^mvtxPeel_{1G z`qpH7Rg+aC=Co==o_F$2>IPPd;O9?UnPN^WQzU}D+OxLQvQ;C7pGL_Wv>TJ_OeBK6 z__KFgHDdQ@)d=OrN)ht6uj{qWgdQ2KOu=6KIg|Qhv%eqAZ+P@P$M-|>my;Wl>r5nq zz2q+gbN_7is@t7^5!RW=@9U(i<$ck0tTQ3+S*~OKiP>zwN1Z1t%Ijt;Q{)jn?{Ee$ zpMzKI{118hT1KGznA@ZKPya3z)#eN*2itE(3)3Rli&ZFp$;!SL=D(@7ti&bHD0UaS zMX;CJ_?DDGwrYgkC+c4LTf23v6v3aQPb1hXug>f)wpVVmzWghnio~A&u1LLrU@!g- znrZB>QgVKkze-7)zjctmsXqJb*(E$Xvsd=9&7!hu#BsE0M1Jzi=ZE|i_Ij-|p?T5D z6p3Ij{&d(@jaZ{qBl5nTuTkx1ud*`58m&x`2=;294P@1b1+5y9?-$@MJl;djJ91l@ zVnHiYEFttgWbG?`*TCO9kX0i#Y1N2f<=kVoGQ}pXOpyro;!jnZF}H7c>2KU~{>YJK zcd`95WFXi}-jv_KDiyYB#GF=**uXjyJV)XCbN`DGS(#!^D^nzbz2rUp4XjdOt45qe zt43^KoeBOv3ZGy3`t7nZ#l^HTMIzXXztfw|WYvh>v}!~%>*H#m64j@XvNFYPTA89j zzzd%z`e&K4YQ&sYjmTM_XE@v^`Z^P`GR2%$rbq;P;adRzUod3Vh?6E(jmTLIo#^XK z$jTJQk5;B=y=s*TSiC{10lfP=b^6cZzighOB?}s+9o&1wcgi<2ErPw6+g6P@nO2R+F5x>Fd|u+~Q_IQ}m(a=-iC{0DgWEdz z+?I7F@(kv8$_k~at@ztsTbbe{TA3md>?MBzx`9Vt){*MX!)JVV8=kHZ#Gg+BpPAgL+g1z{Td^VF+BaWX~H6rgn_1a#a z2+PV8CyiF7Xuawa3(4xFr<_cyMp)(g4JfYXu|5ZVS}!Y8oJ=cIB!cy6@4{u(h*N0Q zh8cU=ZbaSz$n#nI zt^S9<`lua${@9E4{asy|BHtwC_W;`SR;EY6dAROk0+?8V%&9>6`1n$xNg_Pv3Q zGp^_Qy#b#$wlc+>R;EYxLi)e0ME{XLD)qllz7Hb)><{I#sz0mk2tnhkILJ&n+#h@`e| z?yZ*IJ8OlAtKUtrtv%#>Zv z51l`BkJ>yZ!q#KD)w}0BJM--0kz@@B{O!`b=g>NE|Dd)bWGxH4Xq`Tgk`0xUsxS_g!!PZbGWx7pot!VqOjGY5Lh*$=Rocpsad7K>Od^zKusJ; zS1H(hKh~MxSc(9;MaVi6`ObuTXeK;6qw_KIsSh^$A6#;7R}Od~L+vs5e)Jm-kWutm z2pmvXy^vKQz=AsT2%jGqk3wv1J^nAauW$r>Qyj~6@SLc5AQEz_cOdnMR;wIpbGGo- z-~Jvlyg2tZD_Lg(-JW-;;LtcDj+)zd?Ym{~(|+>y8?(3UUZnju2h80*U}Gk>XQMxL zORq$@S0ZG;drA$4FV@fq;>XSy1JT6Pt!k5x)ODUzG!fls_6QkUR#da%5iG5c+0Fr? z(+cY5$nV;B6ZKWtrj^Ohy&5$6NqTMdWl6rIS3^4hg8?BL+Osw3%T zb?E-mYC8n93Ix|-dU;&&k|SxSR>k4ttv}Pt5TP3*h{I8-PjZM>X*;)iV$)9SwL*r$ z*KLX_98ePIv!s*a?W)uH=cg^I6MdfBLzm+x;!5PcP1ONdY;&RXM%8IBR< zl}eLVj!J!!L$pe}&1wqaUXvWsC7Kn+AjT%gytLBzx@lka2=_{@qH^x58(eqGJ#6Dp z+qo?^&2T*e83uy1!hBUncI~UUyY^k*aCi;+GrcUU@=8Q-@az*_Lqut{9RgZuB(b@U z=#o0(nE(-r4El-@<>mFY9Io=P@~mk!gnLbLNSB0G-8d(L>hLjHMxgSjFA&^U*QJWP z_JwVHYLEM>N1(3)!Q&D0RUL5-Ag*aRyaxT5UZ!Yy?b;W1aB!E@k@T`Ubib=m@tvbb zK&wD-9nn{H#5sTnMQA)Q!!e?~QfcC_>=whyQw8B$0pVVg9MV@&c{k39pgLT$WdtgZ z`U1gybv5->*v6;!xUYHyx+D-(Ip(W6vTI+(-L>zEhNH$ky-d;aN=wj}fB0yuOyhd4`o|O{*c?Ym!6yiWTMYs0^*__@URq z9w8joC85ZmuRfhB?%Ef&A=DoCRgXYl1tP}Wbc*?^jyMMppKLg$5aqRNU)Y1bsw3%T zb?AOqq2jBRUN&mw<@?(aM3;ou5+W1{b&V%xI7XCLDot8BD)mVY(JJjWt0{zgO>#(= zXjT}57@HjP(n{m&rhU~T+$*(;%6Y!}gzIj(hix2cJGaF)oz&X3uSX!mK#*3Luj+`S zf!Jy|j3+vg5#_aOU)aIH^Hm*5FRMfMmsZ;$pj9Baj_8s);v7JPBB5^Sm0m-21x*}| zN_`B`*R&eKy?C57Ha6{&h}(^GBB%~UjS#3j6bS_P)gJ1ru#HdcabNWabV(pcEA&+z z*|o3Y?%H>0!{IgP&-5~N%PSGV!CewwLxihP@tvbbKr7wvW21h$VZN#(o(T}42#v=G zQC?nO%i%o3%Cn}`5bia}A$=88AxAW(TI5(w_AOH##M`@%Lpwa0zcBhXiY zh%xt!^ry!aFVm;u?%H=z!!d;@uS5g~_f>cqM~`q7D!ymcBcPS;_pwnw-Owd<#4`aR z6ru4LA<8S2Cas*O)oPI83JA}Al0&*A;&$Vl2&%)f8X!=4C=v+ntMgOEUHif|KDEbv z)g#bXfuPDUU)2%k0OEZOhu5G#)62S~ymsviJ2<$n>PUK79lGCDsQAv&BcN3vxQ@6E z))D6bA{3$VKwmMUyi#f6uM$?ls9FeZ`9McvOZ~cKp!$s~#a7)+M3H zps#kNio5oOZ3wl;ebpn-SAmEzH=W`xypA{r5a%=;Q;71~wJ+>JU)7QHvO09Xt5EUP zN-rC=^78%d2%<~EYY7pGgu2EPGaMtzE0rd#9F_VchiH{{o7EJ;y(T%NOEfEtL5xj~ zd1?duW9Fc72_=Bqm5XdupNIE*Jc zkrCy!YhT#G!ShueNiVBI_m@`NA)r+txQ^(OI^rBagd(AC>6KnXbp=fvj!JzD(bu#Z z!o7H$G&VNvl8D=lb0Vk?MU4=sJQN88t9#2jW_@|%LTnjxt10Z&5SC#?qO8zY9QS78 z2zxa|a*VsZj|+8mzpG#x(fKhz7{?&1=&Oj8`ha6l`7|OqDytmx#qt<{qqyPi^|Xlc zlDA<}=>{Qv6-T;EJklVm4pG%6w?wjR?5A4tmWAtXTB(h`3VSt#Wf+kHQ9RCpxZfg< zuvbGQ$GEThxEK%JUs~}@JwO=8Agkz-h?QD_V^H}tA~`B6)k-&e>xJ}*xW-r9?(08$ zM0v?OEE%amNSDNsE|cs9*}om4s?CuN1kYDDy6%>{+8F<^S3_8a5s9+Ge8q9UMjTFZ!&`s%i1Lzm zSW@W*A$=7`x=fsVkX47MYBO7jWZ7gt%G(sKyXCGn`YPf>U}b$@BaeKkNB#~`cdl8BXBfn!klG$J`FD~!8#Nk0bQC~kP0!X2W#n#E~wO>;>7s9ipnuYy-jb)eWw@X{9#CKkU^ImSIGqtT113-0O)W?9~v-G488A zF2+Om*9dZ74G_jL$SS%dVx?B#7*sxuNRG-1qo{qwT18yrD{gq}?;cTJ@@`8i-5{i| z;z*Z?a}ToW5LInvE0HXl>_>Sw!gaUY)ka^1y&A$Yj7Whf9_K*ZYltK4)ey-s?yEj7 z#$5N8R@_$ugmDbAiY|#*sTDW|l}{s*qq4%dYnSw60FL5@w<+8q%1hpDNu?WvbV(fP zGRa<${o5g`+RQc(JYQYyx|>#NWBkKj4PhBZB+3f&7011TIKo~HksRZ`>f>TObbpN? z_tgMl9D}T)OCnZk1&%@G(}?7#tT2k&SFBaUHNN78xBl)CMC73SPq^-;mD(8puvbG^h7pOf!hFSXw}>O`)ey-s?yEj7#zXhl2y$Ny5XLdc zD!L?MrB>h=R6dPJj>-z7sC~s+MO@=6Zg}hO9#LNMHcTqrAf&J2NSBFo53=eIRc&S~ zku00+M|n5Gb+_ErMqh=!8p1M+NP#FG=Rn*`i6iXQ5Xmv_t3EEqT=$n&+*bpHaSXDG zE{RyF6*vZ!Pa~3}vckA)m-J%*j^c*5Dcm8-OWuY_r5l8FNgU}i$zG8C+aapj%r+1_ zUtQw5n^tOL{KH-iVHrjw$_n!p$GwO+!d?xL9OJ&~<6=B?e~lpb)c|1}gRG)UB35bz zjzQ(qh~%iOFpAn&tX0G{zT$?r{_YXwC2zx|(hWlTDvorSIQJl{4pG%+wi3y*$$pe~ zBV2dOU2XJL*sCEd!-y1!;&BedeIIdzy&57p#(mYt#hB~<(u(_PfH00hR?#I9E42d0 zpz>)%a#U6rckPmX48T#`@HT}zM0v@(Eva;akS>WMT_)KJvVS{7Rh!ucg6FIExbCKv z+8F<^S3_8a5s9+Ge8q9kC62IHLnOzzull$c58YoQ$bB_H7{?&1=#q$)T7hFw`7|Oq zDl3el_7!UtagDFI;jO=WM0v@(Eva;akiLo|T_(;w$f`qBwVAC%vTU*+%-$w86v*^ z*7vV^M5h(hwW<{(Z#uZ{mPy!Fx!U8t>JjLxKu{g%t2*L*K*%a3#NjnmR^FqwW=VLZ z9URMDQ$<^WB+hNOef%vpbz+Y|m*{?1K@qy4uj&ZL zwbe)_`ic>o!7!ZZ?8p z6NjTxpUetbg`>-g-!V-1hM=ozzM%t5y-{lCViD^i>__mBIkN1(3)L3N<7>WFgyaYe(Sb&L?@W$T(~R>8qt z5?(eQJ)*SQ4gswcEjHH?cj0x!GXWwL8T1t+$}5#74y#_~DAp?K$eP-$rV#Em$st`5 zajlnvFKw?$V`J04>Jg|s>KpXcr&C3F>%nc~Pz!*!(HW;KOy zuSpK+64ociCdb@s(%9IvuX+S34@Cxj^@&u`))UG3O81ZZsz;zp0zq1#OX`So0I}6@ zXdNR&dD%)R6MYq4HU>SSwBo+%5ztEai_LXJm(&r@1c*>%&{vEouT+{itolXj!*!(H zW;KOyuSpK+lBnEzDaIykuSsKL)4u8vs66T$^wpkJQQmrR+c?x7_f?NTmjr^eLYLGL z=K$i;hC}NZAU9{oUe5MxUYHyx+D;! z6}qI3I0q0HH5^*U2vJ_P63Rqhg_n&%k0`CUuX+Tu(*0s{9nmFq#4`aR6dCjtBg!k4 zCJw89k@|2QX}4KTA>3<{L%Jj?w_b{|N!x4E*x0nMdITzu`UZU^tDJ<2^45df#-aAO zuX+T!BoL$(x}=Uc2N3UTIJAxtqP%QflZn0xFB^j%QCe|d^$2LC`^DxuqOa5=9hwdNuRgXYl1%k(8t~?%ByiA{pYpanEhh;WEoRgU(A~?89!pk^%L}|4h0$M3r zY_22vs*ZRjK!hTLzG6gqrP9P<)k|NMid=2-t$^^{Cpo0ASRWpb%22bxrt?*gK;=3H_fhn?=&Oor>zWXU)-ghym6;?WIJir~OOB+M z)uH>nri!mtdL;st2ZHN}zN#aR1|k$0^c5q@E0rb=%T97H6^9wFfRL=Lrr_%l(j}Tz zH)=WNrIlu+oAyhqqyO1W8NXk zOWuY_r5l9wRUGLuaqdA@9U`(abYvTqb6?%)x|=>~qp!kV4PhJ+DG*lmTz|@&928g9 zGD(iGS3@MnxUc%S=que{T5(?u5XLdcD!L?MrB>h=R6dPJj>-z-Zg0JiJ`vaWiW}bg zyGN9lybY6)8iaI79O*LgaT;XRA*$LOS&3xX*iW_O-3Zs+a#tID74~Wf%P=AZqIjGG zab+!&MV;Q8tX>MOM|{$a0%Fs&jIWrgb? z$Gx67!d?xL9OJ&~<6=B?e~lpb)c|1}gRG)UB9`@4RLeHkF^x!$$_nGIUBX&1M{&d3 z#=Jw6m%I&=N;e4Uk~q?3;@pF*Iz(h;=*TuI=f1kmbvJ#~Mqh=!8p1dtQXs7Ax&D+l zHYn~j%l2xBFZ!`l?@ z5alKBwxrSxLb@c5beTB!Agc~h)n>L5$+EGZYRTIauDj)~Hu@^;)ex3pL<&UlI0xc> zk~qR%4UrtWMT_)KJvVS{7Rh!ucg6FGGxbCKv+8F<^S3_8a5s9+G{T0XEB95?E zLnOzzull$c58YoQ$bB_H7{?&1=#q$)T7hFw`7|OqDl3elb_r`0agDFI;jO=WM0v@( zEva;akiLo|T_(;w$f`qBwVAC%vTU*+{_PM|ZDtz?p08we5Y^qZQXAtR_G$>rFd|V_n6EhQxx^9nYKY_*_f;PkHR=8u zLGG&o!Z-$5MVCaZ)CwGf%BK;@QCVRWwXayKh--Ys4R8J3Bg#wOVM(PMg!EM$=`wNd zK~^22s?BUAl4X;BS; z`)YtNjzLz@B@rvN0>_~8X+&~VRv35fl70-pQQYu0g*!xf$-6D7bc2vCi6dPm*$c9N zJ498R*#?5=tFv8q(@JfOf7q)bEW?OISz*57xMvYZ*sCFuW87DLT#SeAuMy7=M-gnRjZu|)+$M_)xO)2HIvDka3Bs1f4k z%p?)P!RJSK8Ap$h`cS#muS^`vZTCu>>#&OWNZP4YaabJ#M6a%^uHM+ROIWMErqvMc z#p8td`rF=c;A!IcY z;_#~VC&#kYPr@th7<2Bch-DlV*AcEl#dnS#0j+eukB$22=CfSJN)8}Gk?7qiM0v65 zMi4)=uUM-=hEX|CBZTKZ$sw~3>l1uA=3W!x>u>GE9)Ze3tEil>1~;aPwlaw-Y8<+M z+*duqy&OI6tB7UeQE_cu6XNh1^e4w+ue3v5?kidGL}M98*j9(yrPX!_R2~Q#LG)D} z@l1dSMM7PxBjzhclvgTE9F7`Ro;3;I3JCX_F1*`>IDkt3Yra(Is`nIe;kLG#A~_iHs;OuTRj#;izHdrdvfag7~5H6{}lblN{0| z>V+`~bdGsx1s;1(rbD3e;2ZSS4X(T89=36)J?^U>feZsdTA{D%h^<+YHC^9un6lAV zj3_T#2}RMt!CewwR!5I0t+qozD@BXVbwpp)5zhpOP$bl~ItGaHaur$*N2NYoN7}0) z+-s6U`ik`lrE|=^CiIk#$uh#dScR%uEqT)+RZQDBbpN=odIb6^5Ii2yC3VC(fVigN z@ER&B?;l&sBs(z>!NFZpN0t$#)piJIrIEzuI-*PJh;slDiVXUS5#^Oi6NgnVvkz<4 z*VJY;g>bJ)4(Y3i+l_M~s16^KWdtgZ`U1gMwX0J_TY)658E%jJsz;zpbien4W}};r zV#X2`)3%zfnCz>HWowyaUj<^&S9N3=;VM){YNeNDrD$jsHjO#1YIVfXK!hSR9wS6~ zrP9P<*_A$-70#~WR!?kt9qhG|tPCA|J%{v_#_C4R#-lPseEqH0!5)FiBdbAQecBbZ zOu{w}wVm5y+Zn5tyc^LWkYOOG4)j$WaWoL0Y&eW3W;jNam#u3;z00#tcv&4i!d0mF zUPq6BR=VHEM*Va{m(&r@1c*>%&{vEoFV@f*{HJ!wpz^G#&B`-dM!44`hjd9)-i>o2 zs1D;8AW(VK7YLrOK9MTg3M6^f>i%(G^$2uHAO?L^N1OwQt%k#E(4XmLik6qHYckPS z;Wb3K3KicudIYr6{XRD8ryKgJj(8?Ogd#K^BSd+n(xjF13@gu?+N`D!?ls9FT@saB zU&Yv@?KNp^Y&u`{2vi=54EkzMswi(gxNRJ2kNc`epi2TlT4BDbBhCTDr45JHF+!A= zt!pyTSK(!2&?8DKp5b}~w9@@za~*MiRYyD%AVQH)*XkG`$}5#74o9UvTu0h%R#OP~ zn&gl!VSQq3a?HIZjg3wFsz;#mP-M_om!yie0!hwSx_{hPJpx@42+|5&Qb(Kvh>IEy ztz(2JFI(4SqOZcs#-K-(R@_%T0$S;QvAK@uk~-p<01=7|`ic?dl}ZzbRli7mxQ?{j ztfmm|HOV1e5|vvo#n`0nHEC>Y+E+aSl}CMpzLNDsLPdG&!ENJEd)!w&0$maa(h6Nt zN1OwQ_ca_^#|Tkgwyw!UUxk;AL60b{xUYHyw9@@za~;uFb;L6PA`}UAt&Rbryi#f6 za8&BUb)?;9HHC1mNe<}})+fd$$J}eu*x0nMdITyDMFxE(>xpDvg>4*akNc`epi2Tl zTA@qoh^=xGacwmc;?O!qh;uWOL<9$SNqE^9^oY`GI|Q^+wAfrnbV(iYOn?YQ27Sed z@^Teg4y%5V`fwd-uZD21Ne<}})+fd$$J}c|Px+WEBixHs@ce<3Hyu*Nw2edekNc`e zpsxbK<1tqrk1JlLPsO!WN{GWU8z9cfOcD_s+$G^<96h46+71D&6fHK_5q(uhJQE;7 zkwITEqP$XR;;`zauS!L(Hu+XSc~9v6L8acz|n;?O!qh_f=2L<9$SNqEVT^s+j1zt>dp)k?2K zpz=U)9nn{H#L+;6B7?qSM0uss#9`SJg|s>Wj*GJZ@RX*(q;Uh>h_Ndo_e*6_Enr8R^e9?#;vz_G*aaa78S>jkk03aiOm6 zFRl2D8X$~gkX7_m#IjNAbt{g_Ox`2u)WvwjeyZG2tyauYk<=5Le&Q7)Wm%P%bNgt* zTYqbps2BRGGVw@l9V0}Ib8<%=+*dbIy8lB2T1xNDcNR?Jb{@U}7U5alKBwxrSx zLi#F>beTB!Agc}$Ss6OAjmo*NZgkyEAGOg}VXuZTj))Wpt9q_K<&6!BD{Gk~N7$<& zl4IOgeO&aF?k}yluLcO?7-SV)60uS%a11J+MkGgNg>l!uVyz;s@fA0`^>>dbFL}2m zm2MEyC2^$7#JLAqb%?4qvz17ejr~+h-llNfEqAriS7EP)unZ$oAd1I15LZ?vNsh2r zLnOzzull$cbKPHBabFD(#xck$x+G$yR^S*^K8;9@%1X7;O}nHY18@|#`})rwQC{*k zOe)MV;Q8tX*WI*I8{;4LY6#0PB2iYj4szV$uaJ$ zJ}$;w_m@`OR|AA`46=$YiCC!>I0ltZBa)-C!nkXf^kV>y;)b^=+#$+K-fc;x8-#R8 z9O*L2UXcCUA*$NUHV`~tUG2J?R%&DX!(I(x8Ac?^3iB1my@EKxUJa2PJ!vgYGeGvUJYSdMI_1!^A*S4B95?ELnOzzull$c58YoQ$bB_H z7{?&1=#q$KeHGQR&2>y8lB2T1xNBdrR?Jb{@U}7U5alKBwxrSxLb@c5beTB!Agc}$ zSs6OAjmo*N_PFk*kJ{*~uvbGEM??yQRXx|A^2P?my>!`L4UrtWt~UBA?9~vKVMGdqRULiBaW5i{uvbGQ$GEThxEOQYUs`cr4G_jL z$SS%dVx?B#7*sxuNRG-1n#E~u&=N@F$A*$NU zRw7w8_ERl+o5FRs+|@>3g}oZWGK@%pC?4lP-1iYj*sCFuW87DLT#UKyFRi$*1_SBu8bXTIr^J)sF!f@p&-CrZfeKkNB#~`cd zl8BXBfn!klG$J`FD~zIc32PN`jjy=jt-pIjdC5C0sdR&ozKSDVCeA&`szX$@nXN>! zY_cEaZ3@@ja#tID74~Wf%P=AZqIjGGanB)+uvbGQ$GEThxEOQYUs`cr4G_jL$SS%d zVx?B#7*sxuNRG-1KzN@zDJ>g4|aFgmDbAiY|#*sTDW| zl}{s*qq4#%YG1Kd5!d*N8{Yc6N0gVm+mcE*2#&$kidsgvm+u!_R6um}Rm3uVDz2?YLL7=3A#To05)mAHeuS5C z^a!aBm0SJF#If9Vue7-itB8-Jomv%#)iFTy>bmOcjZM3Rwd!kH4dGrqPKd9+?L8S% zl*gkoyfuVZ%PLsx9C=%HB>U;?GcN4S@x$9)yC zY&IEv@~AH==f3)~>u$M+Z5(Pl zx5nQNfeZsdmHQ~l+Y}xvIe?JWNQlFD=K8Zml$Wi965UhYjtDQ~=nS zXJjLxK#*3Luj+_%0C7#jp>>Q9zYjTRe0GL^oY`mJF!PVE8Q zt0{zgO>#(Iu|A=6j(J;$kI6E^y|O+*SJi6Ssw1Id+Q#vTX3TlM(j&;dyc{hZLt3G) z!prnw#8$)MHB?p}%hoc94o^EcxJx3Iaa3GKlvdjzpp~M%KFvipTnFn2$7S8ze~bv- zQr(urd00iRHu*^1DTK$(ta^m>73;&}Q5m8R;}{@1tp+x=MJ&^&;@T=D#9_+Db&wGkWhRLj^i_BnN00EDD!y7A%WYJyXt9IC zP;nisBP}8nq47W`GNQavY2t7mR&ki&3JA}Al0&+L_2KcT3^f~U+E+cI(`wLHvYtq& zC~rNuZGENoxUYHy`YI4qIj)0s#5sU?U&Enwj1c8z>zZg*!NK!Yc*&9UvO09Xt5EUP zO0Psft3Yra(N}fE(LjVEgT7)!d8N|CVcALUtd*j@+T>dSAz4{X!Pg_COCoMJ&Y2a} z;hHTYP*NC4rzi&?R-m(LkKraA@=qqP%SV zl8L?wFH^KfxC#|tEso_jv{JN>jr!?^*{6=Qh|?Cf zvUN=+`YOC^40=Rq#WP%wfL6L+Y_22bt2*MD01=ABSz8LHmt|F6sWfpoD)r$y(r&Yw zLb%r?hja<+6H4cpdrcY}n_dTd1S$_jqH>Jg}1_lwPSL|@er&jg52WYAZPD6dqSIIQ|b z>ce%U-DWj~aIZ-Y>5{0t8|Oq&9X=+@2vi>R1%lPRWgRNYn-yZqm|GoTuZFM;BNAnW zF5$R06GzyqA(CU1G_lWZ1`Wl4vm3raau1uV}v;s=!D@IhcnQe?9_tj0VyJ@91`YPh=R6dPJj>;-W zQ2L6sinzvC-0;@l_MS|qD6*>h8iaI7Rp_>7;@pF*Iz&~Q*~SQRU)|`sTkdM3ufkpp zVOm9`Kv>n$R~%Q?GD(iGS3@MnxUc%SP*?YtR@_$ugmDbAiY|#*sTDW|l}{s*qq4%d zYnQNA5!d*N8{VdHhbS+3w8CaNR9;wb55$ zuZFM;BT^uW$2kyJ)-p+suvbGQ$GEThxEOQYUs`cr4G_jL$SS%dVx?B#7*sxuNRG-% zwbD)dsviSz6u0~O&mK`;wrWf$-5{h(szSFtlk5c=4@K&AkP%gFW*Z2euWq2eQXAtR z_G$>zDk4!Rdh+jvc8IH+2%T?5y??m zVcfM#SS#izZg|_6cZl+mcUw~F1|eM%N4iX$dyrL!h^!19*+%8uSJ%1jrjOd_tFTu? z7)L}3gjGG)pYp~A#l2?PUJa2Po5CHUyyP90RJuV(m&B1S6Xzae)gh|d%vK^>dbFL@g#m2MEyS8=4v#JLAqb%?4qvz17eP4=U_8{xWJ?rNj2!d?ww8AhZ) z6pwQt?xn;L_G*aa8242l7h|sbODpcH0m3*2Sw)vbtken|gUY87$x&Hh+_g*kF#tz# z!`l?@5alKBwxrSxLb@c5beUu?$o}mRRc&S)2%fJlaotTTwK4u-uZFM;BNAnW`HJIS zL>ytShDeTaU-fY@9=g9qko#(YFpfc1(IpWpwF1YW@@YhJR8|;8?JL$Q;u>FZ!&`s% zi1LzmTTf>U}b$@BaeKkNB#~`cdl8BXBfn!klG$J`FD~!8#Nk0bQC~kP0!X2W# zn#E~wO>;>7s9ipnuYy-jbm8=e;x|>#NWBkKj4PhBZB+3f&6~{f7IKo~H zksRZ`>f@p&-CrZfeKkNB#~`cdl8BXBfn!klG$J`FD~zJ{6>Al7jjy=jt-pIjdC5C0 zsdR&ozKSDVCeA&`szX$@nXN>!Y_cEaZ3@@ja#tID74~Wf%P=AZqIjGGanB)+uvbGQ z$GEThxEOQYUs`cr4G_jL$SS%dVx?B#7*sxuNRG-1KzN z@zDJ>g4|aFgmDbAiY|#*sTDW|l}{s*qq4#%YG1Kd5!d*N8{Yc6N0gVm+mcE*2qEFgwR#OP~@<;=Oj4dmwS@8(Abr{D0;a;plRjrn>KlyvBuhd56 zPrhx9NA}7x!o7UI*rXM8iN-R0q>hMdSrLcVP+0*XD)flp==v%-dW6?h@tq^QFlt%3 z?srAhPdDnT)GEAEtKyhKXyvSK%i$L?WyQC9vPivzkJ9 z?mV*Ui7omn_2KcT4B@T6M+nqWDwt=@K2O|Fs*RZwwrXW|U8ATI;ic7*SK6di^cB38 z5Z@!*#o;yRPmcABCze;*!9jfmFXQMDHMehvh`HS&xgwg2ZqZkC#4`aRG!)(3e~c(E zudn5Bo?+!#(`pF!n&gnNWqmZOxDH}usSe9(fI#IM$!*Uc^&30pc8!af+HAkV-5SEZ zJd$6#5S{u8Gd0Dv`eHub4k5W?)>cI#l4X_Sn6WSh4Z>&bTSLU$ZXA9s$*k-=bPhj~ zHqOD&Z97D-Zp&fW`I#COF4wdg0vQHhoP(K}cS-7_UOa+=9{1J2i&gOa!Qx#VGpF@y z%y4GcHL9Pl7~x(X$**>ZPJM-I6vefyVm{suq2~lR!Vaza*~i&AuG?OdRo-@DW~Fga zdDt`_JYS)5M#$I%I_s!T#FcYNU5^BWW#@g>WW_bDhCqgq71iMiwECzQ)LpJ)3LzYJ zMwJSlzy8$CXPGnrt=d>!pxX;U54S5FqNC4^+9`|11`AN5yGp@tYQSaF8RV;YRuIJ#~1FLW4;~2y{ryJjQc8%q?d8X*bs-;pg+^g zIa~*b7<0EOOR>fg;3=p9- zBZ$LMsZVCbDzsTmA>7L&4G=Q6tf*$?V~_~RP-A1;IY4-|tb%%XT@v^07B}uc-5%Yy zr8r0%gmV0spA~?FfN{))_=(-o(4&h#j;5w>HQY+;E zLRBaZt-uxLSg9NODk7;jww->a_H~$U!ADssYJ`wX3=vuN2=9_qv>(B?4&xXgPmc@;G(X`Q5bWh#&RfF(5Ku7!CxklEF`YP_J(+gux98(C% zJ-lqpBT{**#YfUk4!_I1HH3RP+V6c8p&Rv8R<2nAq33*YOd-lEl^%CVY892EuY%iB ziXWJ-TzAfWk|SoHZq#zj+d8b40Rokm3RSgQ#vb>gX@i6Ask^>v5Psk8=+S*UA4wZy zP8?oCW#zF?3izaZZHn*Vx!_f5iw?UMi?}*CkIrjIPLHgYU_Q z44wy#y+OE_?-!f2;`z#tq!;>%I4m=(D7~Onc=`EQ99>_j*AU?~ReZHLmfNUY&p}s2 z{dA+g%F4qlwJMG&gw9vs2%EHW)Ufibsm*E%;a(nTfQZ>gw94Gs_6#*Pw&<%I1FoY~ zP;c(5o8(->6GYg?r*=K7ZHK_qL?B2j^i>_Xd{4!_e9yNU4$Cb1iV@|Nh~VJ93NIUj z9^p?f6<;lm zsM%oCzUmQPEvum3U6OGp9JR;KgW+Y>mY3BLPcoH}T6`pJ>s`r~IMkOqF=AQn z;gz;|#7T8q4o9Uv=%qeG z%4!OM3~QX!6I*miD%y{rprs~w>+cc5y;ueFG@aD4I`SDuIPw`sZGY0cH3Xgq13{Hj zm*g`}#kH)6!+5MB&&r=I*(>ef=(;31^z1@bYWvem#aD}Cxs7L>KyV$^SE*ISO$}*0 zsIL;ytLx8gnhQ3)3ojLi8B$h?8X-JxX4NBN_JKY;9+e?7GL8YF(<&@}M~|pyob3>J#!<8@ zqPgfsT@pt;6Ckvv;+R5|S1L_fIciwBjm>gaQwYy}lEb?s73J}$3^g`3%vU_ls64V7 z_f!xdx-QA*!5&f1INKrI%Q?KhtfTrWwNefsO1JG0<;5BTp}*s**4Kf)3hrA& zcc}USu)!D43>MqY zShbA3LHJXn@Aq#3)lWC-t9-6e4j`mH;+R5|m(>xG%3CcylD5^M=z7NKIx({$BZ`> z`A{tzwFZG_97X#xRb~~}!8+n-AWFCG5aq?H1EIe$`?!k33`yN7gy%lV5wlM>YM4u6 z{F|%>2vi=52->p&&e-!AM=Fo!8sG0v0Jny~bAqD%84l5@OY&JQywF$iT(TWPa?hui zu*ZFs96h3*)w)h>5O~H>v_Dg2R@GOjRd``MLbvS@y}B)jBBQUGtXxr_yH-QE7mqBm zGLD#ix>1{`V+tW0If8DRr|G1YcQu|Mr1E?oRJ)$lx+`Zs50;ll@@F`WtQ+-JKI1S# z#)dei5as1(aB*~9k{mt4pI$1yS{%!5JmV9D2tc)XOA0OM~o2X+7(P<@U&mT+{H=l8&@_fcoyPnm$zG@J7vIqoK zPJNZnI2G4aAP%oVe|lE_+{a#NPs~?S2!DF1_|74nky)vYXPmIP4w|pmsjrGMi4(R!*S)vaDpS|t8UcLSD`|~F+iY>Qo-{F?(#ifma`L2 z5MdjK+T-WJ9)YL3K#*4Gt2*L*Kzym;u*|IQ)5{bsugmv@9UMGg)sghFI&{B3y;OX) z(knUej1vg1Bl@b2I2wphB+gpn86e7wRab9p+9j-2Uz3j$y!H18;a-y*(j^hM8|Oq& z9mX+0pz=^85Ip-x9r=tCHu&gSZ94>>?i4+K9;_pldp?UuR>a{o=+E@RnD>ZrUj@7A z)*!~ugTbC0c*fEF{!FF0=!V&+jyMMprJMVY5#{CewH(eftei89%8O?i;c+K9yh~D_ z7@Hh(uLjHCPgnM(b1qrS?@!wcgPy1D-t(W~2XIM1+h z^i`MD6vE^3I3X)T#O&j`C*MRJQ;1HhabM*#j#M7cHO3cDVV*y7^CNiXPz0VV!XEck zKI1S##)de&2K|}rP&7FLG48A6sJK3_&=ZSYXPu*Bu~*t$M_tuYD@Eg}sC3iFx=|-4 zqP$o`_xGQ1RqN|W66IM*^iuKFN-vCBR<3;Qvl?|t zY874>k3ef=-A0IB-Il{qtyWPvXDGH2#1GtGapfM@BMmrWz7j;{&bAXNKHyf8MQoBNLuy}B)j^SHWrx{J!uS6x<92#?F-gscn^ zvrji_6Lm}>I<2A;xvy@JvlCAcVH=0qaeT^2vi=51fuJ!d>)j_)dpWYGn7th8GD1k^Pr-~&x3Wu(LhL6#Njm* zhsQD%^64cI^WkfyW@C;Y69D&Mpzu3WHS=qHGy)e#=R>d)e=+$jG9F_Vc2dl6e z!o7H$G&VMUo2qnAz8v$m4n>U+?v;v+`zoJtr1E&KF}{iC!SJ%m)y9)W*gPI_RjVT$ z*RmoGuR(vN7t~D-QAF+F=(;41a9p?j>80X3N5x{Vw7HJztJF%-cq$4-LS5q-Aj-?@ z^XE48#-?{mtkobx%1TiqgvXuah}owbHS|@~gp7=1fI#J?f@cGqvF8(u)RfOSYWp+8 zts(Ga5eTXr_g8hq`GAnDh{J2ppXnvBY@EX@?cnJ8Dxae&t|R>ErQ$nBcqIp(addzC z97Wf`)GE9%9-*5?)@_97)onQ(HLRR7jLMC~c$N_!*Y^)Nyh~Ei8s|jN`C(ZN5E9oa zFBLq0QuR(vN7Zi=B#zX{1*H_6Q z)iwxvVzC+2Il?PB@QkDT#pXI__VFX02@s{5M%In`YEs>n!%@S^IYY{73V{qGs~!=v zPd92fKVtkfHnzA9rlM6XtDxTf{S}@d1QE|QRv$g9ZHK^> z?GSoSfFtbCs_UzK9_$hR^r9TwA@Gc&Xjde&s=kUNrf8#8aTw14(W~2XII7jEs!hJW zOJqJT-Pz0c4>)4>fucMfl_4s(tOf|LHu++P<1V>Q&Q3f*gl%K4_V{_QN8oud5L7wl zt2%P|o{D?s30z@bh z>P{ib%j^5UjC*^$tz)(S+!q^>BqB*}x!bmKXV2GMsT59<;&fC)wP4enoS$D_lpsFee)gc|J&y{%`$ZH-4*X$Ws zvDU^@t)9c9_`Z8Jt_VNl6I+ues48&uLwFQ*q>mqzDCoOI83(%;&(Bq5gnAsj&-yS9 zuP`OnD~Zy*k-l+!9g(|RaxjneC+e{EUL_V+7 zK>&yOL0s4UphS^ck0Kr7$h;z4#V5AbJr5ih8-8+1E`GbzLBehZj(qw+lu zrh zY6z&^yojuYBh8g@WCZ&*Qr;*NziV7Cuhrcly7X#cu1vW^>0C+QG|Q)Sb9k;8W$UOTe819OAzEFLbVRyKJQajT zS*HUBqpHfS3(Sp?dg%!ld!-c$U*?eWD(#x>Icw7V_^*B=iwITjU7$!(jjOTVUGR3Q zgOD|G;JWSyGeZ5KAc77(ef$aYDdM(*gDRuBw;}_Nr20s0vXvMB2@afVq;qX`ijCpo2In z2vsin1QCC#fev#lvR1y})h0ryA4D`e8S9fziFq}NA`Yl3aIgmaB!!0XDC$VyNORQ} z!S2QLGl%4bzH?snIC!5u6~^JEKh^w6iSWL0d>!FYtgqx?o~rU#VV)A6#6mge?aRSa zf{3)whL9;SEfqxSl_1iTn8yL-;%kT_c(sWT>MRgl_k;c<=H>T>(XIhk7Ns4PN(>?0 zO>-se7NxTryxK$v^*As+(h;jFoL3NKRVl*zHW9+3SRZFn1pce14|maYL_Sfjs2V~m z6uyk$DY1^q-sp^lUKvLPp~|IK^|>;S103RONV#|hR;(=iL_G&0)T_xl=-^$nT-2Y4 z!1tfgn!SebDC#sKgd1Uc4e)#az5rkArCTR92PGmGw%ZbU&nT z6CrYUOAbWp>B9=E73L}F+D_^8S%t!v5pw!)-woYI2US%;q+ZDmrk`r&?w}I$IJjm9 zz>4t`FRG+Ks80|?&=Ka!yqf2wz6B15Dn|7!{^GB zOO)=1^bIxO6~B>jF6&!F1P(@V6m%4xM76vwtLleHe3^r%#5x-H1J{6-DZ%`Bp&yJL z^(d>VGFP|4+o=vh)}$QQbw8L9>h1&)bm)}$ld+!X9qZj#aIgmav?%JXM;Ssm;*>~K z6~XSs^D{?AsK>$k+!2h!OQ*!2a3zY6j)eWFAv}upl^o1dRc@LFLvU1I4ww>Ap7z-g zK?hY;L8x-+h#=y51!~O?%3ArvGk9llMeGGaodu%ne$byVS`koH;9w2T!MUgl=3WF* zpDSS>k6`!W`I*CWF+x2K-e*sRad?F(G363vy>gCzh}_+hgHhHWouxw4UUa7~CDB=Kp zfukS7qew^K$mf-EWCXhx&yTB^i`VLL5Y3(ny>l#L!ffykhQ!YL_$2g z2T6y{SgMM7#v{0P+s(`&r%&3oK01h_f>0ga1+E4^@gjEfIG|R14c~XKmQOhK9Eeb7 zA?u(c%$0eyh=8gD&D9i>Xb6wu_oMCyB}(_es>1v1UXUYAV!@#vM-Wkme82K1T!|vQ zZ>FPy@Tk~zMNoBJ>wDB;Ywr4F2#)H@A?H=vHJz)_E9KGiDk4;Q>TWu(*qKlz;%j*A zUMe8O`nmYnce49tY9f z5k%k>&nxYfMCpD=-#EUGKuyXa>(DFaDSPE=O~(KTt*{S=oIcu7>2x0*R8<9`I=l;9 zzv?F)=5c^S`~cst`$37)DKTe(_u0v4_IO^Y$B`(~0aXclB7{frDd8MxN`&2_jKe+7 zL8N7?8gF1~}7!08m`aY=+;*j%-_tyCO z=;((4j#_uad38O!Md~1AO$c1q{a{9@9~4A*qjawP$ym?xj`c6G{ru0#>i5$GGo*AX7Y`brMwsVX;3gCRJoF9*z( zC{O!rh@gY2svuOkbVLyGry8g=k0Wd43tnv^gt`etvxl?p%FjW6LbXd?(ib>b1AbbR zb~GdEb0zFCFR$6Xcz))9o)if6IC!5u6~^He=E`~{QPwNx=!eMNEjbufRc>7v48c*H zse<4sv5v~#^wB|8RS=Mu5Z(n>jVod|j{_X$Sa8jrVKRg|3qi=96UygGTpaT$0;&oe z{SY3-ZyKQMb7dSE;a)ADaGZeYzdn&95uP|5ED~ZzmkiKzz9g(|RaxjneM`x+f zG#G-T;?8PS#384T?t$;KAwbh)2;k7U3d-~8qYeT%%n#z49RMp>8I=!bwEGhAIm0-`=wwg*v%cftFFD`Gcy2MBX4xUTy_iPE_; zKPU*R)rkuabz8Jbe%)pRz!H; zFb=OUiG91vnK+(5@q4>>(R5JX##hBW;}Ke+?^D4c=N0d*q4oU;y;2nZo&nh-BK1lp zF`rlJAfOWSgSckT!1XH&Rbn2;qximiHA4AZnOBPls5Wr)LwFSFlT03stN6s$I#;4; zGK6{@qO_ytUIZb%N^>Rbq_#k?d-43t;kg*09tZE2J}S(WDVHegm2(ge?WN@< z9l5(D2cxRWtqX%8I4bTF=GF^OA5m_#>wb8J8jb(f5Ukep)#u7Q4&;?@_f%EzYH1P+ zggOgEyI13i@Y8Z>cO@@X6*&4KpbHsMpDSUHd3nw5#q)Djl2>=ll;i!{X>gQBEYpGakWt`F@2%PM@@EeRNP&6$IoZgm;1K*Sd(^JPyt) z`vJaR_k$9pQ(`^=@7MjHKZ$vH+MR57AvlUNRS%vj}EG;f`Gg_S3xi4)3N=4fRY5>rovWZc&6Rl^$Sb~vstR6hB7`~%MA!YGKZ$wyEMc_j2y-R5VwA0= zyJ@caBG~D1kCZ9q;x$LvI_zMWE9(`^RnaTwAfE93O8r^xF5lOB7-jv@St>LQhDdxt z2XV;hlXgwt57AUqRY3rU&Q(CfDY*jPPIVBnCIqhQelR1{-3cP-&?)gJV?ED1*85Gt z!K(4oqNuwbWeDMjb0tw#1iKf{&m0+{9tZDpM=%aAohyIBl_)|w0)6B7I>Mt^U&+Bd zRpq8>Fa$^S<$x&>C>6SHezxD-f*7^D~FA8;2^#`>+-cLdoglPnbgy-ZzZKD@ndQ!Y`uAJRAE zz^jJH-7Ps7RaI_X7!1KtoT-A4(FqPpK!%b z)N>$0orSE!8x?*Iii?YR`7NmXLC+PVY%LsVN{j>FBCQJ7>|VG>_=#7{#cTCAf`~f8 zd8NuduXRM;TFf5is&98W6GrQWf5)jP*SV5R8jb(f5LzK-s&L5Zqx}&+ovY9*<Q9*bVcckLgc&@UJSYfD&`c*-2-o6|> zSJHRe8=b4rE7MXzq+S7Y0-?@A5J7o7uON#0<9Yd%a1N@B z>f@>u0Xry_7(zJGT$y*u2zD=?A6GFKuhruqnmrZ9;T2CGeo`X5ZyaAocvS4VBABPD zoccDts(uKqQ24@r5Q3+~IvV%GD=ez2AX2X?bM-5DQ`JGpnr0W*bw8L9>IVf8bm(09 zld+!X9qV0MaIk9pv?%JRM;Ssm;#^5o6~XSs^D{?AsK>$k+!2h!OXtd;a3zY6j!1X= zAv}upl^l$!DmP7oAvmfp2TX}5Py1|$po6NaAXK?@L=f@x0k!5>WUYMS8N5%pBK88I zeh|@hKj=>wtq7`bT zY6y>tJ>+=)#BWQnSFW~J74wWoaP56LcuK6J!e@KVnu@9_2vzP~;A#{{?B;QRL%!Yf zefMf<5(|Vn3q-Rc)9mrQ;wLdL^-7%HLo34%Flv#N%^i2#>N(hh8zt`fgQ4O=VU65FFK) zLr$NxYkhQZ&#YG|itoGfG$rP7K)JahT(i^jKH-Y$EfDGl1rd4`ro=ps=cTFw2WxN+ z_I)wR*20nI$~a)pB`+h`y?B1+kSN_jQ;zpbuNLOYluML$TF{souNoqEx8z_HcQ+}I z6^8EiLvY@>PZ+5e{?;J&C+>$=sL}Xu4Z$59*Ijy>5W`cg4g&I;AH=nLwKR$52R({2 zv4_LVc!jw#uND!YFL3ljcogZ7OdgG^_{7$<=ZI$aG8sZWjv&GghAA=Sp4WN^e8_=U z4UxOcUFUfI)bCg7ghjc|m2gjnNV^$yAX278`fj_X??>pB^3)KiSE4*l$;I$?s)LX< zap1b{2Qxzbpdf+{ohyGb*7Lk$z5gpXST%lH6m`_23?UrxyppIYg58VfXO4_ekAwHQ zBN&I5PKiI^N)#a-smxVGcogd^Ihd!a+%ye_;HbVFa9)Y>w9keJI;g4&LY0d?L8Q4d zj|0lh=;%j(z*)ve?@RL)bNG-0_S;#u{DxO#BYa#-w611zvm9c9_jYAN^ zk*364k>}-ilidsHu%A@?M5{uCdK_6t9X?mqtB8<}g!eqml_5Ne^|5bL(hEb`5GbM9{%KvtFgBaosJa#2gDK7hgjh!K>vHPCW-A)LF{49z{C(_(6%%J+P|qesC=1TuCm@%TczDI()9ISDu%vbq<~o{EWF`l&u2? zqpHeH6L%dW^}=st-uEhB=HR)q{>1&jb*Te+^t_7uoO&gbn5M)$4&)VIL)8YaHW5Po zAfnmHm};LZ^J)@BlMj0nI9LOI8oPE>qNs0yBcE65qdYGo*u8ju=8!1kP>+N6*;8R0 zUh(wdCowNq>m229Re@l&u?rZT zro=oB+Lr?5PleSC}j7l|&JT_l@K02#?|}lpM@s{n1$}x-b}mqxy2ld6jmpj}EG;f&h+M zcj;V5%vkRNcstcW$eIwiuKU4^P(LV$%3S#q=2OIZ1qW;JsvwHG>rrDpSqn!zul$Kc zkq*4i?#1&nM@Fc}5k%A>KL`B@b0|VO0(_VmFP+4Q@Tk~zj^|JOsTO-xsW4QMO#^D~FA8;5!vyw9ErZ{SB$c?aHP314%l<4oe}KxJU^~tt{7$Os3V+L z>b8)B^I8w(ttFlc0yQN>;9wNzf}X&WYJ~$Jv_j#_2%Zw_Puvf$5UbG(zhA|UdX)7_ zl&2{%j{^wt13c~Q05JbV2=xhwhIP;p=E|IxMA7?!@4RymkI$7MJc@J#jx<+&5$5~cegeM1d+)eyP6B?qH;Kh)QXa-FeMRX+sh zjXR5xdgY&A9K6q-3ghq!Q)0c6DBTa~8^_lXxw|C?^Hi0` z3Pri|j7M-@zF*;x^D6CHA01Rx1p#>p;a%YRwXU(=Iq-I>gOD{La9#I<8KLe@5J9<~ zSN??g6!F7?gEio%MNvmRYOE(~;fSY?Kd~s%f%nFn zM^%}}0S;U%hj<2zn+TzP5Ycr%=uenW5m0U5ARgKoi_(sodl7{6D$SL!Qx^(Ea4fd- z7G)f&964Ye_9IM*^-7|wSI*)6Vh+w_osNjW!KkY8Sm6MO#Fr5~CDtF=n^+aBu^PQ( zt_lRJHGP6eQ)2E8ILxu&+P&ID2=#-42s+|({#Y{ZPjO%FPer+PzwuD|1C2#hL1UP@N4%UF5 zF&FK>c@aTKchg*9lO-cUG$+gq&Brw}$ScqaQ+bco(=DWum<1aX_v38opomgAzq*ajnim z)}dGN^ihu!5m1$&wVoQnqxg*BOsrUO@rkYNjbisQ8A3e{^0BAV>|w5~R}!WBA$^+& zA$^O8&?~AA&RXxH>Cm}KRrNz~?Qv(dDniKVlXfju1?$NWsaJx?r;j=a&}4oP*Y4FO zLa4J4MCetR67y=Fm--esST%l9PYeM&C{czGj(lFJgUkqaFP@({BuaP9l;i!#j=c1`C>x`4U$((hLhp~|IKmAU#p zyq)TCWKA5nuKU4^P-h{Cpj_w5pN#c9?^y5jf&+Eb5FTX+;fQl3QM3mc;T~rqgnArA zb4RSRU0gA{_DZ6xSI&X4I#-^Hl`Dt$5To@%cNcplI!sep6{2bgt*{RV%$4M|+T#wE zI*6l!P#xX{t_DBxA|2*&pc303mI4o6j$#|j5P zaP4ttH9!7~r;qpD_+nMCo(z$CC5SX7=5au|_!{C1UTq?TItxUzBh#wl>7!mvqDTkm z3mmK(KaE{GDpCBVIY*ijVYevbVE5wrnM2r(Lp=`OFMU*)E9;d+5r_8;Gvif5cogd^ zIT%${9xJTRRiT{o_T`Y%C+%7v9aL2Xk$MGaSB)!TH;)6#&9UIR?gu4`)Or+Ws{28S z8i#!i zMMQl{vW{5c00{MizE4~ef9iR~duzKEtCA^ER1Kki(7S-qtQuE5)#@Oi67e;BpFP85 z2z3^ScCSV#|EXqwyOSu=0af+!gPw~|ALS5)bT`eFad=)vvwQK1aAkRQ*GxI0xg!{d zSC|rc67yOQ!+z8dxw|C?^H|@lD(As9)LEIti0~*w2uGYNiGn8< zMLO`le;1tyq2EOX5p{I2HqNWP^1Q6cIY>tZftr*<)`5dj)}N@u*36BOdg1r>+$*iH z4+qSZ^eXLhO$YMeTxEpn@Gej!sm2xMvhSi$iG2U$`}Obb5=Clp%~6I3y$W+>-;g5$ zsuDETf>#aUQKU~Yc{Hx#6I<(Ch40j9uB3PjR&utB8t_DBxsv?v_ zzN2uYPNU`0xsvY>q)C3x4}dU^+P6N-WgPr1gYWaV0pv)NSX9DMmPwR5%5v#k6@7D# zNf4w1b~g2jQDv`S2aQ7zz>Sf5$y{X})&<^8jmCdvuB7j#$+}zWs3D{(LxlY(=Ssda zkS6(#Vr%JcKCk%ac8uaR|J+p_jIt*t(k&4l6+42t^@8(Cm8VK-JBX-^ zkg5oc>#!f?Ty^gDMG3;g!d|+KKvIY(j07f`3n}mAIbrm%9bg z$|38)5XKR{C)!+%&&%Jh`M!Tc_PMGeh@(;!@mMa>k^ANxyx;g)MHokkU{u+w$bnU{ zCXCbz|MG)Tv7;On^=UNzi+}BNg;t?;w^CI?NL7Xi`$7ASEL4?zv*b1Z#>3Wt=4$X0 zuPQ=0^0!yQS}vU{`L;}&FAFzjuOGBvR9JV`o?@1sh6Ht(8UzR)$)Cf#((v^ z;=Y?E>u#kgIj1DRl}}00E9Jm9*f}Oa7)Oa;n(+@Oi7p-)`V6Z?Oca1!L~bEGnj^br!OgJ&)h7DhTS8+!uuNFo))SE^x?tFobag{}JXY=T%L3 z-#t#8s|tcRDpkppNG{s7+y&<#<^2)HQ6d;s_9}8Xx9(jH;Zb8f(NQ_CjYHN!#{>xD2>zp-t0FIZC+bM3 zD$P|!5J#mdpOT_i%283?A7LD2ufmjARg#zH7^`BwV$b0xXYQ_6<()1NJSE7HD&b6( zsuIH08aHI3`sou_JaOzZc&*L?(9wBKjGzh;QM!pRCFa#YZC*=NURha*AdG{32}RTH zv5uTqHQ{})D$P|<2}kj}=^W0(Pc*NnwX@4PCP9#nvMNO2g+JA#?=i2=m3UE(<o(f?xrZK7VdMTGSL%r5TMCCm8=ItC|`C(#Ks)zSfE1V zkhO4lWmSZ6urHzLa;}QJ>WYxVJx-ddj3ACmRm4NxEqbLK*emDo%Bl$CC=rY*l}lco z65+;3y=1Pk4nuI)H5&hwDM3W4#AX5RPlRx_R;?h?&p~q#fG|%b>%kCIAtFjQ5zi}d z6ROrYU?(+7IXBu4>2lWMKEhYt@8&>~{u05QkJ4tMVx+lq&~Tf!Ij?HM`|iBrc~wCWN2My6E6GK>mb>5_)ZzXJ z<0uh~;{AwwkaPgI?p+NLD|CGY0;a?j@|r8LSqS?<90}q3Y}E=PO^JCNK$sVi^PhK5FTaKO0UvfiO=BaQ$Gl3@eG_>YvU+& zMIL4M<9;-VD)WL`b78U`3_<(hd{mXayZqj1?U+|9l(j0K7(pDBs(eZ;FIJ))vW`0X zBaEZsym+pxKas;V=}vG5#&=h%5*>LG<@904%YEZYYCA|A3E^suTf5t6ZS=%E4j{}~ z$a*jY^$HQC$BCzp`aw`@9I_S;)_|W}RYDjCI~j^Dr=-ZMUJW_Cs(fBW4vykC*g2es zpJ-lDOD97`xzAP6-N@lpAqQT1UTIa4Lv-XRkrPf49%VW*f~Um%p!dgSA?ycLl@PAh z_DK-=yi#8S2=i339t@#-9-J3fgrCH2c|k{B2OVJ&D^Zq7t19QJK&U3I&+mD8I=*ghI1`y`eWG%f)lW4BUqlhEBBI4mE>Ty7mamYIEM}LHBivEN48@2G; z897uFa=2GZb5&HLuBcKK@i2$xMdfK7b@WG&j9K2{P-{a z{>l}aChM;EN>LdhRT-l02cLlVPCW;%)r-hldKKrYf*=mLF9_CvpJTn4_tC&1>%kDl zQTKy6uWG{k?02Z5Fo_ieaa5|3DUn>XYq<-~;XGr#3c@%_1f$AcMGnt|k$T}I=I%!2 zyqg-0|KgOmLaWfaTd67`q$)#%{b-blsxprQ2y+&)1~gYQAwoHV^Kuk(fWxBw08Pdr zYvGs#VI1z&;^~v~s*l3^>~|=CIafs`>WV5=`CJvfQV#5ub2ty}T1JqLvMNO2B~xNm zNnYz4^KmSHW`yK51b4ka@RT4&s>Eg?><1!c5)I*MZD$3MPaky%kCIAtFkT zqu-WdUQlivvJN^XKo|!*8B$zMNs(7IA%|C$CNU$3qf(X6m3cr>YiE~pcx8MVXeHhs zyC0M@igwDXiX5T?_%Kp0J+IUWdlYl1{tQb!FDb>KSeN25$Uaq4j( z$~={rbx7W*qdr$zhau{IQ1&2I!rk>=aZP^0sULK;xqI45st}HKT%4^}E&Jqt-rLIU2#u5An?H=Ozy^9F-YKZo# z(p(jlaFk_=RS^$A(Y&ITcCeznKZ10WRq1Z%wP<;bpxc$h=|AXI1^vK9{NQ-6eU z)cs)2t6mN7yH`tdRaC-J)I;$;+9gKu6U~eLN$aS?=c*EAnF4~;^ORUskwbJ;&a1d< z9%VW*f~Q0j#!74!a#aZ-Rn_*RoGbG%L~f$I_S`!oUsx? z7)S6Qw0p=z{VDRQ3q!PfoHSP%K^)G9nehs9RVY^utkyXuK^RAgU=*J|?BaN>9HJvn z2~T3yL8qwb$OxViM5IcL5AI_%dg0GO?@5fZY6X#|#5@P|$DD<%2SZSWh$uZym=eni z73Ou&F#*Cj>V7cig-W!$p{g`jMJ4KrBvY&^oIaXY)DlNUd4B}yK#sCkxQp^r&8mtV zg2+?Cb7csR;*+TE2VEgYsq*nUs4AW-{456A3tyR(Pp>}?wB8O^14)-`|u8K-H$}+{Od`b%C%7I;Q4%&f4aRt4ec~5yVlc z%BQ60m2y;+_eU6qSA|;e((_7{OJ1E4;pSNW%m`6y2+mX>D$`i+et6f^LEu{bpsa->o>vtF@yY#AmCjYndvD;7^v6?RnDuL z@VXYq<-~K^^XoFpd(zDBh2_2T2ET>)zE6u|n5ZAYiUsA+Na- zn}x6+#E}rb&sMD<(v+BE0fc!GSr3MwULnGr7gvOz#BO;(Q(gxhVG=7*mPxC!9#ek` zgnBjP^QzKZWd!Mv3S(71B}K24qoTY&!Z^Gt>=Ish`s6)O4$)DctE_`2-#g9O`4dkc zSIBFwgt;qKC4{TBYIQ#vWuhnMaR6b?Le_&Js8@(6Jx-Vs%L|(FS~#$#2@u9n_k%gF z`Y62bRi(KqD&Z)8gPnt_@+m2Lr5qLI{Sl<2tV(x7=E|y)ygDVqt%kDZ=gH%QDY3kuJgvFVRgsRgAC1<=6Q{lgqRb)5T6&cx(Oi*7S*F-s;^8Oi zaX^Q0$a*k@>geMKb6(Yi_uZ@I^D0)QuBcL#&sCvZIj{@PfxTrOJ`Ki4+5MoLQDv_r zubn=eN%yXX5VeM2eFZ{JA9Z)$pV|%*M?$z-t5$TRDKU=&2y;lX9t@#-9-J3fgrCH2 zc|k{BhwjD`j=c=Ocj`q_Rrc;$ly=lKA)h<1G*?9>>T#sPSe4I}<;6+>L42|v3_-mr ztHLhfrKgW7j~s#kK91$jjPR(~kpdy7k9O26;eGO6DN4VQDZP2Kd7=n5wnFN7V>6FC0w*?Ma4~8&~x*yDWRTJK4ze5$-u8j362;!(zC37XYXqH56 zTt^-K5ys(F*$#Hcda+lL!?`t@^^^#Yiuwu!%#|zTHCMu!Dpe(fR8`xLMwuv=c^p8P zvyip)DotWWC`WK!q?&k`L;pSqnv6r%!Z8WLIO=~N%z4#E;eGcw@w}=ah@(=KPf4L% zIj~pGK|1;)jH5&_s_d2IrP&o7mGdg@nn%&ZNT)HkUU>SrLSAzvHVa`t5S0%kDzD@3^S;)?K-*ex$;%Ilybo^a}M1YsQPWGFxF9&_Zp>ecYRSC!_f zs6<_n^I>MZ^xKl;vNK9KD$0GXita`ZuZmgt=V0Cg<#29|=E}x*HzMkO&=vA|rB#jB zK^$^kse|+=42fxU7LuZ&NF@lkd^C}&jJE6Ho;6=%Xoz3}^0+%-{a2=2N@ zV;^y&9susx((cB^+g$VpYV$Pc*Nn)wv2BURf1EI?Aea zH}v#T9g#y2^|{JAbgtyS=BLW!`xST5Dzxr;uN0*xoFaUmZJ(r9@w~bf-e>RtR0*!t z56XHl1XU%O1i>2cbF3Hh-WWJ!Js83`>V7ciRZV!`Jx-jf3W7K)RmogQF6)(YRFwBe z7>8G7I|x73Vy`4G@j16f9I_S;uZ*iw2kB9EU#qf?QLl=;P>JqGs4C4>MvxBY z!;0|IpM&^B^NL!XvA{72!Z^xaG0GIiyio_NF;Xv?tE|Hi+(V7VfAREjg}mlUY!=pCy2>|R=yX1{JV2zP_=?SL@$!iF{ zuhICgo>#1p)vEIGI%)`yvT9`q)0CJW1cW&YSr3NLJ=)#HG2_AHso-Rljf?Zgrh7|tjedP=#_F{ubjgx<6PsT?0(>2RM{)Zt5YJ} z7^#<@aQ&3?eT~L{_4^ffF;>FdrH&fH)mpWpBhJhsG~o^IJ_#|cbt;gtH|Np z8clni5FRzw6CF@tfq(KV9u+)4ez`2N^@0IqOM3X#j1Qtie4!P_R2X(M}GwAD62vQUNTo! zmE@(_6-1sAo-0Fm6ituZ=j{B6=annuwJIO4gQ`jhkFuSWUZuG*&jAQ?7P1};LA^qR zJ1?#XKlwdSj{};FL)OAE3Bovn|FAca-@(YCz709Nsx((cB^+g$VpTpRMX!{jqP#zX zbd*)0a=i4sQXP_4=SsLamOnE>@*09O6$m+fxQnb-m5A!-f5nF@rQKHNn|-su7%=au?F?+<6HRFx2}*0^N{ z(_ERy0faduSr3MwULm4%6Jbg$FX+f?;h;V>_(}CvqU^p_RnAp`P#1=LUR9c_j36CS zVXVrhr0A7$RFwBe7>8G-`>v;tx;x3Mb0ypwjsIqZs5M0054u7=uecKKZlx+Yuhc=h z+Hw0qyN7j+^?L9=t9Qb+`axOi4o-}qUP-37AB18K&3kp=ko8~)<)%Ym8ACxny?3LuzDG_dr)JxB+ ze#-g2M&rMFUU3&=CCpvws3BafRVzBuT$#rKggGQx4~C%qKt$;#;(4VW2X@UkWF5LY z0m3-g$&li5u8O=+iS9?JDxX)eDs@Gbs(h}BUMWXKd4B}yK#sCktcP~WbV%N)1J)R+ zm!4NihavdBM&rMF`fwL%uA~y?u2jW8Ik76+1MSs>Q(_(mqRb)5TJ}6mVn!$*-WLRG zz)zlP^*GQ`x!JJoJ5#INz(p(jla1_76&OthSN($x5fxU8$Nf4x?tO^l$ z>FJ}rlDs-4!p*V#nGurL5S*z%$oDH&$ZA#jcpZq;6HXBxWjiZ7n5M)$4j{}S$$Bt^ z?s;%tToHcqd!QZ%lpBYvg<}$gaj-9;XnS}0y^9>`)sVwIPMWKt5_LtDs(h}BUMUCm z$~n9;u4;Ug-4DtcRrX5q>XZmKM(U;KRX^o?U!(C~J+HWnu@dGkb<_~9)~Xd9ajvd_ zcTK$$uGP26dN2g-xnv5x(w}NE?{5N!tOr9FN8JzRys8QByYq^3RY4F(r7D>#$wm7t zYU4WU=#MZCuS)kFrzG|&ayYj})1D`UM~(GF2UJ)f;JlJ2sS@U{RFx1?6``eCQJ&_? zJPt&e7m@W~2<1p_BFvTL1xQT;rqce&Aq~DYSD?(NbZ3uKFrxeVAJ>nJZBkE2-@u zqB6qOTD77hO^JCNK$sVi^GQ>c5&8GnlaH)pR26H5S$5f>!s(Fx;yWW z@df3G$_Q6$)e0ibm3bUMm_w5FU_6Mkrr)Ma07#>R3RNamZRYu%0ki zl_<-kRnhLTj+|Fr7~Xe}ljf@6;3z(0*ezjZycoq#G%xlit)mW~t4fq*3JB&gg)|wF zLv+A>DoH-{8(HkGR^=Tj5b|wF{h;^9W+7LV5K)cs)2tD5k>dz?5|6$Eiqs*)*@T(sw+Hm;+N{s`mns&wCR zN@A}fhjVK*bvPkBYOE(Z@+87E$dgnFb62WL2&szDQmrUYb7j5;qRd&ydN71?1m~6J z%JPDyycUj05XMpe`(VziUJdWN^Gb77RKiizb-W*|@+m2Lr5xBR=ivRuPtG+y%I*ga zM$z6{Rg#xxS9Ihl;khz|N12X{;3*M>u@dGkbx>6a;cBf~(UIoLJPshtS;%@Y1Vr() zCs!2CD|KF=+&E+%x~o42VBZ#9X=5YXF4oTL7A*ez`lx`x-mE{Gsc`Y1R&jbkLU|&Mf zMi7To7_0KRDte_H73KXA#!>c)_3(bEAC$aNM}4lc4nx%apey8)h%2#K2+Da+I7wckx!JJn$;eGcw zajq%|;;2+5QzE%&mU0)IgOvA27)Oa<6z@megQTM}SGl_p!I?0(UN|MLkk?#^%|h4@ zL}i5UvsEjIG$rP70AbET)`KCaSBNOxM3^hf3!3se=$HUu9PZW9loWZ@g(06;H3@<^ zq{3L0Pf5`$<)|p{k1!6e%Jv+-E#*B>4$)DctG>#iR~f-`g@{xMb62WL2v=*>O0Uvf zna2Tyc`8{ChM)=&QF@#(C6*WZlh?w*?*@MId!Qai5XMpWgE_CdBE0WarMW69;V6EC zor9|KDJgoT92MpL5u~H63OVq?pM!Z1ltU1CN)p1OOh-oWl%Vod33Gd|xF$cZ6ya*E zTG_!gSLPr9VO~VmgCVFwM3inK%$4N@<#{a})Y%3zRB=#L;BWmTvEFFmicSCK;yc}nEGQiMnG zdByiRJAdl8CGH|esq*nUs46+(6yZ@kJ$#=dm5C=#y%QkJS;$&?l~1^Y&^=FXBA!?3 zaX`6o$U5!^%`aD#5XKSwM>$tTUab&0*zb_?i4nw6smiCs{2=y6IbSACUpCe2SBkkf~|$mbPTVzUr*)DW)L_DK+NN-lu+P8|fU)r-h_Fa-5V zGKH#iu43Nv0*9;zLl{Th59Yk83GcJtp&o^~svwA?Qk6`JIdMz(#%4^}61YsO?KbZ5XkHY)zapKRx3W7M~eyqx;r0A7$V6U8mbo56UM~Prm z*(=FQvnx9Cl<*`L9o4E_ALiBze-64rUUMbPU8yP|T&-0ry-IUs9tRNSkYqg=f_jCB z(oMwk3fzSD$2dTr_!3u*E2_5=W%soz+C4@{F5^%ih4;OxG*<-&NAcTS_k)s)I7Dq+ zOI278^KdS$#QS6S1A8~Fj6l);bM1{&pV>g_^-^B^gUL>+} zEAu!IWnM(qx`TA`AQQ1?1Vq{W(5o<4mKW6K^^J0I}dN71>cvV;#UNR-7BXWoim@$s!&y4UWni$DcAmsGXzYltUYCDKXJ>e7~ zRgsPfr^I{>M43a9we%`YVn!$j-WLQ{grEE#uruNJBdrHR7)S6Q*5mPc)vH0@LRD$5 zOsz**rdXBFRiRutuvbZWe+21pKJ1WQdirR8B(I%U%%{=#Z$?O7LvW@7!E=SmQzg7l zr4Hgq2v=)6E4@lnV!j3t<}74A7=kK9MCozjd8Hl)lpBYvg@ZNVC%-ufVI1saD7u`h zBCmQi)Ea^_6$m-6 zxQl$MaV6aKN>vHrYHgon2jg6w1Mix8CtRx^l=WZ;>Xl>?1ZvT_ig|w+IAlE-!Z_-F zFy~cGc;7uvoU00gI4V`ilt?bxHBlSaQAdA-ad=g_?>Hr~SCPZHHJUn{5FRzw6CF@t zfq*HIC#e$Vu2hu}QWc@4T2Y?n$~+E4nX{1fUNuBbspRIlX)O?fRG)TjOkWUj0#$xE{R3RNamZRY zSOb3Yo0Aa65&Q@39wTyIbwzmJt4ecKRKijGHaiDZ+Gu4$6B>X;Zo9EflZ=i%Db17d&DI_mJb zszh0)fMA}oSCPXtVWeJq!o`kiRiY!GaB}*v!dMA&S6pgBNLAFU38%z74n&zllC>yL zbCnUwkzG-P`gy|D>X_ z99|jiT1FU0iC|ROE6Ho85A$K9UV2{jQ_lA_8voVPhr4JMT6Zf|$qA!_nY!Z^Gt>=Ir$SFu--!?`(@KQqFk#(JWoGFS2>Rl?krs$i}n zLaHLPR4dBUT$#s#D03FF9t@!z*%dXYp6a!{P+?vR2gd5p!B~kPjHB)cb6)joc;CHR znyaD`bw$pH72(Aw>Tc01<-ls4V-f`ED61k8;wgJ2d1-b9k*9g@>)1p1AbDyl_Tx7ftSX#7npf1)4px-+M^LZIs!#!5ditmzj2wc-RT*FjY!gh!3r587|U@WiQu0EBreS?dl?jG$g2qI47S^ijtGnv6r% zaR-Tqt4avtU?)S0Y4=!1&a0a6zE_pzs;Gpc_*8NZ=iw)sSJdiU1&&D&q@%0~5qQa5 zSyhok5cRn-gh!c^pu@bHtOr9VUv@=4 zC6*VI=e2NnW&9qf#}R~aurHzLa;}QJ?4771p{g`j89^M*XPqS;%cZka^sV$!;U{M$ z$}$Dztfy3tdysVGDe0C7tUV&QhpK}(FuW#kGEK zm$fL5KRGK1;*k4-;EM2btQYfsD{#nqFobc`zqjYSstND=chNXk6$Eiqs*<^qTr^j? z3(i5x`y-5_L@=uCRpfAPjMNKHxZK^SoOe^B@n1ZBTp_Qy63$eqDj}q*+J2OCW#2^s zVc!5{4QQ@LYa{lIP>%fVm9UK9Z;+(JI6$9#f7I;ylQUN0QI<)oqTNI6_`Ld^8qxk; zG|g2}2}fBb;lS*A`baLFtD+0eF$sctRaS)vykttOD(phiQ8}-2uOg!Uy*+l+E3uso z%Bd=zE7_?SHEuu3xw7x=P@#PTl(p{Q#0csYBK#XNSA?I$Zh1jRUI!gvt}0QMNvkU7 zszB)XYvl8)(p+T(>5vLzRm8*Zw&oSJI%9!@l=nv%hgXFNy!7!7N< z)0~|@^}N!*<9L6#yOpZsyi$bk^SJ%6DcRtn6NetSpHEI+^T}yz-NA_w5M`O-eh|uX zf!Yl(`a1A2hph)g7)R~rpye_S*2MSyZ1=gUB7np0$Es*bEEjN?+PEGJVH{qS?)!0) zH|{~w0el*b|CWeYq3OtoLZKm`D$^8n5J!QCQMR*$xMls5xB1TQzZ`z~8*`eY|MTTe zZ|m0RCC#T#tTLJOG<$8->nlifa)A#m{d(SJ) z7ykw8JMQhZZhW%26F8PV6FENc+;NvZblKeD@9kJ3V$^wSF4f!XL8$g3MEvyfRWCbf z>b&8*ww%*E__iH(IQrTpMql{d)RESsukStn^Cd=)*kJ0&J_}~_RvcMkbmd>c{nk3C zTy@2Rqw|K>eAAp}w_6|UJ-cA)=q7J@sCV3DkM_pyh4pF+d#7!BM{l=hr;h%=oj_CT z+vj(;UjEd%!*AYYP7|L*#PUZi?7jK%siU|2VId$6Kjw`2Q$9Iw_{Mk4Y4+N6*2tX~ zP9J^!(J%Iv-{z0KAz1Hv_=~;X2{T9bIBojqDIa?Q5Qpx1{`|M?Id8aG50r-|5wZN} zpL=Hl;ujxB#79QfyKMh`=MDcSaNK{%IV1bQlTH5Xh2Gas`|-#k;MnAt7kis8IAvtH zQ-N=1M7(49gD!h~=Xt}sZ2-Oc%a=xu`sos*TfJfG$WGt-@yOlKtF53{FMj6BBUg8q z7=7PG*sDD+c>7lO{eJH7`#N))_#`5h|JgYs8$x$apzbd7n};s@Za9_+_F4_`cT^$nm8G__h^`_AoKzxe#c!%weKB4X4kkNtJzG|2QV$kb|` z^PyX|{th6ft$An@pG3r>js7}v^98^+hKSGJHS5YLd;IV4i#L9uiBXUK

    bp}UuS z_sU+0SaHd_w)y)b@YXInr@3LJ@D<`3U>{vl0#5)q5Hm^m^N-j6585b^%ySHAjt@3?&Un}0gEiBBS8 z&P|(+ob<=3qraGih!-wAf7_>TKel_u^4HFeXVgx6ywq9$J~$12d0RTKe(>0tTkm|{ zvEAzz-Z49#WD#-nEzfkGx_8Rx&HLR39BXfPN_*=oHflaSdsg$}ZO?S(eylaR@gKUq zRyaAox8XCLp%25kdlB4kZL-~M?T1cWx!LvJ&6?s#Kono0%(cl#gTSiX7J>ozP9 zF=~%X7I${oxixz88<69UY1=d(`_`}93yxT&iBBRT{$yyirvGr8X7)qBYCraml?z0S zn*RR9owK%rpDSk%1IMXX?cE&w{`i5-!_O`~ zyzb%M_Q})X$x*K@xa8)`dogP4?8Tjp*LrQi#ur`@f4z*%wWJq#Y44Dt4sRI`6stn;-xB+-v6l z&tHpPMMUg+t98OUhcw5(`N!>3ci5^OD>?F{r#pK;0VmGEzv)GEt99U)wrY;s;CJmq z?p?8oh}eboKloH<)`4)2t^I4zap;G)XrB4Q9qsM^-wI895)qgD=&8=jvjDL*+U}txl2Z;8M9&As)dX47kGuCP1lZd$b zV~aXR-}TCZo!9>jAU=J}N$u-*nboYh^~MDvM#TwjwRZ0w-aca8O`5&l^UeYhqvC|N zTGQ6qzq|SYqt|S?;==YCJ1^{imZ~=dJzPf@ROXy7%z=7IyYH4%U}m z4plvR_yfa-ExlH=ewX}|5web=L%!r{M@3|o5OG2qKQu;Vu#M-ot<6<#DVxmo%-z)he!9D)$H|kP#$u{sI9ksyt5j- zo6DRx9}shI`Q0_$-*4Hx`t{A4_#`6Y``BuI==AfhdCNwdH~Wli-oz&nQNFeRo;iPb z>eU}>j{fy%JJx>r7LRpKTm_W>aBeT6TdmIi%Xd$iu~hTZu{E2Bh*1dnXyW2UR_hmA?b|(V`)g-^;Gm}pM2w0v4d1VRIH$Y$Swap<(aZK&8orB; zO?zN?qYv)iUGuqV?FT=-sI&dMmmIzR#id5pzw2+E<5pR6^s~JsM;0IQx6X^OKH{9$ z0pft8R_Jc>gI&8v?z&++K8c9wXFk^1;jc4BxBBu7K%BJ7o4Q}wZP)HfE3H=`V$}R~ z9_y_B;Ed7t{RdX{m80L;J^$`ayXU`s_jY^|5sR*Qq;u&xGe%!{aylTke0j6(t{cqi zu6V{C1tLZ*Y98rq|DzeB>s`JiAfEWj&fNt^zrOpxI>)u+lZd$dwuPN7cL5!bE&+(! zw%NJ6@UCUM=U?*mc6<^M`+xl5&aJ!67`=YOX@L018K3CB@R93=Kl6{X3q*{Hv(Re2 zVWm%Yr~do8;g7!ihsBgc#QG;M?CkdnxR>>(0LN2j?Au-W<}VCC{@L3KM2w0P(`v1J z_@9U0bn*V(JvV=8cHF@e-?*sr1nmF+owdwJoCSD4c0GQ0=QF?9eZxo2pBM4U0$ zk0~b(@3s3EyPJRciv=P^#R+Y-=G^gtRaPz}a1{yMMFhXFfW7+Q)8c$0rf- z<9(+OoqfTK(G#AufkH+t=u?!v=Hi|$55>>K=aerdDz`DY$K{QZv~){T`+ z{le6tojwXWKC|>lM7LUp-S~!P$0c{`-n7-*+Yu4F&^~P1(Bm^dhF*5M2y=0;b}vkcmte#7vXz; z>Mgr9Yt2}ud;3RsX~!oK5oe**`t6OoHS7Io>F$#s{;vWNqn_Ay`p|(-%ox3A26F7S z>VGxQ|KWGTyT5L3J3fhsI6Z*)_?fehx_@SKYHQo#w+8#Qrwl#($P%MVp4A%Z{c+0B zaj<^jFD>ABY33>I)*G;=w%I_K5HEOt@ab2-?X`7(Z)@D z5)rTa@2NvqKeNQ>50=NXWZsN>+f#qGLi6Gy?6YK5uOhOV6k(|!~pR(O;*hH$AgG@4A=Ukt0UU`Tq2w zBR>i|xF){mzdq_i&FM40(%$n&)0_AtBKF%6_WYAGMvu4~yL+%l-V--VWflFIoWKYF>N|zF&Q5 z*=?KO4`1Cra-S8Oh=@_k!|wo|y91{E-8k*HZn1K6@E0CxKXu*41tLbpYFn)j{$*-2 zcc{DNOB?yN8c?r(G-C|~!feVg};tuwst)(^GglZc2N zf$vvq@7COZ*|hG%$9}6Fe@}hyf5YzLZSA!-gP(VA2KLY2+I!&c z*3kNIoicjK|K8Ah=bf#gGuu-}Pk#DFsOr)cKHFUWj`_nc{P~yy5u?6#YisDb&jWhb z+X1oCGW#}Px&6A~El)nB9iK$R!9Q&cP5%^d|MF%)eDhE5Yp&aPx$cv{JiS1~sOR@= z4Sn?M@caD@ZUw|+FK^Sl@u-cuAA4!F0uiHT{r$C0>k{}&L+36)?0D+t&9@)fw0rUe z?`+2>5wYCS_^k@{aKH< z|M%HXbuZp$_1TdlMjdd-E1k9O0*-gw1Bm0M{Golz;|Fwq^@iT;_#`4uKK+%>*sZ|v zN8}hi`yaDEde4`;D_y#DJ0fCK{9R_N^{=TPZ{PK|FLmE|*acU|ClRsK=`VMl!m2Js zj%^lQF#Cu9KBjy8!{zTqV^sW&C(Q1rkC;9EyEB{5owaRq@<}guHiqAF?(*4QFaD)z z?(Q#jp87Aie-r)&^19`=X#V%MYuj&GxN@`ObFX!F`Y!z5aCkxQy@$1i&YlZ@QTpq( zy_3G*8hYw`@cYs^Hvr;8_rI$-{*s&9XZ_~Q1tLbBwq9#!>%$?_E7t*Hy)&k?KYQU1 z+h2Lz7rHU;_y4aow92he$z8weee;&q(6WnLqX#Wm$0= zI^@2Mw!7uQEt)IW+r0Q&YDARN{^|c&xc!bBUOK$+ygAM7KWPn}4(IDZNB+LI;_GA58hYTDFo_FsKlZ)lUEA&S?A+n+Zc`#+)D4%s*7@Fes{bh7W5=Wl)cl^eV=clh?L<}~q1L>%7Zlw($3lFXLYtzO(o7+g)|X+~G&tB}a@}>f)z6&rY2>y6iFdQ*G8Q2XEUN zn>+lr9p*IgNkkld?ZVF7jbB@E@+0_r(eG^V%WdDX_uS!qKLUS04^JZE!b2YKEW0}V zCGIl(yTN|%_^)k`Uv2L23j3Cb7`14>M?0tO3croK8GnzR+)18gq^V)(%U&r4Lu5-%W+aGb}MZ^E`zC#N{jG8s}RA--&R~MZ8 z4g4#>OE(?7O}jO3ct_a5bsk#S+3D#eM)&-9Yb16$_7MKU`}ED1|Ld8#!wKfoD1|F9s+4dGrQCV9i0k&8I`rQkgx|0ogH>&O z(m$@;|M9uQ{{v@YM8v4Y@1Hg_f1Melm;DIc_MZ2=yzTWn%p2Yw_9H%th&7IzHgv;k z@H?kHa6cB!Kl`c&51coA^I9b$MqPW|w4s?h!=4|Fb2asZuWolKoVzE(xf`EE#A-9A z5AFSXsOob#C2!eh=Iqs$x^(!4ua$@xwcHz~4;}XzaNFylcYd|^i`nO0I;+|4-&-~7 zUvy*VX!x&mc3Jb<-f36e*m)klogH*Tx7R!Kmd?X%Sbr6NI$w3oC9}6%IIB7GrmdRz zBqGi}Q?k>nq=Aw~k$} z`JW56XyTKIc<>Wrod=GBllmJYfLQBKceFqM$G0^r9llY4h*2j#b$jQ6W8pjFf!71# z!Q1a^@B8MJn!P`=SreZ`#GFO9cTTbzC&>8$?`K#ZU(`p>zWHv4}3n)c5=yhanBM8x*f?&+NPcJKx(VpX@#*r{3XrgPfc zKl!=>5u@%rxgDK8c6}wz#kJIQXbV zAH%AacgYk6+zE)CSN;6uzg}Up=BIz%x;gGw7k9n}@5i!hU)#H6h?SR{+8t@$ zvN27`hL^p!JN)PWZlCm#m74e@BJMxz+|GN~gemzQdbMwz{od~Ghy1Yp&$X8;5Hae` zozLxTY}3BkO`CRmZ@Hqq=&&`L_#`5(ZU3Y*7r!n41K+4`tuV8D+!B9oFLBk%1)_-B z@+Y0=;H|xc-rAl1xqNr$P2j(kd2)lM6`n-IYR8`6Sp`mpT|SK`!`lv7uG?Ipojx0X9#5YcQ~o&o)QKxKXFWQriBBS8{*piI9PlMLuYQIn+`7Bo`Tw~( z^SGL}=z(9A21QB8oZ%@c-AbC=z0Wlj;)Tr9MN~xbLWam#$isW)F*K>9LK@FLCz(U0 zWX_l&WS;X|yU*wM`>pf->(g4_yXSrO-fQi(#r$b)sZE)^g1}m54U)8hFpI|3&7z0K ztP<`2w4+y5ZWK!}QFA>-+W}^3zfpXqK00B!Sh=DrbzbG7Ah4EQX^Qq4d=292z6RTj zjuh3O?@U{ChwlfHU;>XDmFh;*#3F;&PSp9DaztSQj}_Q?X~NlZi`t@e^F(qie7DvC z?6pA)_2u+;yR~)+aI$G$E8%ei?O_!JCm+^g%&|*~@qr0Ex>Tw$^L7@=L5tbfjn>51 z;E;Ckcvux(GLa)=4rz12<`px>OpYi{(+&W8t@|==`B}2cg~fk%V%4AiB;h^xYdyfq zdSZ*A+*-F!8xGdck%sl$$`l0F!Zi(c=NK0jZLVgQV+Jcq z{^VS|Ht>PrNuvQKGOk0&)f-Fp=E5N6TG&oeyO>CbI;hPDYq;$LUb~lDG-2vNgV>Bd zwghWcTOHK)~9wd|%g9>!qIG2Tm_3>!$>`Zr{%+GPYwFwyCExppld!LPXG=X`e; znsC{P?Gr{Q2&`pecSCy`d?uPlatl`C!(`2Y%EfHZMk9jT!(shJZSfe`pLI7;v<-}? zij`!9dLEm*>9_`KVLEqQnYLOBejr!)j%8QlmE@zxJl14)fd*@R%qY_aLQmYb%~Vzr zr5Sffi~E5rsJQ{b5==a)x~dI^v9e9(b+yIg9@&=|$f^r|Yp_Fib%*;dUJZg3pmP}Q-$_p#cq~=1PQ(Nr1#se(Fg-T_ zZYY$(4F!jmsoD&%%a2SlmaDIqYL^GVw`9AqtaiJgz54-t(&zJC>XYOJ-ewOo#ps^l z6iYA>OUtz5JYh8d=IwE1g+;-9&upYlR=Zsx1MF`?mU=klWbwOiVs3nwBZk zz*;NYm1;}4ZL%xR)gQ_-{lTYz)RLJB5dHtXqpP?L> zz*>vb%eB%rnCE-(5#@5(s$l%aY*GJpn1aAsp_Ui56IA>50NNchFMXg1BSi>js)4``}O$z$k91&~( zhLbxa!M|H(P@zqo4J+iE7l7#gPpsFH71?6k+b{)zwF=|QwH9_@l?mZ%>Rx9@7Ie9A zMBEvsOap5@nOUmMd3&Xf;2lPJ2yzK6E@TmP`**q=B_k!Y^ohT!C|HSH8y?TT|mc z3EJZUvJx+ne$ga`=ieudBnd#8YsO1ru0nocl#>N*I*mDL)bZI*;W= zsk$X}4a5+V!v7dHq|Q>#{LRJPIYp5=>b1KcsCr3r;4=c^XD#eF{{k zvc$b`4u=V>727#UI}Xa>V9m=h-?g9j&V`xcsy~$k)(Xr%sP%vyOZ5+4yZd___pXjR zBKj;;5?E_-%^~f=CwxcG+x!~Q_q+h}RSwKoSb~Yt75lZp&tV_6h`0GJb4#z-P26b8)hFY!9=idNZU=Ue{ygnpG)%ZHOYGhbBQ0!C0K%q zh`2r4C7B7`_Sb)yJE>EaxD)CM6Ijb8ZJ)LQ%y8~K`3yI;w7vJ^Guh(7M_~#A zYegJL)ee0PX^iA)yqVhA+ipX)NMKIH5==bVvR^CSgVoYwKJP{hh|7y}$r67#hARlH z_59*NZCn%ZFty=dgUyZKd;eQ}RBWEDOap5@@lDcpC-B9w=c|l!zuFd#_%~D3^Zid6 zNDF`MRH}N($$4Gi*48v=b6gIrg}+@eC!U_jG+)ca@1?7Wlu@cJG=tgF{kmi`uT)$7 z6~>+KH7VDyRQvKX{C$j{;;c+`X4^J6v+N&z36@|Y;LQbX%2Sv{hu6)!fz6otg?>!s z8loVuR%@FJ+IjrO;lJGC9y$N4Xt8ZN8}vO@gC&@VXn#Q)aT{{=jgP24y|np>-RPuJu@y z*%H#H=#ciAk>1Hti|bPB;i=m9aEmeyZc!=;(<_d&c`ql{?o^Led3_ip@~r{NN?Uv%%& zl{O4;pjcwP^Mcmu4y;%=gN;p*M&USf)@Wfp>i*MKkp?D8d`q30&IT&nfWu7C248~fXenE?}cR)U#2F1N?|rf_@N6=pb;cidxe zUjPrf-VtusjI+cH_~Kv!YvD41FHZFC6W8qE4zE)<#regv1Rh=B&oJ*;58ES|qPm}w zz*=~0g7r0TuO?-aBkgbFO-CJWqz#7~d7&;~;kj+54Th8LIGIT{&gNRZaj*ht%uffk ztCo-lUma<27Tn1}1lCeFx72p-2j__u+*Y*j_-fLxn?03(xlk;@gl>CdZRIpbdkas) zr2QRoEwKe1@Y6v-V6C&ut+di;$WU2j1fwj(_ZK^%L5mscI`1;D><#@W!eiEV9Pf2)sbM2_Zu<|-kBIO2H zYp0dL`qSu?^n6qc?aLQXj%jCr@HibvJr`#cji3FH#OJlt+MB=}UVKrZWih;kHo_YI zzlg8fKSqSm#QfqyUBMM4;n-5U`#hvkd0s)QRPOctsfx8BW2($4PW?F|aBfwqw= zBq*93anYw(f{CvqthEEc%PMX>&y}C0D-~y-CsBdc3Ib~>>uQ~zE8X+)JXtW%nqmni zGIur8=Kcj`sy+>AXxy97z7~4)tZgR+fwgeU!aXmO9^TfCoaxc09#mC+Q>b=>dT$L@ zOPdNI9Qtl)5tDEag`Ke9TaOK4J?P?Xu8O{k3EcC+vu2`>#aLw(saCuv@s>LU6js| z6gP_L-8-Ops%J!1NP>y@R{I4Hu&b5+%dIl!a>ug7cJ^fMwyy*eSgW#kyzs~ya@CyY z%D~E(ZE7=%40N`lSb_=l(j+0L4G_-UKIpR3mkr9;OMaA_C~Tsj@LZL| znzMjIKS=`*d#aG2-z{r)LWoR)zT1XdWhSm^$o51S()T<6P!L!v^FfYa4L0GpseIJt z1m6*ZpITDeG#82`3ZjE77=l&CY%iZnru=bTRP}00qiXFHL?+UbtYx8e1k4ya_pu6J>o%1*?frSBv#xqA;NtE2{UqC$p_Voy3dl9uNzIox&`* zwNtglNVX{3Ei9Da^t7nHjK>XpIU5AArR!RV|AJKpOE7^)mr5nNRTU-qMzQBU1seZ$ zIl}+mL<;|XTxbnenJT!6RMRU%XgvvbEdBTmp1&3s6lvxxVf5Yt4VGZSze$!b4sP&N z1@RNehh0{Pvo1!kZaXXpCa{)&&vYSWINbT^!-=>*E{Rf52%B~wNs$KD3J*>aLgBtq zGTb+UJBq9BinDJ7vWeNX8Z5y?&5dNC1Ws<7-{L#3#|JIhnyZ7@mA^U?Okk~zHx3H^ zUEypofD9j zK30&iiHv^<&V9&G)@ii?i`X?+kp?EhTf_?s8^G!3J-+9B^6yZ#udo4govtQWf{Bf~ zc)<(&WX@#rdqsW@&Mf9)H+CmEOhI5RWyyP4v}WPIeAu-_6M`j}z;&onz5Ota-X=pu z+g`<_a^7X39B!EfwKA0B)2|5E&w~F=iLoriTo%F)f~DaD-_e^@Tp>UA2ebG0_G`j# zpZdSH^{+T7M8I9LWVkI^Hb)c;`OUDpyJQvKDWpe>S!_u!JAx&c5E2W7I3T|4=l#l{ zYpn(hQEaQ>1Pvyz79IuQi_Qv&+xg5KJg)q0L$0KHMcshEs0vh(F$%j&JG9lCFK!_#+7> z;=f!FuESk2_qw}eM?O2yJ@;JMg+qY^6Ie?<=7LaY3H|Cb?^l1N4yN0eG-Qvi4hdg*grNPFBO09`_|_*;QdPoMlvJ^0SOo&snrv2SYL4^a#NcOek}u z-)KCY@XtN*(!Q07G%&3`TPAdXvlG8Qe3kM1TX)*&fFt`IFo<9YCgLGi&7Q-_-3ERJ z(C3IXo!hW4i>)6*umlt8hULObh}IOho}Ww{K3|WP|2vuu{%)xtu$Fq!bs-yw^a_45 z;rAwnbkm>58ou1C!4gbJzsrTvn~+8TC!Bmbc^|#8gt@jksi{dd(=NXYlEpWr+lqhN!6S&?~s$7eeQ(~lY~!9>lr z=GyoTklqL0+Xp{)r1_yP?55)kf(fi8O>C~US^>5GgnPuFYBiL;?P9`qnhYdZf(hIg zzyrJfP&)pp5sTe9T0vl~jR&o@`4b>lfASS_C>cYk-x;y(o@|08n83Y9r84g0>CviH zmN?V}B4$m#C}hus-RN~Dl^NX-lFFdBJC#WlevP#L7oo09_)5Q^ONTsdpDZ!YUP)lB z$XkuH9y4IQdz9NI`~{u&h{0K6gk3nr5=>OAx75}yhW%9>UyBAm?$-0}r!29memKPv zOsFqdYRjNc`>A;gmX{1EY}GVd99tWvAh1^Do~GJPTcEDy^7b(AyVm=KlqnAGrA$Mi zHL;m?4(!6?F7y5Q1d~+-$$w{xTLy+x6_Q{gcY(Dw9{k9v^-lvax^%l&0mPsa9N@eJ zNibm%W36qifjK6K??2=_g9|%1$rc|%IdB``wh8ZbMF<5OOPnnqgCFjG$)BB>CGKtp z-qA>ciTLfZU#4|^@|mMIpER}xrD@Y*Ltl)?=6h4+%8fg8P2zh#PH z9{(YbR(SkH!R88hS#0I@kM}!Qdsf0ZTt7I6!xH?v{?qmfgBk2ax^m*c!A+iBz_vXG zY}=T?TA8sKf(Ll3`>f|HnI1u_3XFDUi&tKTQ7pkkWl@Td*%Js0PT1SU70R=7#0$1i zyGVkG_)q(U@31a8;m_A4FN)&5^PU|Oofa$8khXsqK zpHP+q6RKOM1wDJP{OseaB^#k{kzd#%n$*IJl(o{xJ)M3OUl@@jWe(EH$J~AtuhS(- z+oOrRz59=1)4qw&9(fbylBue>bY^#3GAhkmw$p&t{6r~J&r^;Y{G<5QlOzfM68LP} zp3~U>9z~rN)~A@jTFNxaDo4@XOMhre0}QBt#7n7Bx!%b^jqgeRgI`GgFChAw?!F>2 zB3R<~yV08k*GYL!V~QgnDhT%~>7O4EAI|>)l%s2HUvhDP3!U>qO)VgrTbZH$$@TRs zB^)!crp;3+4*vgo1t*4S9+SUAt!VJ8ZWK!}5v@pL){A%K*l06aF9p&-u^4d)o6n`YFm%9Q(bLWHx>-^?U^<5MiZK_^y|d^aEytS!X01 zQBtM)^?e%cMVpE{N-h&DQ4pxs;XLv6F^$bW7dqvq8~ysbo_rrp)zVv)NFHzM$#=o4 zH1s2r1YNCU=mlx}@pFd0&2lv~z=gK*>_M>v6VZ=qB}+I%4y`*w&b5gl+uwJgLI+m` zfwlZwf0JzB4B6}!Pvhme)#RTR_H=hcSBfQ=h_?DJy@xa8(z-Kb-^aJfj7u%($yW|a z0%^tjev}g63^~1k&!Vp49g^bGf^JYdQY^v0TY31CbUqTw5yWTegISieML#{dH=>h* zz*<7%8Yv!5IZI!i2Esnik{Y||(V2@nQ7plPboia5+61}!mw(m1K6RlJM_wRp{HzrO z){5R*E&2W5Y3-Qsj|F^2cVd zvRHOj3f|L5eo_Ou@;?K)+VM`uT=p_ex6HQ+0&8vm*htd`C6Cbb#G1lGzu)KFdxE$E=*-`eIk2eKWy6{MA5 zMzI7Fl?Tn_p6SpYANeWgfzht)@UJr@_kp#7z*-yYo62SDA&ta3YlcyZSo3oRed;(& ztgJDXGs0p1xFJi?FAU{*{I=wCxbjnFAa8~-pPs^3eGw-Tit3xV(5+s_U#v zP0cgJb0=ET#}OV10&C&&!TrIP_eI}ZZE4eQohg=JBJ#S4Tn;mXLlJMmZ7(dD-fn&B z>fBL5U@c|sZoS)t{o0^Ut0r`ySb_KeLPn>kt3Ic24z5u5N zAyZje=hkAYi8lz2lNx!vk(_V?Vy2qhQ}le5%K3c=t4VGkTK_(&B+&T4;|Aud;}e*L zSv}INl>cN`|FKZ&z{CK-=HJK5=@kRvXFE2Arkad{yiTr#fV$RtLdO@ z2Z|+_h#q7q#~bON9Q2VBn~%QA&oot2)m=|o*|wY9-3)#!?tz50aO7C<5zbm&@H?d| z^?a#O#FWJZP7m%!&0bI5W`QNc*;$bW{@wU6CwZ#@q&=PI%B%1pS^LSHCNy)USb_;< z+}fQ5-$?&q4e8u=@Kr;OGy}|U9eiN~2{#k;57Zb`f z9!|;A7`1kxr>FN&tX}bo^=#9gvb6L^aaX_nkgH>hlQnz3!9A~Y?hvc^|0S5PTS?@U z$REXNT{$rltglwPHf02}Y7ugS-_e=v)rL!|!WxLKli!Xdjl!E6v%dOph7QcFz z2E_L7!|AwOTQah}A;l6*sINN976*VxNde-`!m0Fi&=XC&19u1}uokXESOH85rZ>nx zMSBiiQ`9adaJ{KiTc`O^!>+GM?aLAo=fq=^iyS+dmm^8SG~5Lk=t)iUN=Xv*UrgXy zi0tepTUS9{4NHJ>jC<6Bj-PagT;A7^VhJXmuj($VQ=vVc@{*@5YDwpPsZX~Wwp0*U z>$#r0Y?cE%nO+Bhu=>@EMh!8eH?K6OSb~Y*Jw4=_xsWR<8HkROL|lG#qE4IIQ7pj(-c!NdzL@=F$VF$`IOY!pfwl1d3L?rK zn@0|A?m|Fh z@uo$C!TO5!vY5c*5n=*9*j4lr=G@u>cZwyLP>$NMFSEoRFJ0-@7i}rdyMN!_a>_0! z`KtXArePMn+L+x-HKpbgAbKmRA6##~OMGPGyU=$nd2bIgw`Ol%HJ~?)ttpmZLcQ8o z?vn;H#w*_2ALP3*ZT8&WL6grprH zk9q}Z3`+$fq`;5;le&%EIb2^sV6FJ&17x$&&|`Y=@o_lUpC#@1mmG*wQ7plPE_R^2 z-4%#RKEoA^p2Fr-J=HY#dO|RPwQ#QlD_P?yZ1eG}8oOoB6a?17eH!k>9ht@gRUmDPVTC2^7Hm)ZKg4oFD=EgxT|%<|4J~S93N-* zhcX9AU#xn0LP20HoI{9B6_Zk=e`7J5lVeQcr%`!S2w30do5|b%CURS_Z8wiKk-wU1 z}|C99@aa)lF){5-i zUvAb8EW9$e@LJ7i%91YmvGX2{2$o<%chE=v4(C_4Zv0d&*j>#+{&ZsHA0iY4)>5zP zFQtiNfrc%n;!g1}n1zrn5FJ5$+@oN1z*EGv2?|Kk1Ro9O z`f^Hzv%K~q{J-u5veEHL)ccQ8v0L|L3Ic2Sw{?-<{D7OR?|5CwasG73lF#C*O^F0c zFcG=MRSqzP6UZaHJtDWe(Qz)&g3LidV6E^_H@UR~w0Upd<_S&Q=;w86w)0h61%b6v zR=LR)9^e5nn)mjI59ahiqroi1su#f$OjxXTm;3oZG!hLj$BP3`$>o?pmSWIdg9)r< zG1yC1!5B=Y+`q(d!)5aHN-+C7yhwv3n20p+l9NUQv6H9K!{v_Vo6Ta@a+xW?1lGc% z8T>LTMw8K-7O+;@m?A8}M5bX+xtMzntl()JUZ1QHy21+;O|lg;1J=Ux3VfYmg(Cq8+-)6`g@On#Fmi=!HemO_lbzhnQ<#4or_n$X-M)yu}fA6@2 zb-(;UQF2V+T7Z?z$>pMX%sl2IWNNS$PES4Nt~3wc;Bnl}>&j>JFLB+1vFzyR#^5vY z{}N2p1l*QtcR=k%^SY`HZOX`fA66C|NU#JG_>~~YmByXb+B&fO6M~XJuMdTXS4atI z1}85%eSkDNewxTGb}17*ZmlL*f`4~o>`lpqL9RY4R z1KS;9U|T#blFZ=id&;pf6##4eyawbiT{@wPy?eq)w`P$4a4$(#LX#on9yvR(5{h(dx0TXsLc;*)Xg&fuWh4S zXG($KdFJC|B4;i+E`6T}?NRrQdOtgbM7Em6jC$A-EWw1upScqEJWJlo`&G{_wVJgM z#r#II(Hcx(Ej$Xq%VKJxW=d@oYv1Rja(tlQ#XVo8YPu#5pPJa7^0E zd$_HMjMIY%f5zr?^d5g^c&iP;1g-^}iZqEwF^}2Cdtwu@HH~WG%O=16sKF9UZ2Xoi zm4N42)nUFC?f1!nCfssmm#YH_Ca{)zM~YMmo@Zyi@s*6rd_US}wgr>_7(uWE6Y*CP zB?GYVR#8smWR9RtUiF#Np-u!#FoD}2dWq>MIz9Y?s9l$2mbAkc503r zb*B+u;e{h)=frkZ{6-y|Obpwtaop}oohG{}Ua!MMrtfvBvz7kIhTr)qr+IcPnbO#n zE{jnTSSxt`X^_ur~<;M_BQGCs|8KZbD&s)iTKN+w0Jn2A=^F%qI7Cw`pLK+ zy}zlmg1}mt$Bs+I>%bme!OQV^Xdo?Wb+AbF_OYTp!UGef*xB%op0-B9EemVW<8;~yb%z^qD{8~~H^_^YlvQ=lu$B8W|mSDo--cc!Fw*E=S4lf~% z=_xLB-IX)Mtf+;8z*@@oC_T`G_O#Wb*N%0hSb_=M7huQouXjFqoGEUFyT~?AlBA7M z1}A6cyp;r#a>)`_%ZC@gmo~1uA(l&=4_%InrJORVg!B(PTWge1uqyk5Ti z%Y9g8J$jO>&dL<8^bMz2f(iB35~&<~ShoGm=fn*Ed)`wca>P$gVG06kSrq3>YVb8l z2454Es@P~~epUj!ISIFZaXBg%rAksqShsC`r6?1eh5tB^x2#K+ml8S?S6+T(!g3Z4J9da z5{&bNM?l!_H}a}?FH2n52+Hx`qEy-qQunEp;^BtxOV|&rU-nK?690A?S-3%)A#TWm zd-UkHFoDYl_nnV9_54tlEq1&YMzI!7FZ0@6NpCr{|BJVfE1}_o6S=LkL<8{a!xBuW z20xSDTZ2bRUp^<^dKp{zAT3)Qd_Rn0N#)>I(y^CdiE+Cp;a`G%RNe%yU*QlHc!)9$ zOjI^)B=4+(R}t%T8;eQbFw;Ud@kPFFL<0*HQr z39MCirJ-E?8SLkdoY-^8E&uM%Oz{CkZ^aT!Jb$H<{epm4$AHilY%7>BJ43Y3P!d=x zev^T05CZnv6i%eRX{?!Inj*#|&ZhWxRrTLUPcA^-y-FnM#0RNz8+brSG7xju_A8t= z=a_hPeVBs4T4hhZO7RQ9sy~}s!@Z}x@>+EKh|lOajC%qejYzWnxS3pX8tUiUNeTZF?20C63lGma zA(sA}rDzY|3FdOodhmVifB!$dq>owso}pdRM3>&P6+ICX!H$jP&&}Xl>&|=PhWc0X zw!nOK5#}r0-{9zy#LX?&KoRONBHp^L_2Rm3O_h1G2;h;Khn1n6O#lBF}+WLtnqY3q<3} z46oHgvqYo+5LhevNPqd`D~Rae!q58lH^1v)^f^=P3~_{U8d%FB%|(tVf&J%zx|w>} zK=%)uGQ~LXNyQROd_B=ij)y3;wu||^d+~aVcXqvFVq9{Vg1}naW4+|?VQ>p#Hz!>C zp2_n7e^Cwii{jtKC_77KX zC7b*u(aTDgC9Z+@gfS8Pv5$QHJlKam?U!(F;m+uzANi+N!+XMQl_d|Z>MKuogSGl2 zBN^A5N_F#1Ro+hbY%v3(C*k(MHJYh*mwUi@qWgEgZl7vbRNw%2s*T`ViwUf?@sI9u zg&v$h7Vus&VOwe8&Xp&`tyQzA;)`r_UCM|3fcu|@vW@PN6xoIEym%T0_2LT-AIcUJ zs=^cm*1}(Ehy(d?c7ZpnGTOr`1An*Gw=$(!0z? zOKRr~t5o_>ir({yX4t{^)%u~NcvV}~D5(*f{-iz~+UgI*d)t_>nWhplo5Q>kR0%D( z>Pc(nqj#GO3$|Af3N8Fvw`#VtKRa8!mh?ZXPw_k6n227ZFZkDjf5~<}GpPG6D(DOm z7b2oGRPow(LWH;z$~1G;f6H;S>8yg6xn04NL!-!*3K6(QAa?X;9ee$W6$R{kO9UFt z2491(aN-*&Iw^#y-$H4BzK~S6f?4EQm=o((uh-^IW&bvOq|x2KqaYMo!-Cj^rLYz~ z!`GtQrt8@4kawCPx8D#ImZ0B_?mLd1PJr}ORX_~#@nN4zB1r5uD~bt))-YeTaV4y9 z{P}9h>6ZuV*7!2nY_Sgc5*AT*_7VGl@S24D5<+x)(0!|X1!a53}}M5wTq;;r}~d5CzW z7p03IwpaEmOyC})@=IJJE?z&EZC!9wqpJ8zjLnAq+3T;8>cA3l;bBY{a5^ zq;jjf@cAh0IcmR3(PmVz$bjFqgIsxAh4Fs zKSa3S7uw?$KX1=6(9t#D&Wi?ie-kXhgzCgJp~4gPhKFBsBC8)A^iLyJ5x7l3U@hJE zNy6V_fat<|$;w$h=;IZRZ2M?W1%b7MoUuY=B$V$u?}^jn&1wF)!AwsQ2$o2}!-U)a zK<#dRFU2n!EA(0kf0up+V$YkWq&gyym6p3|utY)Ve1%Z3O|0Jzqgi$4_a!m{-d&nK zMAF0~2_|%N`wJZsp|1RRUB$S3&@8yOh}m{AA(+5gxG%u?m^Fg<{JD^|Y3fjjC74jO zzsm8b8~u6PiPe<0QR3KRUG(n|8fQ;{TW~jA#Whwt^tW7V0I^wlLxO zC%D0r%z*@TD?S*piT#idR1w`?iJU`p@O#b z)^K|Tfwkh(-2{WBK!l&+#Qb|?<(bCx&U+WCkf7hS`ROKfKLj;)g)9_qvYwSzIKkp@j zVjCz3tfjj&Sulhc@n$Xf9mUVSzO=SFm>ijDMX>}EHU*P}2H}v#Ri3L}$HvkdlA2sz z@`YdmYgJmz5S~L+6@J$m-h6pEiXL&^qhYHJDVAVD=NT-7%Rp@6xw;e_LQ~G2^#0WM zD!~NS!lMAzK0kDHxkX0Nl}R;<@qr0E(!k=rt6%Q9=FarYT@Nb6=u1{GKGN-B95m3E z{)X`pS_;>c(YOJ-K~{kC*&Q$6&U&chjDJ=Wi+qtR{6{LmMDljQ>DG_fT(-Z!se6@Ykh1FaTsc11M9^9mtaC@HBuUI7skhTK9_iWab!7j?~#bC<_ZF9Nkc|TV_?+A-QeS+_29;A z?fq}WfOVl*f(cc>zS8Q0kj5rHGrUb{#QKU5cjsw)1%b6}eELc)VfJyD&1at$`Q_rn zz0K&KKh#tqLBAWnSuGhrl$%l?KEpYsT@}ykx2BVqI4TH*)*ZEUA7)XrWM1<5Y_&MD z;t$$G&z-7}L_q|#lq_JT_7nI_-R#>k(XYgwRu6Vn5GteUQowBMK3CtiZ~0csTpn=U0)>_5@VJoj?9A`R8(xl$*1QU2yrh*P8>hPVx64!6yiLC#8|kRU?! zWva9jV#Lp{d-ML)l7TEH8sgBmj3)SZg=ZmBH+bj%%n7I;1+o5Wuiy>91h8+udM)-hd1X!1f0_pMvBgELT;4OkAn9$iz z7gi>KUF{wBnOI_Ul^os_%>KQ1P-CMS`G3)RRNsaQ!QeCT1$-u?9=<4A4=YI_o<_4+ z>*KaWAwh(0b1z{x_)L7M^O*?AtJQQ!j$)oIMrkmCwQwCm3${$uoctBV=A1aGs9j7b z>P;0kDvLbp9L~<&d619uu1gpoB+6gC&>{x=#_x!Dqs!E?Q4S8%LUv=F04SrxHwHt>~|lgtOo? zkzD695xLKg4(VyZgm1$MmS93y5hNJH8EJEY&n3sk45h2PH(*K60io8D4((seAdoT04|FZJ$BD9H>vR1QSAf zu+UEj^X^xkMvDF<+VXqfqP{QQ6HH(&JWIg36=ucO&Us!wHp)2f^X(i?cE#b_DtyX&Kx zQlt2fgy`E*EKv~88cNR(!CMerc&>D1Dr&Ou8`00{p&(R9OBdQmI(8LSQ2{)S?2#UH zT~aX_v;%f`Sb~Y0jU{rj{>i^D{)Tm8+uVsX-k}~DIktxAumlm(rY2G?M1_9y09I$J zqZL84pLuif&6*2D*Q$wR3@^Wj8pFN@X-R)Jl4>AUwFAVehPyJBlc_;|C$aCLhXhM7 zfy)FhZCJ(wy+)2ov7v4J!h{_pqW3Z$W_ zGNaB9hq6mrQ-TSsRXN*SvUm+UuccRkST@6z&S}}1&CJ=RAh4D&x3Lue1fwkDSNzai$=(OOEd03 zX}iNa_o(Em^RMZ3h?H)&o!^z|zVd{Z$&D!X>#G655=`J40ee(89SgZ}R-9+Ikwo|X zMdy8k5?-s2;x`)zBbq?Ow5AYQ)mmR@s}C&;o|G_ZU;oK6Xajcq)g%RhwS+2_5c>hz zshroYkBu$+(8!Ce+&e}=U@fWZPn!M$TJQrW92UG4+aJ`iD)(E8lH)Qdi8;NRGw&;X z*}O$Fi9&+v2bT~0uX;^muLrgk%~P)sZ1ci)E+ug(eG>Z|*g?FK_E=F4OyGKh6>_^l zULmux#f2ZjsAT$<{&NlX$TP|$ouQ#1!pj%wkC_zTxPcT7Z(5}H;=ApZE6(P=1RK2? zZ1h;7ApW+J+QOR_JOUL&PjYql3YeKKWs0&Cff?JL+rq=(WKe3!c6TvXl@c&A|* zywiXsn20YLCM@p?{q3K#K>R!5ZGQIcBckCu)e==eJ7lrTXK8UmO+=j z);h!c9}oo!OE3|w`b0Cmz-sw`TakTDd_DE#OtA{mz=T4p{V6etr_q3?(XjvQ6L+>} zioOG&mmrCPm_Avo0XygVHV=WYTd=NR_4rJ2ExbUC2^H3wP$BLe2(^&GiSVq0UcU!s zilavThrn9(oY}_3U=x19?VQOkKIOSB%M|ww1_DdM$FW%OdvrWiB`MN|NK10TlwVn5 zU!(t|feD)yZ0!<*lMT;ui%Eu$UC$!BBjVdNKwt?XqMMFln_B_l%-cMq>3Q#nNk_%o zCE!7aTB@?+IH6N8)ac1K|7r8ws>XRkJ+j0%5G4)I4Do0-h>z?gsUV(=*|lOwqj}k` z9vi?DFcCZf6$I7_Xe>SBQPNuTaV`(;k}rbi*(C5hQy~fd-O3LEk|B(9zvXA_<9tHboE}joS>ne35Lhev;Y=xfE_~I#UjX9C_v)9&S!>sOU8Q5hnQz)p|@j+f{2fh20*;NxZjt7=+>mE zmkD@NJ>lM;=(lW;R%JjlDI3;_vr_rm=Nx5ae54^&6)1R-Y&1byz>~aS@Oo@_EXe|hkuEYE1L3Qt+ z_xrT8hi81I_y&AZaT+S5rJJsnmVo!p$d7yn`R2&Z0#bTJRD~%CtR>Ahk@R5aWgE)N zv8%UZ{?Wq_gAU$Mz!FRd3C*QP;9EPt&bPM6aarE@?Ke@X<(x>3?Sr~&rV2M;SO6UYPWP{?3Wc*9; zF0yxH?{+Xg5}>zZ2`1tnPZRjN;Z;H0SIzdHDDT0G;hmp9l?2wRJT^*L*$GZq>fS$3 z&G#&vbt7B6eg}F9l3+r2K2WF)g*|64zE_+4XgOIa&ttilwrlRD?~x~O1nd3SFH+6C zJ@Rw76E|q;J1L>vUU@70f6y8}x3_;{NEfr=Z0Xhx1QS?mE^RU`GuTP?d3 zf^W>`*OK+37+D8COoP0+7gF}oskGg(An|y!VuB@@NEja@m!1dDs%_k7TOE0YSmXt> z&cpX>)YsO?wctn6@W3bO$*{GuaTr*@4cmE+HHi`x)P;98J+t&yXL1HFxZojY%6 zO{aPLvOj!2YOn+ox`DCs^j^IEc`rGA+JUAu?9S{q1`8f^ zHK!V~K0N~nmSE!JjTm`tGsqRK2EypRKdo+O%APn5AXtJ4+5Qq`QwJ9W&gCdR&f^eZfP0Caj9oIdO6yQ&@%ldLVf$Un{5nhWI{DxgS~h znmFR&-Ieydqo!DbiE)3flfzrXdbcBACq8d|m8{!lNpp_4DG01JO1)N&>H&Wn*9VxX>eJO#qw?L>O8lvi+D{?ALz7bheeYH|SU@hfba_`7vui4FAXy7x5o|KX(m-C2H z6_2I6iHY*x4Iu9)p_icE12gr$Cf-qV)O5r`Pes4N1nx0lsisqyRlDOw8^%?UfP{2; z?>@+H?`kRKcbZ%d{+kUwo=clQrpaT#&vN}wUXGr|a5AyulV*=$je@{hJs+jXRwJR! ztNEN5Jx#}6C4JO-6 zN|6IwKrKwIl%BUsmR%sS*`VHhM4fq`UbJwOGu<>=*&bL6*EH1Cm7hg9pWy51>ZEAF zG6-%l{T+DPdq4S48oBc_#Kr|J=x8TTihmaqIJe-ZU-4A@V@GFtx)`E>qjF#(rE{vh z6Yk0kGJ6K)@ZMt1l2`vACOhmE1lCg4)sS>Imf}=F0w!BfEWreBCrAV0$r#^nE)LpN zMiMg9|1X|QZo_n02lsa8H>)q>{suiUIGC-dc->Jy`jK6Gh{u9g=Uu zThV7s;pK1pR9S+%+F!aF%K>jwWd|#`E&GeFko)KlXJ20Evu?ISiFH((yab|kd>Pb0 zzWZ;QeDwponEj`b>=2wTS6+j4dwrgU@e0^aI$sytTBZ{$!9>aHG`Y4ER+deLvURY71aT!%m$p2|vWL&e&AlA?Aof$I%CIpFON&-5m&bX)|%Il*O8mi*3d zCw95B8yjqHORxkJUpu7Av*7LJGvm0${gSF3yXq-0)zhg80&C$~hg0W+FT`C*lUctm zIT|d%L{HBYxh=dD?Y@QA?yyDGVrAGQmK9&2!4gcgo|+;Xi~`GFV;+sm4e8;kH?EpG6ryAZ)WgD>Y&*v6? z)#sN3X+oSC`?Yf!!4gbZbPAOJ0Za8rFP^K|6WwXr1}7FV)=fcREsKI_^8fn*n0IiY zOTlyBZD=ooC78$z50bs$jrFSKd<=f@YeJj%8N~kT_=kc}Xbqhq{{-KUm^$AN_PP=M ztM#8Oty52;LJ~}PJPVaKwuhO>k?&I9=|3bZZU(aWjmI>Yz*^Q@!{x8w!}6uhhh@Ea zIa!@LjaAOA)?f)HQp{(|4&cLLtIx+rPScen&UYRw^v+QbSPS=1cmZtPN;19AJa&L) zYp?_pcBS)Vd+^2i(u1e5VP=x1N5x`x^rtbw1lGd+7}i%$r_vYTTbq)6jYM{wD0gZG zCqiAWOStd)myDMUKZ2!U6Sqele?5z?JycI@W|U5_1QU1^z#YYXhc%mSs_BGl?sQ|$ zV)-sa=Jtcg+_4)M%K>BHOdsBA%&eFv4}cfILKlKhq3ZMEG>x0anT9NIr&xlCnrHLm zQXLR}5)iNYFDI*}b)|NR@b(${Ev#kiGh4n2FPWLuy=3MzVioaov7-xHyHPB`MD)Pf z@*9YnZ5Ge10H*XhxitdfCqA}U5Ljze*HD?i$W|J728iJScgSecgmwycp;&^6%Ko9U zM-uqlwc;Lh9$OpIsRs?|n~*;g1lBT64w9F{%W`IQFUvXaGp8-$ev+?FkSip?giU6U z+~774jZZ@wp=-L)K|}A82D!}?1lIDnIz_$&FXTDYy^#0un-eXsEhOjK+E6UPgw7;T z-rW|gGRE9@aPoH_cuQzEsr5Eh5LnCio=(0BFVVy`<935vsXlbFJd4cDu%cLk3CVYo zJPKYD46S=j@I=a3ddb+Hbh!SNU;=9i*C)tV!MC=wj9cR7pC3iP)@EqtPBx@if{E}A z6XlY8$ki&ItAP(fXxB})USVEk1QS>bj{=AfH+B+@Tc1{Rx7l08_`n1nX>dmN{8WDH z-<~w-8Te&nC&`<^x3=25L^_+9C_e))#_A7D!s7;f)!IJvd?~5vby$mH2`2DZ0nZxq zsq9PQ+M??}ACi)SbXkBGJsnEmR=H`qJfS(%=)AL1_wDI&qX#e^uk$nH;$_oV#Os|! zokrdvSb~YOU(#fI=q1%ZP6N^R{x~+k`J$#%;V%V&wG5oo<+u}&MqM=a!h2&_(7aok z^WW=HEWyO~wQ2I-m!T&b@YC}};|4G}X$fgM&|E=at7!=QD;6V%dEo zN&j3^iY1t+)=QHe;60Ym%X|#p$#rGyTM2QW-agCo&?;=sL* zbT7P$Xz?ytZZr|=@h}^_VG?dx_@0+YMGgs$^vB=ey@T2u6Sy^1DvKVA z#1m~@Y5y}_6=`64@r)GN1tN^c)kPSOODq*Nv2Ey@YDWcuwE~y(wA1=(2&=xg2_PJI z43?O_mn5_3bch@Y^lUye%xpS@y+8I&6eGCLn+fw<6T3{T^*4RXftDUkG zgc;JpV-x!Bqd@kfL??Pwol%ThOyKbdk#v^NWIz8|DTe*MM#Oo4av%*N?!i0=?>S)_ zPNOPaSe%&yo2XhuFoA1fyDn8;xCiFMSZ?{TYTlB4eA%Bh%=oRr5=_L-J|q_&hq}t( zb+y~snym=;W93>&gC&?)Y;{P^ISCf55#>N^>hw??LMF5IH#!nbV6EIfDYEK3)UM21 zFxUTI@!01GMw2>dumlsh{lN=qaHM$Lbv}ErlPL(Sg?kU2^;PsMxSAEkc3PQ`n(#&P zxCc<9dv8iLEf>peZ$aKGm3<8EzUCgx@6%~1+Y*?JmN#ZYbN_@$X{HJSYuS}7lqW!qRR7}bap?GZ z@oC6hcJFA62B(g-a4mqvy?hFrI;n$L@#r?Ge6T=Xm{|X$ySbkH{I5v4<_NrVf23Bz zH3DDG@qx_Rp}lzSX@#QXn85W0XG^EYF_W>D#PQ%)g0*mZy8q$oz2kcP!pHxYq(Lc3 zRtVXdh1Tmn-9#yoot>02%gmNp2-#T)sVJ1$Jm+=F2q6j~lvM~JJNaIBpWpBOxz6Xm z9$nY-KKs1Rx~{8gF>eE}DNo;5-gw1py0CdgIns&7tqGQ3;^(wwJcHHAb~&lsLEgRB zoh?3^EY)4zRv@re*~2CL2E05A9i!Z9Omxv~yu6f+d)6-5kXqz&^Tf&AYxek^#|PQYo!|0;?tTEv!{`E{gBJ19j!Bq~UsA zCX>`jlA%X^f+d*9(L2mNHLzEItF(FQ$tlG6=_7Twu=f&{U?R`@FrRd)PIi4Oh0uE9 zLvBR3p`Ttnlkoi+*1|V*5J7UL54msEmYQuX7H{IvcX4_UmE`J1TbpG`G!5=K7n?`H zZ5X_|ovPx|B#zs{d+LWf!FNJwFkcEDHgvZu``VcYaxabD4>zOmz629kD`mqn-X3n; z_s&=9O4H=8!#kZM`qKv@%OMFSiigbQ7wsWELnV#-XS+MzAAN?}tQHBZ)#L6GULX2f zUn?aIIW9Uqw$oV}2)>Z81QV);bNCDkI31j=oJ=&_*eTt0b26ROB1j;xR*F^tpY~8E zyF;pSGEv9qS9)T%^YqLiF%7I`@iLfif^pvMy7D^V`IAPDMtx4vH{i1dOEBT-?927` z!Q0yL$~%CC^>(MLJTKBKeFFsoYq>t1!cE=ayd+qe89XPDwBc|Y?qMRPfwkhhdh=Ir z;Z|R*)YXv>hH3ZTCsAz&k-%CN{k(Zch*&x6f%5AdzHUxha#M&VI7Mu8ZRp|O;br#_ zc)5yuj7sG{e^~l(|1=vXV&sOC+_@oG@U&Fgqdee{eV5c^+OSa&!4gcw>`UOj z;47>{SEW6qUl-DsdM8p{!?^@YFi{?Hm|L8K_Api2qi|@U{SSCw5(Do`FoCr$!%E*N z0q!R1y#b%r7Rv&99+yVBAsoZ9yZP<}MW!?Y8AH)(&q|`pi2MzodeOd6o^4n{W1ncou;4QEhm;>B0?vO zSAs8sQ$ODVv4i^bU0OStCcvvnJl2xl26G?f1=Z|(8a!jbE7sI#+Y3FDX?ySjg|#qk z(ZYxCm*xI?JYIRxd`VeTCogQ2Hr6VcT671mLr8*& zirc>2pabk=CMr8&lht+8|GhXvgJ+5a)=C;3z(>A<-Q7rKx1ASy)4o)bO!qYu39Pj^ za4zq&5q9*AlpSPpm{$50i)7lRr$}I}Cb`S_kh@S0qLib3w_rP+=wy1OX%N8@OoT)S z^EdE*ch*w|giVv)DboIATG&h^uvW#OSUxWR&H#2QMC3lbbeH@j>PMgjkt8KJflu&+ zoD905@v=I>*PVeK%kkSlT)m>5ap=WqY7!|DiLK-LZ`hg6>ZH+N8cu76Kes=llT3fX zyCp2ag!!P8T>CiGmA`Uo@N)TH$6+vE6~ZedEE%~yfyYJy}(CM+r+XQQoD5=f+fL zmFJ}bp|!p-TO8rW7C5yK2&}axvzX__RcD2_Jr9Jn{V2B2OvUCmpC@4nCNd@!bJN1= zEUO_GfH>5A9DCRE34P?bU&0bhy!l$p9j{ksCGJcEB6yDvb4#|QA(79ej-QJ8Y4FVL zzgL&%Iu!FX@XW1C>u`}sXgGs4dSy)4J7!5(f(e{9ybJgKmw9RJ3O4M-GPO+UZW6Q z2aaGax!TNPgRk@~{rP`4qs`_&=k@jBuAoqt=foECpKvoeMn@s$>yKdB(OS&y^HK>* zFp*dXYWEdbJH1qHWggp3Ve241$MU>u0)e$~9l{-p`Al{x@*q96JVdBnOyGJ`sY?F! zX8l`Ru|&NQ63z)OlV;~LeiHnVby%vbMGy4q$%0?lupI}@BrL&1;go0G2X01#Yi>q; zo|&={3*A`NsQv`PTG2@_Zg_hVQmZW|yabza7{WKVF!5==NJ7jh@aRjH4X#@mq>)z`CEFxy_& z)R@3p;`lJuF(O5WJsG{;Lc)2+wGbb0pI3sFX=$X=udW_5CsRAQvOOm%)mVaws<{Qc z9IQ;Q)mWKMe{DsiPu8sBps$1pthIPw0e=iurlsGNHFdqr!NkYXnECV>C1D9BGT!EM z8?Z7B?xPTit40%xsdddXMV)S3h#)Lvt!O z%$IiEyT^-CtFs1sq-mCi<@4ef@OS+S8nIs)1xhapi? zzrwj}$%3b9EWw2F@w?nNq&lmMO3BriT_I9nX>{(t z$aeqBmCR``Rp-vT%)>$AUUgQ3we&nL^Mmk9U9X;!#uat@^mkKMu`woF)mVZFoE~_s zE7?mA{GHDdwl5OW!1VHK+1xo4>S~gbtD^_%v%CeKtWo0*5|&`XaYr_+eX6r&-BEIt za@T~}Uh`n9vs()U)(Ytf1gseb*HYTN^?6UWf3!Y(Gicz^6~M#H zI$R{`X3S*0zSW~4RcR8IU;?KNuMI>0WlmbNf=!ydTpci-@7*n$XDDFLl)i&Nt zb-*tK9lu1bC7z>4iRb>6S&?W(%-M%EDKfubj%0|=LDC@>9>X-g%!Z1 zCCW_AJN9H3-`g;|7&8e=FkzFU;oh(U@UK|`6uvZNhl1SL(kcA~LeQ$G;RUb)*b6Vx z;FmM!6}@BV%a-?!SF4Z&69x|{UjQqBxSAEftS2ROMk7DwFmJOOOE7`^0_?o(meC8x z7P7J14JAxqE!-F2rh1+)dHm0p?mV9(1&z7D4_*M<1&DB>{pA8*6AOJ;zYZ_{eSyz| z)j+U?vWBw?oJ>Z1yh(e`ix3E`m8W}=SAEyX{sD1?AvWM-Z=!L!POpsLDq#sG3MOCV z79U~7QKF<_r*R<*$Jb|Tx9t!JtmXXcA|GM|y)s7mRofe2N50Od=bcmJ++oX3;&{Nmzmji-&17 zE1A#)C55j?7)bhYAnHoI5YIxoGRTPGKY-_ zbj-v#DSw{I)8Gu*AEL=&8crr&P9r9Dn$X^-?nnjwE^y;}Fk3!J)0qFbz@vXvXBmWC z&=?H3fZ`7p9P%Tf3(V>Bzyb+NFoAm|obLwAAelu*wAOu%KwvH0r{SHn13pPSj%#BBY*uOMP8W-G?WX|j&5LnCUKIM)JASNq~1EQt8QMwFX1TX1Y5iG%k zml5NaGk{1v3WU4sQ)!%TYw~VpJAuGj<;^m9lUq=ZqbGnER{B&*GqE72+O{WHf(hHz z89dqmVrOQ?0CBQGBQmz7E;;1hQXsHal2aPLybR)~x+~>4ywHy{y|^cnK6@^-`C{9P zJboaoUN$5P?GN+SaDUR|Y(S=?&m)02xcvezZU(ED^A|OkhP6+lNo0Z7HT6RJOTrRN z7}vSPV-Eh!+WhSl9M^& z!4gb(&r0Fvwf|<_?0*u{_%YpsTu2O;P9D}JSj*JPQ+k_c%$itkN4mgh;cZ5j#$))L!8HNp&5$hxE~!JJ?TCU9SX z7b!O-`l>#*|e81 zqA-ESib}P0;52qyTAF!q#Z#%xmTLar)h3H`OD+K!Z}Rf1Bt#0A}%Lb!Ney`x2I5qT8XrJZJ!{EMt>_2w6XgCHyW@_pAFuAh1@^WFUh6X4NY_ z3q+_qnKhbOq;42cDPajF7G+oQ#6!?ya+Q8{@~j6-9Tg^>8LUSzfwfHE|KXZkh}La? z1_HBg6`y zsfp8wgx;&?wC46w8q=iQX1j?9xBH&y?)n;261m&byog)T(y#p4Ffkk?FOFCI3f zFSPFpBMK9EtiXxa#($Z$U^h{4X}S7#)UW?`6SLO-_-{Aio%)j>{ckt1Fz9&Z(yuGn zKYCS-C77^U_oL=KQMcwiv2xG|HtMoAGmi9?bjJMsZ#Usx|1Z~q-9#|#CW__in%zW) zn%#tdi6=|#`h|9|IVoWYCL-_t<>$fD;+mbZPJG#YI+Ntpv`_0efxue04ppk^Yktfy z-k(~gaiMlGf$I(4u$W9@L)>1`h2Vz;=OknFUtSlYhW6d4!!Zr}k9vKWOI<6LxqXB{ z;96+by^6=c{^McI{$r#=PuB8*4IBO1Ou`aO*#7-fa{~E4`;SKNP1yr~H+E)!e}TYS z#!i1~_8*sO_8)g%zoOgg_%iq9@oFr=#8!jfJm|j@$e-^^=t^Th*5bxyHI`rk_a2q1 zt?M%S_3%R0yVy{|1lGd62drg3Pb1;J!|9EFS<je-;Z33|xC-_hac}}T zuhZw6o?lw2oIsxQv?iXzd$Y*1=Q8W}{!()mwinLAw6wnRt6=lf!Ag%urG4e^oZtkq z#)9W#&wQyzasbnh4pukY{q?^y%V{?&`C}!n$a;P59Qdu~%(8FInWa(mW@(>hKAYlX zC}9aE9$S9r<}g0`E>TwDNk6O9jl);4BjwB0n7~?itiX9m=hN!dk5(}K-PhDuf(da% zrQCTZIklg{`uEn7a87WU#FCF**qkf~aAjSe*OjmY6LSo|@G>}ojH@|;Br`3@-4_yz z(Fza~XaouO$4Nf3kYEB?M7mOw`!FAZah3zFQ!31u9 z_>F4mMRFG3q@z2g2n5!`y$3vhCHs>{@671=e!0@^g%vy_2Tp|Gv}RM=&%6juAg$m8 zQtVe{Yv+(VN44mOR;L95YvJ@%s_3Y3WSiDg%F=d8_`5j0W~72U!TD8rzH)vw?!`Eg z-25>;FlVnoV67d`D{9Ux4F)UcS3|+?x#5Lw?B<br8BQSI*PK8$d}~Nf zyL&S8vDOlnV50N7Pdr08>w{Z4xP3iei!3o1$5zJa2?W+!{_Yd6REP%3$=!^Im6FNK zU}(X$YAnHo*Wgb)Y%#3i3Y7KL?{~>|tBV}l6R!s*TMt>TW!u!ifR ztP|7j-%Kfj7bzNek%A?dIN0D1SDF9KnwhTb)oM?kcTt9zVgH~USb~Y$1Ap-*k+Akj zjs@c0lwm2)w36vHcx!+qn22ingKJyCZo)=cEnS^Z?XcM74Bfgdh+qjOPEW4jiOZk` zUnpzpIY);$kiALN0bYe+0&B&`RB}}zL^v9%top9(I*{I5_be@`6GX5C69@f1^Q7aj zE^Vmnor4MtGYY$(rK_s~36@~OVA&_`H4S!?X?tK|%yVc65wbgl_cK6REI`7RKh-CJ^5=?Y9DCRwG z!??Mx5T;V?bRUSjG#9+wU;=AJJ$la5;Kf#O4`qB5H9nAb3}S{=fgdkSV6Bjb1$;RC zw);;}h~>BUq+Rz(qMb*AuP`LRL~;LTJjN1E?p7&heeZUSP3r-^cLE?+Skmvn6RxMc zVvK+njp$2oYM{T{VNJ^ml+O($SZnE!NBj%iJ1VOTkr=hZFugoJnSO69<_Z%5srR`F zc%x|y-e|zO=1Oh*Mu(GW1-wYXy#%*^uH|K3IUQPXfznGJ9(ZbReIc20cn^mOtYzcQ zcsz_K_d&{tV*9%|n3aLoI)fmBC795=mcgqmVL#YN8Rz@w+_81|^FMyoumltFJJNVT z1k5E7u|Q;K898jQIZMr|0|}O3BBMNu7ei0%QqvP>4Q`iSt(`=>`$0L-x3E^o?G)~6 z2InRFlo@Wv#L4#N+s{&+4-lUdNib0qaEXVXfZevPGK*eF+mr78?qTBL3&!9gr9FIChNpCI0bYmT6_Ox9-*t7$ z;%A|^yVUgdg+oG9Up7gmsSwu^6Id%~>P0Tygx`;ON^c*y-6OSSmn1rK62wtN5==y% z)bL2??U!nL`<`_=se#~$Z54Q8!x956%5|W(|JbI-@t0JpsR3;r68z87&6R-!Yk3!^ zaUaFC3TD(?+m&?qx>NrB+3;gQsPqh8t^pru*Q!5om|_oywL^v1V$7lu$J+s zi~Rd<*s*R`_G-mG`_tO5Iz#WQfVx7zsS}?6;nDx!*v7xXaAw)qH0}PLBpM69I9P&- zIemZCjCrLN;01Q>9)}Mf&eIP|0|f$WHF^KNX3Xz}F%PFWQP=D@IGm$BZ;1rfvMT$^ z4V0UonvzeiYn^^xXBBbxKC3Ps*H^Z+hS51SR^$EDPTpk$=Oxa^HF-Cd%f4NeNPn@= zulk>zLhg*4N7vN9D`jlmDI0^O_cgHePSV*a7r+bkZr;_JqT4&<#bD{(!A7z4etUfi zIjpat+D&!{1lF=xxkH`-mfrrQO27K%IGH@@dX>(fx=+FqOoaX2E-OCIN}Uu-@9C9p zq)mh&qxNeBLeMhaE^h)$@6uFdhRbL;m>3;4V5eNc<2#aIB4}@f{NNyrk1}PiW^}I? z>6zb+nU{|f2&`3bd8>S{7qt#5Z;%JV`=q`j4EQ>WQ294l zEMFR?&x5+GlTX6`uZ>oAUN7f_NpBx7WH+b8sj(KOb3Sa8UBRaM+9jpUFUPHw9yDFV z?!CXR##(yPCV3pZXK{h|EF$4x`dDh;+K+)ZN(oCaQLrXlRw4;pdaBe_{Gz8)w-df> zPWT@+)_V0kT=r=SuQv|Y0ORn={jcru8?AApqJG`r6=k@+*3v$(_T52B+o{f+sY05S^FBs@e zk2Ls8u%>2S#Q0)MY5FiNa(>Wuxz{c5y`z4rvD&#qE`T_CvvW!`dVO}vW$>Q*R{R@C zBkZLwDJdM3>Hhwuge923<%9e4+kOx&q+8~UEyY5~F@ft4&cZ*BA(O8*l1kjQ2~MNQ z+wF2prdGDclM)Titx6TKQ6?)|ot3I8425!F0@niAf5bYG13K~2!A>RwYvKA4iDt`v zNbQkpsPE@%QiSCec>}}@8ayOVQ}8=nJ`MI`gO}%P%5Q9uBeKBG%SCCAL0A1r;*NcE z+RJ?s*1|0)5?hvdlYKAG)8J3B64t^rZdsM8-Q;QHR&F!;cHUhnsofU&XBn(g+g#A# z9L7J{A{W3;KlixuF5})Kf3j{zV>)-%O$kddA?9khNus)Fl^v;L-ksn%+~VGHIdU1C zQ^WmWlQm7&`s5`g99BvUO>9f+d)E<-A&64EKZY!<5}bPW@2n1$Zf_ z_o<6OV68Hjb+Yq(xNkWd2gDS!P-%f|amu20q- zXdw_-tHODs9AXb^Q61&ug(mY>>9N*fCUemVOX>XRdy})Tc`$f+d(pJikdUuYy>=HFqqJJv@l%p{>$- zS6zX?S~kbS<=m;TdW}%0jxzgDR*A1*Cf(;@gsFZzn>D8V4`DrxLoB3d(Oqm>Q%c|0QrzK zI`blbAP`s!j{=oy^ASJtIb~0#UFYY*_`n1nX>j(cV`X#*p}qMdPlVc`e=tE z8r<9QItYFZIy7}Cu4_*W9(N~Lf(bm*;Qg*&09)obBhw?bK(ct#MULJBJ+9ShjrRvD zx#|n_rP(JnDIL1X#)shlN%2tf7x{k75^C3`(IbJtT8r;n$>G+}OUe>}*n4~=%l&90 zJ?f%MumltFFS^Nn6LFL5(;mcXuhqeOPkT zeaWKGm|zJeJhOVprmx^`>iaPu65iP`{Q*T%mm5X`fwjU)y2}wKVa54DDS7u(P1x?Q zdZe9oQ-UR!aC+KPHdXG}ZYm>c<$*?QNPs?Ro7N|uc)zC zJ90Rzr9fb!{gs zThb=VQXsGvUTZ^dKVm?${O!rtGI(WyR^gby{S98d^gEvE`=$r^__D9i6ET7NG>pMI zuI%geDrx(oY>InE(x$|n=fGrCh%B+Q?)69EO|s_=IxS`0)e&gNP~C!c|F-Szus)&-fDHonVxbOcrfY^ zS&ygO>>+oyf_1c7k9$t)DqH>mTYwMBTJ*}`-VlYa3!C!TN5T?J6sx<-_YB~C##LD% zw;nuz1(q8!@-SK;u$I^NuCk*NkN%RfgFL3?!?cVzH5|81Ag~s$1@Ig>)Q5Gl)llbM zTZP)iITVTY$*VIbX0Bi(c79Z+OzJB~Pl5c#=<}4-edXWNV7DD$z*C;v$%(N4aG9i( zyo0SV8>;qTr&kP?A|LdU7Y~5CD$o<^3fCd5UVC4l&HV#eT+TE{{9TJm8#xE|=b>Ku zTqGX$cti)b^yl|2obO@+YXyBBAU8V?Hr2+81?cuwN7C=^ zJww+nh7%Sf!NlSRuJSJMf$cI=v6fvmaa3yXsAL)r=et;fiK_e!vJafL1lL$d_x1^~ zJ9jRLjvF8nSj*!6I#~r4(v53;lD93q>F~XG5^V&QlURa@q-X2pKE;qLLnT*@i;vqM zo0df9jewI>B*8>{-bPtDlezRw8Btqq*kr7nahCr46eti_D=~V5Yyr0VTMsLBr7yR3 z7?lHF{^cNoC74JW9WECcLmEa(8jat4wI5oZMDy%L0&5j)+$!rmhEs#v%E`o=oo4CN zqt4Q)?*fH1uvURfggkl=_@J{>P7PN5&~m5-OV)2-$%=D@waR0+%bxCFC%jIvkT#m< zkVZe8rPshF4ii|bB5;SS2koI7sMPMbdp-Jof!du9wTmU%7k0>Rj)U*$7q2z=ODfgG zk?-x7{!XHO;A9(1FrhiRLC)9@cBw9}p>{u#d-k@k&e46RAl?L$V8W}-4mkp1L3}7w zJd#d(IU}vn?lbhk60l1}1lH0NM9Ayz!S1zL5fJ?wezy+*JIGyd>Wm4jRkU@hthGoh z+whL^`|;_rc6!o|Bsvgcb0k^9X+&?>RTmX#W)0jRM}>fgSc_L0k?7j3bH;#siS+k3 zI7vm{!URrRr5Zn=PP*yFbM!C`B!zL|@>PhOlXxpnvs@D*&)5y#bC%rF;IzS(EOCBX z$(JOWWEVuR7N!sG374HGg55+bWxczSMyJ+ml}z`*X)PwO*1_};xr~7|;B@6SV@cYb z)Z4d{=maOY`9Ts)jEvnZhaH2vyT{6orNV}#T{?D#ng@#n)+!sbNv<-4y}>+XANA9# zyF<{xv-A|$ZR0esR@u@pS+xz;qDy0eu>RgQJ*Q6+HJ%`*fwi25ZIE}h0YY2ZdD)J0 zaHzc|nbrmCOq>SRI(U1nyz3#XIAmo%ICEWr!=s91I!0e4u$JfFm9hogV7U)hYL{F- zWuIFKcH7V%Sb_=LtPt54ZpqvYl{FmqEl%zCEQzjFiv-p(UN}hhg`2qd!Acry$F)j5 z-z}M*1$$>K!Gw3MzH;RuSXq9G1|qY^dWSbrXXpxO4@_XKih3^cf<16IF-O^}Wv>ji zdwn&D=EDq!C795g)lGH|g*~TxED*%wSGuLqMS7=Spg>?PSF?fgf}3#8a9-(GEwY*Y zpUfoc(?5t{2__uVg1&YerJ7A{A?&|Y%hGdOi#t+aXVNB!-q;O0jc<||C#Ur{lQ7l!Zb+k*Xh8)y$K z!36$Ag_uYQw{6RUljvwqIMdf#FK-NkJgJ+pW8zub z3T}SzcX3W|O~b9s%hhxa#O>Q-(}Spz*2x9n%_cNSi!WHePJRJifEvfDxNEKTa@uq7 zixaN=a%TPeO255pND2>k5(uo7yM4WEoDVCR*$UDBbwl>HRhhIZtE)g@t>|s*<;QRr z;$P#fr~eikwxZQ_>2brx1WPbcpxPkETmgSeum3^qei=QE)gDTuF$aH1n7~?=eKyGE z;3?$x2!&|(b}GBHu?&r{e~> zZWQ$PkT*cIpXtLMCZy46Eq6;;GP3aox#dX%82#yO7MQMrI|99eBbwyR(VflTV8!oV@Z=| z>*UVUAn$EnX$p6)lRf=mG$+0VVoqBNc43Fa2DA*6FoCtia*QrIL7NW=VqOLsHU6&g z%5}2$6i8$K%m0%`{(n3AiX4XFLM0jt==uKU$k zf(eVhZnF7QAW9X#AKSj(m%?XEV{Z-r3Ix`QIOi${D4tt}zXM`XtE-ZcdOAC{xPgQv zm@uB@Dt8Wo*4(GmZj%9B$mN;#?D3E$0)e#_4{?!;R>L~cS7|}>8*U_ONIf=Z^%jA^ zS|Q~wa^hxaK`*5zUK=xle1BF&{jYA8umlr9sRL#E-9R|K0m5x+0BJ5YqOrc$B`gUz zF;M;z2mXCFS8MQ>;H*zIjU1ibjDBjJFQkD9&mS&w?tbvll&9QUei|`}7*v<3+Zg^Uy}(}={AF@s2jG+lE2WPm2u!tMx*>jg~jw^$5uy6F-IE+1lEdo43We4!%BuK9#8zPyR(uDUQ+)~ zB7wD{8B1Z63Rc**$5zPN@V0WMUaIEjpjEQxHduvkRaTa7E|=2C;3;gz;rbGm z2*it(at6HqbYG>s<^1}z1^bpcfZ1$rE)YMFR&L`E`Cu%(hdrgFG249*yX$Ji&R4FN zumlr{1488DbSU{mxS`+@93SR+>2V~K>da4m=gKkUsKz09I(7wwj?1QTLiIo-RL zYV5L#d9ZzITv}Xjc{|)>uhp<0tfQ2CAHS3~;N41gba;juOE951=_VI|XPPcMmA!$! z`Bv$t=|c8;e2f}P${G!lZNN%>X47*T{3VDuRm!BhpJp)avpN!%U?NBwBq#0!OQb+0 zSB@##2iY)L$~6IL<9N+7V7@g!F{?-cYaZKWp; z{M?D0ziZE4gm#dy1QXt)Tx8P}AXX?Xm=QOc+)V#QuQXdH5LhcdZ=h`X9EcN2-<@`M zG}&>yl8!N2FJXzrcNe+I4d_d7YKA zjP)nM>c(_r_ALoZF!A%fi+p+x%sz9JxuogB6zP>+J92WC6|uE(lgnXVDqmQj3DUUA zkI%!5a|`w#=5BIgI_xHblySavvJQE$&$L z3(v!i37Ts$A(K)GjUzwJFFA^rO7EVv4+ECbw_ONtgXLp+s>@@;=ioowk!Ds)Ip|oC>Bb)NsQXsI_f(wj~ z1{H7)38??U6L6*r#2h$d@RA=!dmz}EWCPo(SZIV zx8ZilUwA2t+XmMNyfD3~%Z%={V`jAt1OjV`?U7{sj;8#C$% zxxzUSy+$m*(LkE%Jci9o5DBb>a|pLGw_B046=~G>Ll1)ei3mO*(2Hj9tM;k8lyu5~i+`_Lx zVXE{!urVw1uoZHJYZRvq9v4d=NOiQDu_ILwrvbgR#sv0d0{4Rx8xX6>hU`y&bAiBG zIEN57JghfsHG3(2Ik*$S{)q7GW4bwutMb9Zt+%qWG;dmuogKcLnuZP{Sb_;W9wAq5 zd+ENeC+LhNegYwAp%?gI^V8^nWbYSGb*g-YSNFILu-6dq2T=E+^e88qTK^hLumlsh z$EZ{m0p}9XzPBLQR~RmbNO)FnqO)Ax*oXuJf+d*1X~XZ}pzHMS(AuoS`2GajW8hrj zGO1KuQh!Q@+gDS&Zli@Z$E}I|fqT*d7O4 z+K463S$S9bHh2`hJ#(s1SJ(;$*EF1d{JA0JgqPS~tTR)v62j?;X>@&5BF#GxroLnD zClFW*`!#{zsLV9UqQ0T@CvzsjwTP{fu>TsBYRC>Mb#QJZxyR2SSb_;L4a0HUrPvii zrB&sDLK>LHeF1Kf^$w)HjSgggI-HlV|2#ap0_xx6G4tSLqK~u?g zf+d*1BTc1xeaa`T%A+eYo9QSL$l?rJqQPnH{9`F+j0R?oIk!r%gT%cAdvQ^z)L5|YhiCIaQb1tnVOFtC9ySN+lQ=su@?4(0zM#4 z{h>DhT2haR;|ca`gFWeBJ7}2UieAtiqX)GMEr^HQw<$ zbsU}Spz(!y7x@apK7_E%I9O+nze-o@*rcDRHA~19CdBr5^Y1k^{jxpta@AD9VjUB> zFM$2|8Y*p?8beLLP9oUHD;|TQMXur7`o!zyPO3I{5$uF9fh~?zsw(wis((L@o|z2m zL}YP@+Z^{8m8$oIYFg|4KI$>kQy{RG=pAN2|38v-%M?1Ni#x$SaB-Q$a;zU-DQ#T* zg#Ph$76`0mHK%~*Re>jz4CT}y^Q4hfIrScmJTQ%52_{5aAI9Jb zx^8W9H?=bx5nWdxuog}a_G+=i)T-vASh-|KuxDm$g)Mq%4j4jJ;+u06RB-G7Z#ZRPVmx5tZssSAA)or6YUUt+P;9m=Mcx_goA1(5Nx1 zy|)hOaj1%)G=%r9t#vu}Y=k`?!E374P1tAq4$Qr8g@g&Lh5Z-7jpErhEMROh9Tn3< z7*Ti>iQbdyRW@T+c3h{An)eh4tc7z3R=)<;^mBhV*52QYV6Q{i(-5`*hPzaIPueNN zk?pCl6bP)9`0h9Ng!8K(?#lU9OmXYXjyC<-MbCBwd*#7)!ZhMdHa?F`x@4j zU9omf|9Epjt6PC?Y3 zrV!x>wK=9mV&_LKHom+wYrDLzkOrp3Ht*Hw9evQxku|EP63T(oz#gc;GoDW|jq!D4 ze_Cl1EWw1BMpl)EZp!s!ds(rB3Ecj;4ppi~M|#od9&W7pMl*uF<71Eb*f#{c*xEXj zF1qN*;R1bV#QXnA^iz1b-LPI7S4#@p|2pwF#-q z{5O9QqDNo?$DV*O*smG;Q~xb}a;F2q5=@8@Dq25QvCrL~(bt0r!4gb}@@ z0CoyaJMsL1eT7A|`Nm^B!73$DnXg{=KP`3ZF_^`FtCq0;0<48Sg28K%gSVx`4gDGW zsUn!bTG+>$O4Vy(nEH9*7}o2Fo{%d%KjIw1PWaXusY%IXw#+DB!a2cO*s~c}>diPK z{oLxwjJAFf2&{#32(R0&wj`&QrqX>adJ*gs4EyoI-Xvfr-1V2*OXne7>M)H=)BnP6 zz{=|yth}%mt`V^3oEWYSd8EbujvO!46>b|`J}5^{8`5#v8@P$H5Ij@h^l)xr{}GcU z<+n0pdk;DYY2Y@%G~CL3Xit)#meEFT&4qGcA8TS7CwtT-@p5ZsUs+!ua2nXB8=MZ> zbR*Xvm@vBNt>Enqry=GlYm|fxX)NE0X#2V>JBGM1m!lz&!>$-GaxVptU_&^XIJz z_R54~7hz9I(65Zn(lq-%OurBK-$lNgFoB~I!Hvmtp4ls}H@mSLUY;SZRXCy&rs0)$ zQ5|;als0=IbtU*)xTbL(!t0&>2JHG7L$+|Yg+O2}oLe{xH@1{+6%A$Ql8gxU_J%#N zVGmtkGkUVO@}l6@68V9{Ub#d<)_x@I7<`M?DjO=aAZ{D%{|>AkE$qQeB&I=czd+lt#{IxU9`bF5wXnxLSX1v^CM_uG!!D(F5D2V=YXq#9N7PGS zn(M~KI+zP3$1R9!0b=mf^-j0yH;nZOZb+~M6SyzHN~SDI8s8$Gj+^33%4$#Mo8aB_ z?FkU&w(VqYX$FzyIu&Se%s8-Vcoic}9U4bF1Wy$Rtc7Dk!u!OrRZ{V>7j(d7LVC2B z!o9(7OsHjTt_hjUTY{gO&}Owbjz0-!`Yp<&jC2(nKFv`euojMS31=BQze-)q&(WBD zLkRvZE|Zw6^w!1d-o33^zc?F$<9^~eqaAY>@y_5W=0_jJI`i`IiPHAMaqKqu7r_M9 ziZ`0et-w1>huR8pta1oV$Y6=Z_Kk9Mf=KQtOb^BV;&xx$v8W zzh(Po7LRBR-o?7=ahx`Ij!fArZ7mtZB0lO1<-i1vQVQkJIww^%>CIA|S`e(26y(qC zpM$O48aOEsqMr`09VfND)0Or0=}52y6F5pKL^9iNP8zm1W-03W#Msi8?}!2GUi&&6 zx4+nepGztwJsnGC&YKeaT}+FF*5zF3@tu}zXNr|TU@b9Mj;nK|@eK>8<>=w?BKLoz zoZ^0kdk?JPj9Za4TU@DyZ9gIMA|4+>+a~kNU@;QDUU?N3WNl2^71pN9Dm(=OYiV4k zaIcy0UUa8o!877du-g4re`!$eQd03|5zqC8=zfDWny`rFeB?NY)yJ6zM;3&8PFYt< z=%pu(T(nFeuojM9s8U^wY9!4jy4101DJdQ_i`&LRZ2RWf8mxt5DuTVi(_(2+j{}+W zy7&8_HM9SvKa=46;vC|%VI{*$q-8N1)MGpN2?W-%Nb=`(A49Ch23MgR?MJVd zKG=?zw$`3YaQ)zV3vr*zKQ0C$ngd}p+FClhW2W@mc%eXGE!?u;W9!@%Y40W-=|aYI zp*?V!#9WzX9!bsCv}IXWor!nCaXtj*k1-SUIi5>!>|C&SHko7RxX7HT54#Cbbuocw zC3vwFeBHjOziH;{f>lD4O5Cq-uT-geg!`pkb+D7}U4@>A;#y*@oTTIY%@|d7`Bx

    Dxx(~>7}7YRuS!MDO*1oKzFKwOMkqNht>#fIAM6eO z6Wx`0w_mqT^c?Naq87IzSRxQ8ZP=xH-K2BI_h;|cY6-bo-1#KefG6l5T_Aehv=jU> z#NfGB;{&@}NEX$9GmcF=b6&#bz*>%W@w}ztC2zNqt7W|!v3ZH7=resax%?r4SA*~I z(ndNQ#}-a8Oyu6+nLXG{v3H(5V>#U~O=PDw6-)SAxJ)>0cvT#|m)5$}nsxH;OK{$? zmRP%m{)1@uA@}I$w^K>ws05w_e#n3L>Ts-ua|mf%smqSrwqdqzhC&*c82RZWw=xC) z12ul`+`JpIjC~DR+u5cBOE7`cR;iq4G-E4UnJ}-Y`T~KqigqUOdtYHKF;uZ8KN{VY zxusXqEidX5EWre>bvO&xsm-P=zDJ{4$U=KyLM-|9S4Y8<)ftHXkywd?#Cj za|nq8w;>J_V_y3G&>oQBxu3rj!H-nwtpw;y{G{9T+AkuY{vvFk7QQN668B>rCl zMB4;AINLG}on zmcMCkvJSh`9U{1($i}aZCh#n8co9D|SCg{fB!36iLxaO_L7S%yHDgU_L#92n0l^YX zsGJh`<>l}ie}MA7{Zn>JR#w%KeN;V?FoCrqy-)I`hhRk(ro5qdKVZgw7Bl)gu&9KL`1p;dcIaFmW3C~>P*^dp%Y)6b?bVe0`UBQgI z8e{nFvv>%9_rI&b5s$$VDeGTmpOug3uZ?~LM^DD}CX`RrX2m{gyJ!fzvQUfQZwa(> zJXe9e^DKTB%F(U=Li)VXL>AZPrG$wTq=j<}XG>R$>4CA#sz4> z)5?1Hb$AKQKIF(!htwumg7Yr6N9xo#I;UVLo1Xkb5(tzlTqc!j=WJuZxoNuiQe`i0}l(mZEy$ryP&+tmQ;>iDzqRbaG6x9O`c}yC+jw6 z?1H-xT^^4|JWIekvcnzi9Ttse|8CV52&`4nY&mcF2&{yPm2p13e=CRN^NCVHbr9)s zF`PTsgYofK>?MT-;oK5>W!Fhcd&K%{r)|9>NnO@0BUpm_mDnEpj|8RNXgZtztGh%X zu$EZz*~bUc9O};O@=eIk`%8HI6PUv<xkU5N;w#6FU{>Ak+@$WGEoNB6!sK-ss$)-C|YU#ruqS+C~ zFN58`hucfd!PHQ06$AJHf|)~awz}KA&sV`nwW{9Jog5CcW;>{V|^&siGy4vzX2j{ypgnZ z-#%$!#9W~qxaZ?CsZ_GoW@&J%o9a-Lg~Y4JCcd}}jE}x08e9uv$#?vHC;6T=qfm3VZ)zP3=GH0b+=Rt5DTmG?vWCNu5qEu>u2WLYTp{sgV*@Jq-u)~Y%T{mNQ9+wf315O;EF5%xZTwsLSMxM$!R#pyvg zy1$cVKfg#lmU$8^!30hZJRt;nN?QCS{XB3o!Kq^{^XVITio169hq)ghSD%J8lBTD- zvt#qk$b{FMdEOH3>{}Z?Y4WawbAxr-*|VosXkxrK^Dj%GMjR@Dh)%9U)U~@Z)An_Q zH1Kx^&ky4PcJQSUAA!&@YC)1)G+|f&4}rCCt;5UZ(r41Wb$0Ajh91G+^&GZ|n@xk9 zeEX=;^xMcoM#0~EKS3JZ{Ogd+t6f+dU0s2|S~xxM!&1^sn*Z6CS!?noTv}J}a6T^- z+WGtE|5Ngc^b6|LwSnxyx6=Z#>)ICHaE?S(3jv^#O1)X z4%W+Cs8qFU7<*p^Z_rV_zZ$WL>jgrtv_ESw4R0oTy^$Ke8^ny_z|$?NA57p{fF1ok z9jSY)E}OArG`!#a-x|d=E#_*=`ypUcbV+^W#1hiu?h;=AHF&wOQt^=H%XuaE#TgT) z;wc-J@%G?RZtr}>qeJAtM|AEOAF6%RTNt%?JbG6x=51g!pT7SOTJYkn-n7r->+p(h znvh0h;Zhz^1fC)ei0Q!@*`_B{Z}u|v*$k1uvxJyN{7pU9yTfbsS&vjKI>gI1X=i)*eb(S! zg8Q3Fb!@1&Lw@oEW|3A)Ah1?|V-&v(2$=D0PBt)sXPjIPi%N}FHFpGl6~ zxGZhR4p!su;`Frj4)gDiz(>w4C5_cnO~|{*-;OJu4I`MqS~);?f+wxpZxzBet_3-+ z+MYSJ#8n`$mROEt@jjP4QrNo(N~`mmvCSkNs}^=v9a-vrsv2 zZ`wVbZaW=A$LyOd5Lipk-i_PFgU9CjanK&UJ^p5Dm!6@y!{-nz!9>WJLA+A&Jlsop zfjx6$E7r-m2YooWKPl|y&aD!`7h__)2Imle3HG(u_2`{bOX;773yDVU!X1BrKW&d= zn!GuKxbqP3Tt4`?CZN)p7u(!XihT4cbL-nMIMWW6{O0_=hk%kSN zLa@YhKz|;80DNn&hiC=k2k<6w@V9~D%X?AP^~^O8nPlZ`KhklX#N)v)ctV#WnjBf? z<-w4Xn@2Qd6;8Y=0z5AMR6H)0^)1irX|p=Rzu!uNzl+loi5A<>ZJ@{hwNjU%QN8Eu2F!4R*Byqov(4M;XW@dW{=57z=*k`^0H* z+u%Bcw`!l;vfiKPWa=6^3$=?0T+=F5=%{Wi;e(;{p`k5_Y&nQWHiTB2eq4jo6Vo{G z(ty1+A1ZD29!gwSx^TTB@Wp5nqro)p3*foFo-W(`@`HL)&={eYU_wm8wdy{dX}eh( zQ#MhkUEIz%ZHP?z@;){0v{4%3G)W+^mYA#9gB@vFP@c4++K=FR$Grsi1@L*cqBZN@ zS)VODWkizFUHJldNnYAY7ra>i?)}goZqH(941xsA|n%?$nON8&D*`RO%^aZ#J(^V;H?2b2K<=IB;@BJnMfwgdY z@Oy4$&n~2$ps$}aC3rT#vrk8BcW!bUUI+#%GsEiPr!!3lPh;6bpGZIJ$^19mXZAg$ z&m*@=yrnPPZHDRd2rDOkZvy=NS}Dh}nBMejpO5r?EohI@0enVpxSf0<))lT1mFm`! zFxq#Z#Hc|F^7B$Z9z7K5WI6bVM|6*c{rO3V+#A|oxwV`vt<1-d|RetZ7L90t7F0d zuIUf&sUInIwQbE>>Qo7N3K}~qj|70Q@1iGQGe@hCK;SuMz91Eu6cGmBo=1Zxe76EL4?{< z*No=uT~4qB6JA^Ta?ATl%&?o*Kr`eG%z7Yy*j9?ehnl4kE=J2%jtRl z$B*_1Nt7+gQWDC`n(mqVWT^-tJ4u#82qAk2A*7dmO{gS%4xy$K!L&`@j2f&-I*Zo0)UYHP@)b_ z|L9?uGM@~5bc?J^A4mO0b<+=D2hXDU2^?D*+Yst;Xd-z%Y!7+=2lC+zy67#=z#SZ( z2RKG!8^VdbJcEp>cZB?Y86a2}BSaoqP$3;>I)!XK7$8_z&;#*?42ToOo$v0Y(;Ec(H|GyHl?Td4&At)y#)lO!rqjm;3ZAz6WcS)U_=L+ zTdlT{&{7m%Pqi*{2Ly+6xW~{e7(m@{%H{ROxQQxnUTpG|VE3UEiDIx+>r70cs zez5M^99GxFv*WW#b-NO#?CMW(3r57Y?5Hm^fO?|~Dk5dwB=>##=dAsziNbn?SEB9F z?)otGw(i~P$}s*xH_cchS!s32k>VBsf!1KymC2j0*&pbwblPYqAn;0^X5s;Ro{%}R zLS03Babr4kbzS9Cu|190@{iuX2AqO_+*FTs67_KV=LdNk-dJ&ND>LQQU$Nc;3K0ywgsQ4(kpvHg%kUz*P1tI_PJ;G{}1QNj*`nv*w&nT0l`+uL{0&xJ4SwzofWJleIt-Sn+8;s5EMfybTF zYV@DsJ6ZGO{uH+e2s9rdqw#qQy460K+3f2gAn>dmzQIlJe-5IY*Hs?DYxj{s>zC;& z&&(1u$2z$dwAa6`3p)b!o&rMQ7W8yglI~cJKMm{PrmrlAI|jx);n+9W>QLKvq%pnv za4DH?qopCCuKJkY;KAG{9HT`9bErX!TGl4RUknxym`ao?WLCDOb5~>XYu6$gKcl^V zs}aaM%u*x?VOsL+X1r$1eOq^q28dSFWoiSSlMuD7pZvU zs?SLPEAIWov2R4{HamSrlikZp=}@;R&5dlYFW&@_ln)-M=3wAWhnbP~3tMqR+$DdUfY@CMq+xl#sN$MciOHc+?+>vWVoG%_I@W2aNxf)S!rk3T|uvX^HZ>7ZTsw5Tu4|&xNn1hj@cvx5=KX?S9ob5kzKmLFp+zS88 zsz1WtA7{nu{FOE*ivvd6X)aXEQ3--V0^NGQZib>Sd!T20^UIZNj`t(@&6X^*RaN{U#9YSxa&IWT*Fxj8tEV)Fcp>%M*ANlWu09g zWpUpmf?F^GODIVWnk2S#ZfE6PnVm3pu}-)r$m=sNXC{{ol-5Swsn+~Hw}L0j(M6vG z*|AQLJ9w*rHL;FopI?oj5yxxkzto34`ej#zk&%0+rvB|W$iQx!4VrfxW2#Iw-^@yU zd?{|hV@dS6`$HSWeR?cgWG2(tb@%vmxQRQdjjBU zFXZs{%GLMX)~)T8t#w@4wH!|xvZt25qylms{jPAV6P6b4F)_T)W=)PGJ9VR}Ymuq` z{9MS>U&DEEg_-^sWR`>n<%FCLl1?_R|*nOW9zNpIN|T@l;Etm-!wK zyMcpg@c|3HM=DtNOBTocL`39APnLQsgFJ;3h_N16c5DT>ujutl_Ui0jjqkqk6nhHu zljc^}JM04e-s?fCkp2&ui}4VT25W;UZovpqs`-YDok+DJflsFhJTMyjNs_jX*rAL1 zK7!qzIA7p_brKPOT2)hu0`IZ}drx7s;}Py^n$ORFfXMa$^~NigH2uvk*N0sNk+t|iYxeKZG7tsuuN=TW@k;Pnxs;ar33 z)yP*}u4Xty)o=?&h&(*6HKWVwjq<1()0hg%U?ij$mU_YUUU8n*7@mI05ShiE=k+n;DYCs z$pR046rT2*VCDQ5o&bm+yq8#I5&6`=7efz)3Oq1^pZ&~>w}G@=U4076*N`5sJcz;1 znY8%mSAHF;nnHu2I1^b~)O*Io+z4VzuF`fWTDtg-3XKJDBs^)LHAh@rY*Eqp^xx(iei~ zoiKw3WbhbRC6e~4JnRDM6R!n>l*!jEsDMCJSVBoEyWNz&OF73THg}`03l8$)D{zZz zQxm;k=s|7(yOv26M*7HrMDBeD>U929-!g&>sx<9a7qJ$F6KMR1R3765tEFP9kNug% zZT|p*ndq@a;QYivMVgQH_t?f}!4y;BenmvpqXxveNhjs`HCKvTuuh^L#l{7sX0@J* z%>uYZ2}y;~qIGX&G^dAlm$5}nn^G(ZmJnM6@=F?+(yhZBl+YuVf*u0D9mzb$3jF_5 zUExf=TF_a!ZIyuse-KyHf)S!rngmB$`uG*Q)v}?;ASXU!BLoYJgV>IKQM=Uv5;S6d7&8zpE_EQ3L``w*QSJ#jFZpFfz@LuZ~TIkFQ1 z0>6!mc}0^_9s|GMtx)y&=feu(v^t6m@S843g(VRYdFQ8)ok35?rN03bw_pV34ewWm z*_!C;_UzJug@RNVAqmzUy2X^rJ!UXB#ZT}#_GZ|GLp*vWWDCh^Y-y6`7ZU!_k!?1I zid-~GFjZ`BGGEmMzBvQb%*^PYTFqL+64JbM0!{PI=dG;4=ar(ZL_O9X>`ZQMTR}ov z&8Cs&*SM1l#4>t6;}~uK^d`?~2bT6K1|EAX`Vc#Zm74Zb76=GTRZ)}kG`J1y=0P>9 z*shI@rp2@U7uRJk6{NzFU^INIt#7MoXWG%Dy?!ahEf^tMw`R~+V(#V0zUW8O;)N-k zH-|{U);Ap6O|(^?l4272d55lg+le%={5bzo2pYC1=NQe09OF^BkoSDI9Q26zTuKTn zH|ky*O`y01BSapCR(ptH>Kcus#cYagQekqI=fWLc(;AfW_}h#x8UnF1N41XS<)1ku zr%)npA#();row)L`{=)4C$molbZ=<_RVk=ntP_?N&PmOGMt(T2(;T;fYI20YRB7p_ zd8T?VS)p2wQ*l{OZtb@wr%m7s63L6vB4TKla$UfXB9^3`Nd2BBXp{G!g@vze^mu02aPDdK{_q4V#yoHy+TR87{PTLCJ!h_*0 z+^_Bl?Pz$Omj$cO^MT*G=|(hjSIh(3Q`~|PY0<~DUE$lnYrXo;(EZ#+)^LcMa^j?& zAXV(W16n`$u9@d=rmwh{q`d??)i(d_RF~b1Vb3pnDi7z^r?|z>BUPIWZ!$JL%>|tx z-zPxN=DT)K<`05*YSb6j99snTgx|u+c*7i(ii70@OMw!0P(S zn!A?DsH(aYw_t>5-Oi01lw)73D;qs(3J6SPe`1fe6@04&e^&i*dZ@j!B)6P>Yv4d} z3r1Mx?$$1V2+J^?`tI}RY){r}#Q7?M0S0g2Kq~GSdep zD%wf@@W%QY#%^JjHXPn}llrS;_f6bOl9%qIoG>jA5SYrZ$yMzWc;8Lhu8!R)%hNOm zn+GcHlRgtX!tq?u9=f1a-*><7S9yFmVob)h8K!LAV?r?kQ(*}usgXxhdeZzH^Urgm z#dB|K@5B3Ua3k17UVU2|re^7VHqwX1-_+W}`>xGa)w-ijRFG$VDp>=24_bWlrnV5~ z^R_o80u@iXuAOTEW4EC?c6&GKOnhS=vsZEu#Vta=53;oekRfz-pNi;vCtvgWMGd7` z=T9Znf^`!0Shj7$`R^~Dvd`TnQS1+l77>Gcz&TzQ3Ro+PRuoHub;1^bIp$n80|XphV~-7ArJeeYQC(NAw7S@S=n>6I>f0_ z3*sm8Skk2lb^c?cG;a)Nez~y|sHd$oQ6rG%52BdO*kNRd?@WqYFe1%CuQizuG0VN`_xZL- z+jNgywvph6vuUh-p*9RogvrqIOwMK4&svGuA^)OBg1_DmD-n%gywy(#+R z-rQpLZrdtck+NaGN zt>+K0??1=TV$^~Wc?g>fpZMtfzkkkq z+e)5PMb72Hr+QQQ*d zc}E*s0tm-D9QOp@gYq}xW7|Zr?+5qYAu4R?_+@$8`cQ+Jx>2oz%x?Fa40U!;(l6Um z+=3CJ9!?<#NZ&FqW&C_|0f8mKyd|k-NDZ>K#v{!bheb4SdmXtL;)$UUPqcTdEgL{Q z(E{R$h3l>4szvaBj2cheUGcBx-J@0{=H)`D)cZdw>`l=hPxmw;E?dk zsB3OrdHOt9uU6|hwzR1E@n%-E^zK#72FUEknqz(<59W7-`1X6IA=_tAED7c(^3ZkP zM;2eR)fm~$77zlJpvU9H1mXy}=i9$c6QshDU>m~j>*k@|ht>8`yyn``Lf=}l-%Xfn z=DETw!m|sWYOC6H-`TsD;@hgZfWTB4`z++@g)j#X-T~|W?dw1XjL%?Y|FoxR{te`W z?l5z1To=5Cy$L7dNp_^v>Mk4bcp^3XW+O{*4o7I`8yr&=@2MxZ*aCa3bJR0ACiv%) z(R7jAb^`pqqP~mr@M<*lNPETXk+FclRD7(BY`p@c zEm3*2k6or2nLSuZcwLLyhSZj=;JgfrwRbqSo2Yq{Mg>HFu9tG7{4>G*VyU#N>&iiJ z53frn)mC;%r^%sagO#xho)O%F5g{>kZFs_#oOPktKG<%t2W;i@ z0f2zBOkjmuRfq0=Xr@@&*i+ns5u)aIyFMrJb!#gAT{;Q2!c-V7No}ilBIf6NDXDE6 z3%0_tW1XN9sY7EjX$MvE+*=9=Ooc5CCwb=D(f2nB88K)rjw`e>VEy2RqgM&+-|Qqd z@8WoBe{4SAYip1d>YvZ;x6S9SiBPZPR>cEN=kO?~Y8*C8tt%RTYB!4;lMLrmO%M>6 z%051v_knp6^H&{L!<9-_bfzh*wqq2HEDz&$pFqJ(S&oi81t&CRR6Eof#Dt*i6u%kN$QQWVflOR=U_8S%y z*opBY0U`oXVSbVn(_$N2>+DTlPnkjEBRshTdqoy^GkN@GS8lWf)<-XR)9c-fuQ~w# zZ&KeAQ#&8k?K>*5oEnQo#0G0_H~s&6(-Y8AXk4i-!DY3k#a%$4e&Z2B3U0_PVOQT* zt3K7(;t{%~Ewm)R-a;x+RX5}tM!{1i2i`0M#HhQcS$7*#Vht7RSYBud;!9W6St z8`t|P$B8xNKU}#T>=s|igP7IMhCBeGQC;9{yTB=~d|B0mNEUJ(d=B6t`Yx=V$|^>cl@(n(xo^AAyE)TA*bsem5ZS~xKR4=VFtPD9T)Rkdp4^PdjzUJiK#KnTF{0>Iy9HZx16FK z+6bO-!TCI}TZlGH56_QH>Q|AjsDc<6wq?W5!CnzUU@H3yr9KLHQa7v>>KHB08?)(t=9U=X|~S`OCkgh*Ek@Bd{EIQK6j_dR@+^uGlH0#n&99;JN^k<_#QWe(WCI-*JJFj|Sa zE(!Ak&xydzp4#1NB=x_{fj*}V$k>#jN{1b$0s>PB5=wsq9ccZ8bIc{D9W8d9@?Rv? z3o-`+ou_D{;QZyJk4F0V7n8K3ufeW$uo_8yR9=^?*nOAPX+4R?cN(v)1=#|_AX@-a z@rvQv77!N=j#r;J&M9UW$-W|HSuL1iTVX0us+4!{G)Z4;DdD}~{R;Jk*A)>_GV~dl z`>DG!f25Is!2Cq(9@yW6EvFunUY!RsQ`YzFgKh2ftqpbzav4oL7#%ZrY zTr}yw%mJS%hV)QnYsJvD2E{EHAxbp_>WR`4UNL8zh5`@mieRl7#H?+!us4PL1T!kI z9gTCfQi8X>CYTEAfqBDy^gs3!w+6|qO(D#4pDEgoA0hMI_O-BHiL>_003GqqIKb`= z9xEU)Rq^ym+HZ{^KfwD9%t6hCV}u>p!K|xKpn=yXXsbdY-tK8Aj1oM?;H@vNg!D*V z!1O~#3kXaVxM#AqWGTD>bXA|{{l=Qn0&NYp80sV2jMg4&WRm4&r6S7DYG~V2=H$slC#p>i(e@66w}~Hy zdW^t5LBwnLO3i(33las9qR5M~R$Fci_ozvFt<+Wf63+T4+ac)#cWbrpzr#1qM)ey< zs$QG?yP_r;VF0;m2q91f^w-84f*zk#gvNh{=4!2Q*4QP2N~i@RiqnT{qgucW-le`- z?kMX^wi=FMF=rrJi(0U6L_L1}eMYu*nWbsad7^;8RHChJNrXh(2a`Ja;eu55BQIW zA)h)9RocHPgIK^|ZKYc0bEtxA*ZXMmcLJ5wN6teAYahlzUdCqiRFyNDePqO_!Ah?A zM}k{0B5;n6*5MHJtTj*) z<3|VxOeIQn!KEqHncZW5idqZS#lFFomZbD&Ib>mb1I4Iq4;olGPP<_w_@ng)F8D_9 zN8cIVq`!WIQdIPlVEbT;ici2LQaqDeK?03x)JcuR4J;7b^ z^W(_V26afp&RGHvjKKWhzU}3Y$(ySkS@$8ZQ@yD!uR3O&_5Nvbc7=*7M$NHgIAuiu)C$su!$uh84Wu zOZ81gyO*=wV^Z0aU!$o&6*gLlhMcRmm&INBas0 zflA=fH@}`zeS1qKesHCrM`Uj|C1EZ|qJum;!Mgtj=Ce1aS}KNTn+vuQ5Xet(VwUAy z=1|97nUG*X1*%SU6j!J?dk5=0_AF#s#CBjEx`4eaEvdvGG28uM_kHkWL92u~O03&= zR?2sjv8tWsRKgl!A7I}|5fzclen@v^a5D!gVM#DQL65fPYgqCYjnel<6JaC@5(;B? zS9neOee=KU$3NcGeqeo`pq}d*mM6>)sZTw=$kHIocagf!dHqm*TD{jsw%^s0;ugFz z;F$(1^=5lo|K=LzYSUdnV5-1Ib-9@t!~@Lofk(%E_KM3B7dB%D@OTiSM8Ik6MljeT_V$Ibd+ZsH{9RKC@`j#9sE9!K1a>~ZFkTf~$ zVrM{1g`TAAQ>w8_lWwH!Bvc7uswqLNfwKue z!ra~3DT^L?V5w#kP^_8P5Z!&%-nr817~CRjn*db5tQAmF90 z$4oyFfovt%P^wjItekvctea9}B$WnxE3r`^yI(2C{6s{*eXv88x=t4y9wH*JZv=mo z-W}&8p4(uR5@XZ5N261otaQb)$_tZMDEi(G|ZW+BtQ2{C9}G7{JUyvq&86Gs`21 zliMgI=le^-zf|Wz#Sl;Wb%#f8GUkgOLR_p~9uNFz%sbzMU6~7NjBIjI8_k<~os_-_ z9Vtd&s`xt9c~~CA_dQia#EooX^6nzr&~~^m&#_d3v=VWDOnPstt@OIukxKq`_)9e- zq46CqtP(S8bIW(||57#AU}Lj)WYUI)N>amCv>3HugvjH-t{o(-T_>fj4x*e`Uc?XU z2PeK;>?S|!I4PeKTm{XsgqSxxIepe%NVyV7esGwB?ysp6%(Z^>f94&YkCKvf?ZU(N zam3Oc;)xi6s3N7WG|e4m!BaJ#+OvD3bK`6ESDL=Ep}fWi8h01$J{6*zNGI$YIKgc8 zz;68y1}H^me-n(rRN9OW^q6|acSqH_hbB0k_v=1MS^DHD!7UhpM-1F@JmZ4S^n1Rh zb@XByx#ufA<^-#ZEohE(67@*j>8dLya2@W?fWTE8l&EZ_c= z+fS0TX*RIN1gn~dKdz=Uwb-Kz*FlsMwb<7()J8RfRrLH*j(dW-R5^pK7;DBVCxr?; z1jJEO?JWbyJ@2Jf#s7YDl>P2mmpFf#Ch)*IVKnT%?mNPEDsMEO$IYO)1tUbwD}0jJ zjtfJS+Si^Fe&IWfe5&q@LiP^wCbl|6oeNXgfV6(f$r<25guqn1&2O6e3TE?X)q}Yi z#!8Er>Pp5*h?kT}+UU;^E4~lUT3bV{ogqB?Hr<8OLaS-hp2Pnp>i&7EW;JWltf^vn z-2+Yw{l6B0AL>bx9{gU!>e=;E+ApsmB9I;!4SIZe%iNAzD6=g)Q2QyS+WOVi%&a^? z5-cHD*YpV+l75k`S_+wfNcQ;6M%tlu0bLJvtx->KH%AXAW!n)CWyF|f1Z$2Z5pDHa z?yMZOUC2tponZI%|N6xvQ5;u>(LY(t*&WRI)j$D(sYI!Umfd8pZzZs+H(=}{c`9ZkXd17wiPOv)ct^NfUV%kNJmeGsYUS)zVt?v(WD`PDoJeT6ejSF2w|Ra+Ko z5>`%QBUePws|O7{S3$I<0OC}bs=~+6GaaH)Xa9>vwch%H+`eqBt6wvSUdlG~Y}Xf} zgNqFGwQ3uAMot2>qoIEDdqYom50fm%D{36B?cioK=1L2X;riYbw_rq2Pb1GMVpf;C7U3^4`J5PMAP3RpWL>o@zAv>||s8-f>2ryCKTG`jZ+@^p1N&LcHg(RK&~^&xm<)n8vp6L_sR2<%XW0AcnZDu7O_E+&b_csWQ*%9+(~? zATSlS2uL+6iMWqSAj3KZArUa>7a}K z;z_Z**gn`Iu)-y1$XiVa$-ELyvDa|Fm>-<}eKwo4XlF+{Z4aSXTPz{g32x|ac8nO6 zL&fZx>2OEY|BVKW!2BSq*vF0R#aA5?&%k%%P}rF!VmoDQgVj-74Yj#>m6dA^3c za7TL+!Oz(LaJrbTC;9sB0lN_pMEAnz+xZr}7GR>sRQ8dEo>v>gZl=GwoAD!M54j6* zxQqA7NahCv&lK4C@$xp)XAd**42P2ulNOulz26&n&Vrqvg8z1YnnWEW)4TOm>bn?G z+=3AXvkW}F;nuf;N$NhQ%gR)Z!^v^V@XU9lUFT|^*02NW1v{WcWz{_Q!fubvK6Cx0 zbeMy%!*BXu{l_N@7jm%FUs)1qN^uKDV17{D59git&FiCB6g?nVDl*&9Q>|XzHq%Ux z^^+u1lj~$h8k|F)U`KHaMu@iR=TM968)B%KJRB|{FqJ4()Uq~oo#q+aZrgyqc8B@= z8dd`nQ@!9#xN!tJ^i)b^yQGI&f)>QQ3o8BiN?BT`KD zm>(Vsk~B{)B^Nf=QjS^uBOovp)(PU&rG6yeW`y!M-5c^y!X zVvAx4MIK{!Z|ZJzcnEnmdI3%D^HKg?0jt4OaoyGCeUwvR)t>iXba45qf$oo`JsLX- zyZWdF&nUdk!#Q5l8h0N&%3FCoqA87a`y{u5e2=sK=6XCT@pyy%kDCoIjIG^7ndH<* zKwzqn)gNRA`6UH0YQ@N>t%2@?`aEUw*hv((V1#I^Yns+{>WU0q&T&GuJ{59GCY;Ru z<1hF9`#~;;TPbQCuHs>hDrAHE5XFoC3vU_cHHoCctU0@!I-TMcj40p!L4JJ!&~TSA zoXYh+Nz)}iOH=iAv0z6RN#SqW0_hZf4K`! z)E+7#d(lC1{!T5@^x6!HTQEZ8@zq2}`VKhjF}`q`zyqVPMZmiH)jI1fzRK#)wluxt z2YLBu80}$jDlGCQwmOXVk+s+==bp-ht@Z)}Q@L(?D;K##hLEZ1!9D3e*h<$^Y`aB2 z+T!^O*&EKfA2vqP`}chzuQ~+2X;#IZVqVBWf8Z7aCv_j^;cLoHnhsXDVn&N6zLhpt>wH(PJz4y(^Q8AZKbD7K{)z5A1oJajBuwO6Nwg zwwRxp-Aj2mT?Q(>Lp`+5k&tS+_zb8@iYCG7gO#=i3rs6L?$SDx(OFg2- z`dV~vNlV_YVuh=_P~3tMkqs+kONiX1)=(pN4i~c6&qW7V^sh0r#OsCZANe=a;#da9 zqkYk(7jl}*-^`fO(|~B)d^fXymdrvSixszEgy{2z9tE13J2gsRNo#6v_fd9+c!|Zg zJABd2kMespvpeVxPk&k=$KHpp@Of(VgIV>Z3*wBGzbE2JVR(h?@)4*W=5ef(sK>uQ zuMmqB-4v%`btpz)etcGid<<@!%K4&xs~Jb6khLG0C{cR#3Fh7izq^pOjQO_$a6{fEv_#7idsooSdRkqf3W0!w> zQhQjVcDMhV>9XW3$KJ$#f;fX!m2M7M#(Yxd&~(pIIb=aqW(~WOJlDBIj=58nnc5_s zzYTgR$M&nrY?G4)wu*aGq&s_J4Vz&E=jkIV+^>k}(=>x6+}%Y&Z;zw6C8JZB9Bm8z z?nvWl|Gbnfo#FT66ToBVjN`g&c^8@Xbr$vB_e$RW>rZBl%Hv!sm&@K&e=?6uN#n^g z%4G|?s?2p~j{_obQbYFk!v>Okc^1Vj7=ii03b(+8?Qi`=<8^z1AQeW7i0vElFZ$Yc zB(>izq+c9g%gGI@GLLLI&as3TElE$|{jJJqJ&EfvhGGr3JCw?{V*&mA{!>;$(7h8|Z}25GpLruWPhq+_Fb!brsaw=8%qryGDp8mjZd zsmU`Pw|MgALP-m!T-}w^X)DlWWU2znQyP91LEc5W>kBP zuszGQG{&exZn5BRW@=6bzgY1>E^PHTGl!n#p<6!4F1`L{zKuEqh@ErmQ~${7Y}7x# z6t`dm<_9?we$PqzrKYT&Ly#a9MvDmYXg;~o?KYXYYaET}_*V9=Rh2o_`vk{!!xn)` zJ>Nuf-+vGJ@oNJ89r#YR?glogbCP4UXscO{=g5`*M@Uq50L3jBA@UfvuY%Nw+CXZA z4W&*4-pj62U`=d(ierA(mG9&q5wQByI|;U0Uz$%wrYt0_oB}Cs!3fM-lIrxRO-EWc zAkB{X3AVys!@S{c**g|A^qV#DTscTUU@FWTzSX)6CF5^5Vq<*f2?$IjO2tf!Y2RzH zZ1BYX)K!8}(h@4!2I@E-G1!}sxjelYJrfhb`ek?s2uu}mcCd1{s%~( zM?;ii*HW@MyGqVZhq>12Huul^BlApn8`yH2H@;IPuTpE59Mm~DBIX$x*T+Z6x&2r` zU@Dh~e`PJyV8sNfwKC%$#Ap&8jZiGSjfHuR=eAkgZ}~m!%ETN~c?705A+F*5mE$d~ z1O%qS5<=zujv>T%-f)HN{zY&LM#RMZk#lc>9uHL>9|jyC1M`L`=ZBOE2uy`_g6e_p z4)phs3vB3ucCQg8zy-UjRJqPz6F|x1UII^_e$7tFGm3}{gC8oG#>1BJco-?ZA^BdQy$b- zE_VJ(FcsEAdqDrSVD}JB%2p$B-V91d;54iwO%24 z7ClmHqAm#|5szbt4x0TTxt%7l#lMCM2u!u=rsQc+0rgnMS3s($@pY+x!zP+l^#;-n zwvy))s3i-1k;yT?-m@jo-D!}G{|wF}lqSBkqBeiOYW|ELARsVR&o6&v?|;EoOs(Oq ze%pa&RyET34eTXIg(caVBzfB2f~u{1YHfz2k0mYmWTRQF9V{R)73K$(dav^}c3tDi zhGR2n%-Y|w3)tN^7|w7S^h{?7Z6Y@0N)B5?}ER2YqU!%p?=1LU!-R&%)jEWuXTJ{T=Y3v4_{ zvmLuhbH^EiR6o-H$kyuU`@*@%Beq&DF>kPn_%#X?5SWM4*D6^X4kNLa>W^R3FOYRJ zi%4{b!4$V(9->r!tM<81-knXzm#Gw66pwIm>^_*;(8E|OYZ|4)iCM@8mcR_>9dJFxD$sNc1bKQ^<5OAfP? z8xtvR!HDpfJ@S%o##uIN)Tr7kYjdT>%$bbu8bBl4?vaN>)#uw8xg7JuJxS7%z&9+= z)}76Z4iFHSDt7u_IcEkuOVZVvQIF(dY<*B)R%||p7R}x#_ihF|pqH<5OqH`@zZ_By zvw5L9+M7ded*=HW8iTmGbi&C4a@UhE*M4R4=vImHXgK%7#a7Q7FF7FF9)uA(QLX2k z=d_M(a~VeLriM}6f)VMaiE;>>`|&nW4+!hvj%=IL9FjXNoL1x~%MRn9ui>0yDvXAG z=T8>wMD0ezZp#9STP%GJ%MGDsH0Qp;aZhmG((OoH&AQWxZf*p{RH^zSawW{i(98de z7}fg_>yR6(@!C66(Bl%>FQ=)i-RH|3TLj`hgATCve5qzqgIR*DFyeo#YnH`krUiRc z9towG3j0PxB>Xl}v>R&bZVeqFc+mdu9yxIeL_9Kc1aHDdLs1Ro>EzG4Ce&XTCD`W} z4L7D&Pu5)to~g8Id5Cx$9hUo#fr#lXbA5Q`5xEaU(z`4(*PH!JmJ^4=*-MpbBz0h^ zlWu*h0ZOkL^(m%uX_z7(gZ-gliDv(UF!*SytXXi1=@<8+cpl*SanX5?oCZ~?6y?JABP9IiAvqMPOv`-D^;oA8 z??kyHf&DLMRgXKX!&&swP(|Ni2f-~EA!=@*Kg#MKAEk7YFO!3d56I^szU%nZRFC=L zp42Lc&FocF4<$RbF2x8;Retk;98(weEbP_zZjXv*tlg)k%JtF~v~l1*ISgXD!%U3z zVIKSCu4-lJ78AYwk$rOYZ4hDgP@|m3&s9?rV1%eg+NKw5o|C=e(5!{P1EaBoaJq5G zKAlreGi7v8FN((!ww36Q>lvXeb8`V377h0aBb(qcCTjkq<&~~e)8AZtQnHlBUbrrQ zQ&)ql3dbu0UNInEa_>~PyZ^S+&AcQcFxBWTH|1ogGL0!!pXaNVv~lla-$H3PuP1$* zpCd1aTDy60?ikj|;^1{TI|ydiP<1ag(vqG3@!do5On0HU1taiGgA*N+80AMUsf-fx z#^0AM;hd|O$ya%jTztU(;?p`v%d2OP)yZ$_5;~jeSc`1|38QZ8P|xZ1MA+X z&s0H=FRky%mGH#z{dSpSi@+#(cZqa&iaNizf2d$9jPTCOmm^=oNSvTP&tE1TBELq) zX&$YaNikK}+dMf2p5Yc#vbcyiyna9Ve0Z5={y2!%qP{Rf93_9o%_AYTsx&6!=2A?B zN2Q2pc5Il&yPua5*3e#m0`c_j=HuVvR_A}&pnlqhSmZCQ92zgy7 z=e&fS#y09(-$zzO?m4Eh(GU7k>xB>GDM?TTF}R9jDvXAc3ZFbDkzUT#Bi3r2|6m7YA; zY;N2^8F#Fc;16MaMBao*s^dap|EiNR<*pOO{bK)%JZ?11CdF%Ql}U~rDb^P2Bx>HK z{x$ORN&}^^M+b^qFaqlbUn~btlb{=i*j{+zU=IrOT=4n8^IM3o@nJSKb0Wol77%D% zfvm70jx1S9>E3F?B5MEby6miGv~7^|uAOekMW3NMbDpG+YMLWoQgbH$8&`GCxGTHP z8jvP+T<9h59J%lYyhpW?^u?t)vO$`0)-hkmHAu>ly-&jVHU0j=%Fyna4YP|qMot}? zMs0WAkgXpp61OSBCp z3sPYO?g>`vxjMEubs5v$nIIrSt!~PrIed9-gNh-flO)wRVy?6rI+%RxF;GC@elc2- z%;sEWC+-zo+%#`0#Vr^i>TzJIWA~i>nVQxGOK5mPiah8Ye8mkD{ekTU@6_uKo&WLI zi1yKq6cCu|YQz!wJ=EQHf%-4V9sJ(l{7QE8$uTAql+Xq$&x;N=RqSEr^tzr-ST~+q{ljmdb~-mPG595q6=v- zlxDm?EbmqGWWN68G3O7ATSl?4b@Kf8_|q;eM#;8Jp}}&!WMx$Sr>mGmKJ|B#Wey2 zTVaH#2b`SA9#jue3Qv0x|MxfKYN7Z1zK9`3#yCH`|eM8JoHM0F4 z;=xsq%2{=Z9VNMO16ndIM^1YQ?`l1vLII&g zgwf+1=D)0|;#JdyVyQ3!_XKAZKi{S6*wsaO8tfq;lEZGuoz*zZKe>WVa6_IZoh^?d z%KU+K1O)CEqa{iI!<05zx|KDW(U->fAC{feOpf_^9Q(Xz)nWO0ZTLSy&CBrbl}xe^ zCo<#jK@_)O1Rg!G6F0Usoi-qf_57!!fWTBeb%*7brUqF#mTD$Pk1@UIs3t+I-+Nn% zTQCC86}aX2=%sU0)&wdkZ@v;K?1+3&-2r`ZNANTDKg5vT-kv)$W~|bs71Z`21g5I6 zIwEg{I+hqeHR6@~+rT}tiI4JVf*r*z7$I8se1!rviD`4~~c^umf z>j!5vT5l(X?OH0AT{}{YC{|MBFKS%?ezjhaDn(g&tbV{!vqgv z9=InsOKQN&~HoEXD^UbLQUea@!9I*y|NAKsmZ>^9w7yQcXD<`P_ zs2@Vs7*%STkDVtVFqL-TDtWWR@601c2La*ZKT9+0^)S-n+I))pwa;55Z(j)aNt^EH zT{9zP%Y(q9=6*ngOfV*YuS?{>rG)|lQ(=Cfxm!)@^gV<{&gw^ZZ;g?Aj)5KCrYCq> z%k}b)a>z(=IL)2j#>l@tV6Qmh1n?O9^ds5b2u|xcK1M)bs`NTBa{AUknNtrO1;o~) zv1H2j!Nl$644S@cm26ub?$}O0$g$l-&DU=&C+_{$YT|;&)712}^4s5VS9q@!UY;K< zXUvCNxoao!@?mS`-!=ba-k5b5cr@Y?b?&p_V$E)2Lz z{rV@alcNv($z1m^6?jB^`AT#fTC#6PM+*o{g>5KFU5d_-j9zt#u16@vvSTZVn%_=5 zM2>Wh)%>$@rhvdyq!J^1g93umg9 z(!gq6r+W2IQeC992TaV;%EJ<367&)kuK~_wWx>7GW-G<6N3fPsYjRgdz%CC%(k5z(2 z{;T12oa#y+^?tx!kEu^_3r2L^8zc8=13cQ^2OhDToax%z>1?)xlYqdM#?nfX-@f zXW1H7q9eyue?0YS#Zm&}iQk$T0s>QE31N?=YcFMiO%3*OUQ?Rk*jBdO11m#XG7o&` zBLDvMJF~{L6rQoKt=!_$@64%|$-pD^w>>-5VJaif=TO(3?PdS=zcbrxKgi8O+sQpw z!^+S%kz2ZC&pgA6uqEzqFoRwN-D|HuY5{kKF9#~q)Xq;YG@#>Iq z;eppcim9-KX&>6k_JN?sw?xom(}uJE9;6nk+LGlTSB(NRLRfV$zPg*RC$L$s>4A|mHE1znm-e~C~m=0;hrGYcl8e0 zdn1mVN*hBDhOd{O_l28#r`+dwPT;u$8S#m0$i#{-7Y~Qe6%d%JXu}5CU@r7@y8xuB z(fR`^8g8$t4Vg~3h3Ci0QF(A{Q^O*-e`lkdI}hqE*FFHm?d2ax$GDbc-^>63fvK>x zaQo?LiGI5t!a^g5(BTeoax7G=zAG%|MyKQCmxti@^HT2eZ=9SD73R4d^7#XpIs-isBZGz`P}?*7Zt~*y6KpVWTmE=9nMu38GOh zQ`!5Tsch|y$+UP@J2}4ys%s!)9FKgzO)%QwR+4#R)V+xYH;1umHb+^@+fyiR!3aFl z;O?4U9h82b7PIFeE&>8mh1j>1?J|M)fBPSy{*KB6lU1zVwN4bbU<6)QB&lV2OB#73 zidFh|p=l=n%K3-kTQ(5BUy%m|&q~1)lZZocGCO}ZNI+n!iWzaT8Js+9Izx>C)FO7u zpELQaG~Zd!14}skTU*)V4eS-2RU>yxJ6&SCT^y9g)-JSI(_YSlyF^UAP4yW!TxDk$ zsBh4~-d&3ha;*-qkC&&$MQi;CWbu1Hvb&o{3J6Sv{RF2#?Kf36Uwq7Z9Ca5whb=bFAG@l zDiMLH-X?C6{h-d%F-nc^rkq)<2~P1*PL(vKzwfS+g9gJs&L+6Ov`v(pqMj)WdpA+` ztK~|la63CtjZ-%)u1n^1rAoDytpo(7y83R7?5&=FdsdB8uijFJHZmw-HZ|O6^q)<# zdfsc9)=-ai5~XrXGNg%Frb@s%7aF!LR=&R*&Veg8(qpuUxbmlzd^}*H?0C^tKwzqT zuUL8LR;b$iuV(a5fV`H%^`~W_~M*TQDLyca6NfEAaTL@@UiCnsh!% zm5j|T1q7zTev+h{7s`ljHwR_RE_;e)$9BtKvq3g{2v)zPt|iOgUnLt?)>k&v=|pjh zfDmletBH<0%kH3T{oGjKfzeneIBzL=60@@EpqxF_j^bIg{eA~Iq8IEa=bPz=Cv}$h z!d`mtVRe-B^q9kT)bUiF`!u4s1taXgbd;|GV)bx!Brd$~!Rp-^tqke*kzfR-$_VHp z$B%>ge^5o#{E?$Gc`#i05N|B-z*HGeyUD3A^1T97#9OaSwlcqyQhCKj&;zd}SVDN~ zJG$wdm^6sfm*w*e|cJ=m#n=7u}sJR5Rqdz%_j}hWZB=A8cDHATSly55Cog{34^mJz3U~5rQ5ehkMJPV5h17 zI@ksH+)Hkl4mw$?k<_C@>(JE7K^}+C4iXTU3QGw0J6k1@s9vV@+97WROM z)QI-!yq+yeg06t`dmwgP+`oPT}p(ZY$O-s1T*d}WmU`~{4XL~)eZ z-;0tZc-Gqdcgp{pX}jGQHcBMT9A{D7g2$EU4;uBOTh;ltYDO(Xy=CVxc!S(g!tJ~CfgDkI zPb_=Ehgb8Kk(ysrBTJTMwd z3pd4{yUJ?!jbhJCf&@KM<5$V{a8luheNbPEbb=doe!OFeOIB!lT8RkE1Eb-|8F7;} zG`G@S=r@Jp7K{+}INkZByTz|b%BoDrGDV{r`~QpCN_oQwSe3Nu*gbc?ru+A0y_Kgr?Zyu$chw~m&XF;iCUwdta?%W6%G z&U>#8(Wo$iKCzXWZOeo(X4b;;<5QdLwiw$(b!He3_jI_K@xN(`l0Nh701Xy>S;rugIyz2y__^&Ft2q9g4LSP|to5m5HeHhkYgflo#6r0}e>!`QZOZl{ zSPSP(w2=|T`CpSbhgTrD8* zxEKvPWw#DV?>XDDpc~Poww?Qw&Md8Zmj$M+MywCOB_tHkd~I245Pd`{c8$x6wKi zJRj|skIGs)1Uwz5(*-Q0*`H|N($J*tMRQM+QK*M1SwkmB7R~W33h!?8pE=2Q zS2?rk3L{v8>w)v8QdR3UB(^Jx-Mr~2Ah1?-zlOSv0_U$rVPU_ad)HU%S|Gg^kxX=7 zrqN8;s}`TyFI3PloJJW`_TR@!1*4=GpBFi2q}t(=1WRzuaTZ|ba*`)$jXiQJ%31qDjCd^-NS)bj@`+ z(vMBvyvE9nU@hC^U>bd7(L9yXumlml+<|!Y?%;d9wzgvguFcpXEqw)S95EZgMqJMe z>5BCSJn!DC1WPbNj6=Qlfz)m6X6JWoCs=|JI3v(;AHL;RcK<_OnFJ@X)o!DAQy{|2 zjWUh{dkdXvw@qwe`ZEbwxx`YZr~6u=YeD*DTuodjxb3FUl8>%;_bUj{k$GDKEw6{w zU}c|tS~k$baC_N?)LyyzV*|ZV3eQYg88QoRG40MPl7H)70io?kr}`gY#>jm#whgC$ zpK;}PQj7d@TLT3I9v7qGA98UVvssxaxjP>h;t+f{rc*O87kXlpnOI-(j7>kcVXjyA z5bS%>K?4nd74Cw??Im$^+gGsH&$+c%YEB4V3BC(9TqED+e>_AE}BEafR~D9BCaf~)CrqSk)>|Dz&1cYV6Dk;J)JuST+(r+ zYdKJKz-OT;nr~P!Az=wdXiaJKIxzA*=au*4QLz&*uE=F4H-18@_8X{b0NypHUuB#t zF^Wh*c~Cc=aVO#^k+@4E76jYL+vMNy!B5T-W3Cq9g)TvXyI(^6g`+q+F`DAYTbF036 z`qVj9U0r>;rzrma{aNwvvcERJIRjzgbP+>zekfd+oBM`I9dU^7gD9b`IN%9=;@f zZ~8nYC_!TKqnETNN7@s!-#Nd1^`o-i=IIx-7riUnGj_kQeb88G+Y`921z)= zzZ?}3zdrWD_O<&7?c2b9pw_IfUC@5)lRz|uYgTx?W6!#%ed(@p?ASlw21<~?wgZvc zKmxTEK7M|C#!osO6-tn(^&=iyvqA#3#%*;$d*Pg{4LY)Bwcv{r+fV*;r!X^Se010L zmfxHZw#WSA;P&A9@_pPrsWY+SsZX^pdbLh8w>UDVl;Q> z9^76zLB?Rw(TBAkdsDQQ{_u$QSIn(j+8-5K6p1mr9@d`Nn~fl$ zG~02UL964K2ZHVM_PgW5%$U7mYJ0(Evfsvud$bpPIBTOB#sdh{8oCXXAhF=)N$uGe zWNn0_LISmLPLm=XPWYsrkAWH2++=e5jXPx2{%^AciOC1_v}eEFam>LFPzz^hI37MK z`la#s;WZ8Q!NIQoYN!u3zp+!Jvkx{8e7sa2bi_@6ER_yz#1EQ@AVFfr8P_yA`{3Yz z?A%ZvEbbiDP#-c+j*pi^_#jAd zzqNjtt-!j)?A4|EAleNMibl{$khpquqq7epF$h{6$DA5#R%{>j!A5mXLw#_?eHS%4 z`ydjiHFO&&L1M;77c@HiAQGsBb2`|nDHfyI4l}NK=H-p#ga4;lf)a-3b|+{d{OZf`lfQ}kgil`L&s(jFVNa8EXGhiKS%Q+r4=!jww~c7wo`yauBo^ItetY3QSsR4XOaxn@*1~npZ(n<4Ct~Uw z{q1XiCz8Q4&u@=gCEH^^d_jBqI%4&7RG}ZZuj%*nw?F+~LSWm8s2vp&*!Iu_YK?1O z*q**kc2uDalpx{zanyI`mft;V&Ay#)9yL%bIln!Nvb$olBL^`%8@I*^dcJSb zp`!*+f&}J_MRC=Udz6#T*t5Ly{*jJAt+5}wu>FlbZDYioJ<7pP>{*^h{Xhv4n2{I7 zWzRj(cjx1?$^+IL6*hD|XX1PP*%XzROq6D*x;2qXtld1YRc;#Y^kI*?a!W zbIZr>8|ettTJ^{!?Qe|JHjbJ7MsNA*-14&RMh~C_3A~aiiqmfVNAFP+=T*FwzLyW0S$%%vkpn0}023d*X>2I6=^d!?Qf$8P>Z)8it}}7 z0wp=2^?;)I)!uvk@*@w;FW2ptHgvx@^LbB3-1L`;zkDAN@2tJv07{VX{_&B+=9V9u zx?bOlmy8-%^u7M}42tI*6ERXRe6hbh>(lamQM~hsx#cV0AKmwXy+;n9#1Za{Go^KO zIbq@(eXqW6lq2w5vhecr+eb{*HrjU|UEaI?8-3S*huQ!M5_pCyie1j#w*2K8A1?1a z)Dx&R_$`XNTWTAhJZsys_4yB%pEz^m07{U+^KMZr_~Ijd&wpZOIq9jCqs)~D>>_p?pUDgQ`Eg#>C%*zqgviSN@k7Eay2 z@BYosDZlrjQ3EJJ0&|q27<1Ow_Z|DY`Q;uLk9GuVt)R@Qe+_NpwO?Gl@4iI*a*g!{ zP=W+zPQjy!;nAZwH@K^NLYP;WCybkD-xtL?A9$#D%g@ZKUO9B^07@L;GJucYv~%C< zpE|c%=jEsNMFO*dm5VQEFWp4iE{a2Uy1%dZ(FxTWyB#}#T9_wz;>H_$$|sJRQXSFg z-4`WDVCGa5haJ6LdEt#8s=oQl@dHSp)`D47TcTPGdslr!paco@;G(#6pZVpv z&wX`ZzX3XP!oE-oBSskWCP&ddDT?BlbA;dd*N2zgRZ)RywM3`MT>#Y>)fJna_Iy;wSqAf_shsCE6FmAtj)sdS~wghb;eMI}b_T*k^ zyC_CadU9ZWBA&W&6^iRnkpYrk=-wsFYCQ>$O>`TlC=Yo0)@1|M@k_pGB=UO(xZSCxyN9Ju8>o~hj<5cB_+x#4-pmuIwRHG7?O{i28>62*zFIo_vA)lLWaI!!kXZH5+3g9( zXdBaS->q7->;vVA|LY0VYJ7EGd-7G<#??g3CSvLL>8c1MNHkBK*Y3GS+xY4~Z)@%J zsZ-0IeLaC%<1Rn1J@F20cU_5IRdrDT{XWw>{)GN#kAL2FI_yNT73y!bAkkk#%c50`>xbBe!Bm^RUe-_zIyEh zPoUQ1zH{4Cch2v?WshFttRaayRGq;-g&yD)Jj~wL))LQk*+3o2^>UGpcThFb2 zvh&7$XMdbBGLRrqw9an#A0>A-isJljkE%ZR)H{9e{>2lhHTiFI+n@fCw(-v`j;c;u z{Z8MqZn7>)aKDS^wtx0xZR3G0x32cu@qlv2Phn{Nz!=aso-S&SY) z2@+=!v1nIqV{uX4Hj2*Ye}8-Q0G}-ni~B;F&zvh0@#nt`+{PKe-gG`k2@<}IElHct z(R@9KXJl;8pPeZ$2?XaQD9H&ss*nSO54!UX*T`6z!l-2WTpdIS5?FIeM3V`;qQ{w! z)r3UQ2HgdK3Iq~vPAd}HKmxU}Dxv`YPj?idl7fVr(~2~60=2NZqX7TktWbgk&gn!n za{{%n=Hv;KAc1o%5VU{(q49wF6>5b{_5i1a6DUCfuXknV!Zj--Pz$qKPhiCZkDa&mnjsxkldX#qB+v@J4J1&Dzt?M# zI-wFIcw4Uk(oxYy9FKVYfm(QF;R%!=QL|OV=-vce>!TJ{6MP#eK?29d6KE^EHpFrA z1WJ&=EB&Df)WT}CCs2X}UbhcTpcYou6Vc=m#QX~LAdIewpbZ~)k-!XRXacn`273ad zJ{~)sB?8eD&YwS!Kr8q*a9^l}*|{fBf&^AYh9*!8uQEJ=5+tz3k%%Ub2Sy*fV#Uap z2-=|aK2Wnn0S$d; zX|_Xc2?@LwO>NW&)WVTXM3dWa*%DmQ{oi~L=P_Q9r8eZK;LZqYq5l`flCRAz&;9%p zz149y_TqY&!B6ehUV5io_v1RCqB#BNbIWgUKB4afy4pqw65}?J6=G5~`1hk{m2G=-_hs24l-B$80x%1Zqv+ zb&vL#4{0sq(F339J7Df{zQYl)PHMr6`?oh*t+k~$ zu3gnTcY}G=jUz`7@V=(?O6G-Y)mELqPkYranvo5=a#in*MD)E*bsvx*;a4FYGWj=s zKkPlJx`(Pbj)2v4gFE-MPkv9Yw(lDAo4##6bW*j`RdhE4B)DH(^+b0R7f&kp`sd!& zX5aG!YBg6*YLBh7jd8b5D&Kx>?`qX8bbk;ej)2u$Me*pQhTu=92mt>$6v-_i;?i6wV@yQliqW=Sw z0=3XLi(ZBs%60XM4V%|^0X+< zA>z}kR`&j;Z`1%vkSMnPbbG-o8WWG&X=b(7VUPAbv$iKt3)iR8*x+2kBa76pAbF_`0Z2kV~sD)F@E2%<{1Zw$puM4($e|66FQ_H*88a03tBo-V< zD`jb=lgz}Yueq;v&21-^fBR2QpcY!1Rt{WoU+bM;o>=ydBLdb1wU~-Q4oc3q65aeguDT--gwh4^FTC?HyXf0%MEk44gf52kY#Os?UCMdiC|6k9M;J z37lg^@#3Yc2X14wOkXW^H_x8;@=>3nICq3SpxzF*{D+hT3wH9o$Q+xk@ZDX4$kGH1peS9_SIl5y4 z5+o+SHopDoFKHWFZoGFj;-<;fN5A3;)N1}>oA%20w2iNAxOerr|CwBM-$~~WkRY+> zf^FKX$Ty|Fd-Q3iRR8gDM=J zHz_-lHoA|SSKYPGBLjDCKiUzfwRHMs?b+Yfn*JCfep)^<@Z-Hl51<5z1)B;XZOpoB zZgptS8h!7q8084mTKd^7+B^J@M(U3d@$|lH^qqDw5g|NeMDs*6r|pzoAl(fI=;NG$3a*PeQa){tjiGo{*e-=6a6 zyFGzggXK=`HwLwh6TUvBdTXDaa^AC)mw*I`*<0__Ua>^m*x_dnwyy7*RUUe}Cs1qA z%X_p>-bQQ4+x_yv)~fermY4iv>kn@aZl!JXe1ApX2mkWfvRLH_)EaZtG3}zI<8j@OSM zx1j{~yY#QK+6zCZZEUjnspU`iyS?v+|K$nPnts(O?UCoGe@xo!)biX9-QIWE;}oeu zg2asbPNB1!`p5LS^UC+1xx9D60km=e2-I5e=BeQ4=M(Y!6PEWbraTcPNDS_NS|G$$ z|F&#ydF*$J)|UrIIRdp-{o~~J#BXW5+Kq_QzhAVrIF+sqK!U`WZBJ=W{iepNaUVUQ zT>0Lz*46uZ0<~srH>=%vRpaj84?dxsIedBRR9ZWT5+oKJGOIoHWsST4edwO$C3E+v zE_mA$PHW;Z?Xh3hHik{#v;0DHkLo+uQDzAeBxWCcOuMJ4Z9H=C!+rPl&#Yb==Lysr zx8SgL51rK{XL$5a5BJUd(#-1KF?3b~2@=z=+Oxgejh|Odo97AC!gFv@ z>@n-v-ouHw;p3Duz}XoI_D4Na`>Fw6JL5Gjo>2qQ6po$@gL5qsc%JudpacoL-t}!D zfm+zV)JBslEGR(&vzkQE20cp#*^(Q7ceQN{^&BNIV{l|mpW8qJweV;Y(F_Dw7c&kV zr$o>OJ!1lu8zeB77@9yWycYEYN|3-@A`wkKDkM+~uaFZ#8$`ghGZL6fBtqIi0x}M) z4J0D8ffC#=<`RhrZ8!ol4ywu0+e_Y2n4S|=40d4xOgPk9`9*Fe3HE=kZ=+>LTo$qJoN*|8QW{@dKI+6 zMoO!rQ3BR=ZHM*q+7GlMw#RMQ3L#pv6nf6KLP<_o&w2m6(ur+_V~g!IUfmGZMkx{6 z0Er{qQPHz9X>AnFaBPp;u%p7&R4B;_>p2}&ur5FIgL4<#<5^;DAb}Djul|}|_BUusJ z<2{*2DZzg3BpKn3D#a2v6JgY5T=Z3lS3Kw(eYg!L0m8M-&)ub1!fohG#P)bkc2pQk zoCIc{YnuRjo2T+0pzUiST4&3wZ-VvM-)}TeifkX`QS_70I0dJ|u)*1kTZ>DIhptq`Y zTx)<5B=D^m^mZ^>IdI=KFAWT%wFXF_miLd}5OE!?H8}MNswaZyAc3A%6jN!f!QHgh z;Nx%52tM{ecyA2*8onu}dGeo2TWhd@)*5U@YYq0=iJr#+i6h``EA*5Qtu?rT)*AeX z?)*3cw3^qwUfNoNxnG!79dp|sTl>>m1C-$VUHqF{aIJwO@I5vAjcV9hgRwXEROd~a zQjHi*^<9v-{lXh>iefIUHTWp4H8|maX{`Ye?!7o0?cA`n23x%S>()L8oK$^_)*3WX z0{g|c(fG9nNT3$_reAA-lAK5$TJ_w)?oY7rZ@t%noItpVQUT6nLMvLjn*2R@f!6U-@}4)4BxO*ETFXpvuUltmYWiR z5+I5z|6JNygVSlP!B|>r@X+6BmLP#z@E)F`ICK2W>VYF3?c0*p8sIy9aKFuW-Yjjc z!QorIzxvS)Q_JIMtpO6Kg>UXDioIxc!mnv{!ar%P0ZJUP3B3_0tu^@OwfD95qO}HZ z&{_i|20;rgT@<%nd0*>#T5B+Y)*7G$iN>)zH9D^~KmxV=2=-6hsM`L@>D3J{Q5!I} zc+SAt3-W85tlH*BrJ6-!qS981K` zyw(6DNHl+cabt+J20)-z|)BObo6VQUTk z?V^J3X~x6k#TfZ>$KLu5vX<2sM7rW5L#9jp+V1D&5Ni!k0z`9@ zpOv=O;P(3-?z@K88obME4S+zcMlq^kYYlFH@ZrAq(^`WTtu;Ui63rze8=co0I0Cfr z98B*onfYw*Cuyz0y7aCvl;D2ZAN5Slr40R{=e*#$-(BOnb1msNg`qdffdmOW&+GpA zf4V;i=W`_RdN&Zw@R<>)h5Zv<`Xq|#qL7y$fmux=7^*N^!qFU>a1t1Q94Frf5~zho zn}{YK6DD@wBZQIMO0N^aKD&KBp|eb1Zug8MMA=OKwZQUF3X5WXao0!`Gc#xxHeGY z2+RzW2yGyN`2$A=tsp7D|I>J&1oq3{Tb9A9^6LrI!YgFbm7iu954hS!0yBf4PTKrK zBZvg#5AI4|lp}!>+%M)5qAD2OX@IH$YGK6!n&6{?x(E_3Ghn1CoF`BVD=(s(2&m#9 z;W7hOZgwOvq^3dNQ?a%z~B+0TeQiFlrfy*6EMz)65`ZL_iLZXb*Xwzu%zt)LAi*t&ez5+#msN44=Wr&KE+ zYqgFUP47FGQA=F$5T(NnQK{{Eq#>N@?)iFotxcl516vmGT! zVB1CU<-1R*ZhY#FzELkw8xYU2z2ccJ=*JyIY(>OrcaYbD1PN@L`)w-?^%y_op4a zcH^1TWV@JoeR{x5*X~6L60g1f{GH4e&Yjoaw;>VbSWk3;7H_XAwT+GA>V$P(7~PBZsoAZhm5#wyH6luo z2;1~MTfHb29^2pdyB+3KhjBl+^-3hX{q{YwU+&XgKi4+CdrW`dDk5Il)Dx)17WwTh z+Qye@Jbv$WAnzBwT;;{7K@+isag}oR!X3jjI6eCHqDaDPVR3VlSWV^ zNCX=uTdhgNMzi}{ZJLR=FVyn3Vvky%&N$Efb9Atk+Q-}NrDQkON5UjIp;j-7FK$1l z`YQF~8tO+^^JSV1(vQs+$TpAjO((q!wt9QJIn{d9k3F~Z1Zw^KNTTPft-ecRarU!4 z)jGSc(~A-$MvizH#{BFTda6Mhk5L3i{yo9FenMv~Wlfafl^ z9=(&d)wj7%7E8#_TkPle2mdevwb&vSOMXV@gOOp+67b=D6*O=_z2USyFo&@qlheSwIu`4eau%~~78G)p{xV4TN@nzvzRHBZ

    ^kf!yk`v`$rlKaT_ zbZt<}ed>hdDB4Cn_YnfMWX!dV6DX5e>y-Z1i7EG~6W&&@QWpL-${7}?+(!u1^0wmn z&Sy`{eTX3YNMsP2XTI7^{KE*70b5kfK<(GuU(HtM;LNRW^mMcb(7K0=_D#4c^4p8IqloUQ7)j}T~4iCx+TTb6BX zxerOmJ`x|nZqaXK^c;~qiX*BJfu`?=%6-&p`P?r4C^-uFd6xSKfm#w1wT*i2Qzs-x z(KhP2j}WLOW3Fw~bDugPS&g<)&wYeIEpIEbY?k}TzT|8mG|zms8;?Yu`*bE&mD&#` ze)rph7RyCgDGwU&n$Qbz=$fk@)`4zDjrF}*UNfT zc7*?eAp2N9IKz=y8G3!I_1q-BA7&A{u6_8HsY_4Z^fs|oMnwDgC~C*0JqPQmrKwN9 zy+y6N^oj12-iDGn|Bq(P19~)yz}x~Zk3}l3C0ia=cGx0b2(Jc zoo}O-pNV9rz06je73mn@_;cMak{HuBs@3Dn}5ztJJuMxOhq#1S-) zSL~&2@}s6@uN$o@lEY5hX~3ZT>#geYhVJx1CcR9Ik7r z^-3gsByZd!`{h2}@pEnC4yyZXxZ|8^#shTC$;TTB)M8ux`W9{DkSBY}wO{I~_F2hS zsU|^!$L7^9Ya4m)qx(WF8FOtTulqbVUnEF)Tjg~hB~Z)Tif6lJGG-sN0{f%dO}xVh zljMZjuwM6hE{+tRal$tF1fSu|R(ah=3Djb*)&3R5Xa7bOwU>LU%O}efy-JYaGqsKR zSE=sv0M#1)^7z`J2A~9Lv7hTW6~*mT{g_Pis=>1aB#v;l%5xvx7h06J%~pBtqxRuA zs8$Ge;}{cSNsWjSB*Hd-AN(V)`>1#Fk*L>lpDdQ-bsr^Ai!Gx5Ule)nqY@-|Y%C_` zxsMX4C1bArpt$SmJ{sYW@V3fxA0<%B+luD9%YD>7Vbo$&$3%BXBF+r&QO0P`#n*7Z-p|Pg;hxv)l#xkQ_L9Ykk+>^D+q%uf6^{)Tw>$V+3k-6>mVD+UGtdaYXYCy2jCZyU%@$ z=mIU?w%V)DWTfYET`SvsWg6^8wM_oLC~8EMbTy3#+p+qY-}9o@V=a`AMDOWvpN6{U zWdv%mt@J)sUiUEx5zqzVW2D!B$@) z;%p**PxUJ#Q0o^*5*;l1c|U6qf${^F`w?ljhj>MLe~bN^-`h?Z>w)}pX{F3nMAxo#9!&27ZRw&w$l4l zMe$7<3;Hb|ChMXE2_74}=k=$*_f+#<>?!BI%$cR_3$;=JlxlV&3B3$?thXugNshy4TXgI3^~uXaoRQL0C&BquB;3ZuD?MW5hNFg7+z zBEbh&hW$oQtr3wneJ1eCf@c7XsGdNHCor}f!{>91&Zbq5K0-wzMh5Ih*pB_P79?k& zHjs!~K8hNnJ(uW%`}MJ%h^G8DONbZ|piX``uil^i#T6?YMK0=_DjG)%9>bXyykQ_zZ zsOLUHpq9*IZKIz1bRdGCYa8|4M+lx*S_PJQtZmdX8LGos?ju@qrl#8B5V?;?#JjXT z_5!V>`t?2>OSDeO=XTnr>t)GNWIMm-Wdv%8f5@IX-XXrN}wbs)apfX3S}~D(><@Z zQYIs<%ekG}NVyMfhg!yIM7%}0&x08unT%+OZ^{vN%6&wFgybmNMm_ft0<|P|X&d$2 zr%s?nI^{k>pcZeNt?IcC5o8~Uk6^dxH{seK%YD?NIHC$6kxzZFp8JS|k3_vzauoIR zdhR0xYDrAgHtM-gosb+w+of{HQGi!_YnfMysc=yXSt8;D~y`n z1%POm`~z~I&V;`=VRthu`e5YrvxHkw0wpyf9-$nSd};o|naN><7k`{GL}v#5nJxC>|9`aKApb&w9N3w)-FM4)@hC%3w4= ze=Ld_2j0H;#B|RK{4QMYn9rM^H{CriBm8L6_vGhtr~1Ethxfcpf<)LJVmvY;YI%=B zTcHH^>-{{>eYDocXB@q!!)G|F@8-FW5~#)Fq&3<6o|j3G;PbB4sq@@N_k~(K=2}}W ziahsGi6dwpTYWdreU#vNrCPjg_1!%8QTwn@s1<_UxGoybgEb;bkO)z5+rzR>^@GO`{=$RQ=e1?s**= z?s=I63A9K(_tAZ!7H^xa^4v%5!?9Ma5bVYkZ}ktC`1`w zsKxsRJoEMYj~7_X&KS;wZ41*%ARue zb3J9x$aQ*Ag2d|8#S*Ji|Cor&hzCCEY&z}5L3J_kaYl+?S`n`-t^$J;+d#(~Bcx>#R*T+}&liBv9*-ZldR_t*)SZ zEd09w z`=|s7KJVJKTAuqT;kCM!==D`m?mHxsMX4C1b92pFH=`>klNnt@7MQ38%$&OSaeU?$~v*S~1JHl(d55{~spmFGT6I4!nYvK7sDm;0!F!l=b7Y@Ye)``{p$`y>gE zGZ4Bh9>wkOc@VuQY)8V+lEj1zz~)blP}%?@{Fw#L02omnfzg@s1RWdK-jIaTszo2c zB=^x7jzrjw5geKbJ-0}PT0V*zqdkvxABgkZr{tRqH04)vAB!^P^XQKZ=#OMF+7FBp zwGnIzlMxsVYBSLhRrCWSV2#(9UX=vU0@?>lHcPjugFTH}`yJzuYJZlY_b8|ingVx3-;Ao14f zHQ`zf?|C8NwT7oFGJnsD-n^6~j%W;rYaG1ig+zf`w4JU+(qA9CdBl2D_c8m_>_%4r za$T!`uP6~wf<)Mk*9^Yy!$*>`ZQ9nl5BJIHKKP6~5?*UK)ByOJmgBoz*O~+g9viFs zoI>v|`5B#Shfx)WZKahW)RJ-1TE^#TmRv%0pI4|lh!P}%4U?^2AmX7}{jIKDJ%L)@ zRy^DJe9LtP?z!3rtxycEW#0$)NCZmI()4|@dT}1D-nokUamEO)s*QlUk8DfbX9U=a zt_>=xi?-VQj5`p^rQKxBiprK1Xszn2$FSsKvI@>JHuQBi~p^ zK5`Y+MNxtTkB!xRe!jA&x{B)5H-`87*uGFp#!36(a~~c-ks#r1wIR)`gQ(tq6TMdr z_k~*CRy5tiJ+I&&)bmu|0V}Ytr0>-~q*8>Ej8Gc}fIpgYj`Hy;X)#^tY)?$c06@Y% z2&0*{4Il!~1{k$5q5?pKm)MyhL8QhTz0hCG2<^_eJ*M4~dUP5r<* zCd%Qn0})3Jy#RpJb7&(H=*>lu=RSJXz-Ju23gh#YUE}1rj}oZGBdFIU^ag<}_fZKF zeBQNdwLJGx!fOprIeb0$(d^z4G-J}0Op)h4O7MJ5TC{D~IC&ox~isatzU4TtOkJVeUR{4!{ORs))PJDOH^l=MbEf%{Lrfg zBzSDBmXYT^N}!gExz>I1+()lJknpz3a~~y8%iD_Qd&*?MK4=B@N41;yMu6dpyi_A0tqU z{anYXC?24?&mmOzd15I)iDVKaysh%wC+!RE=4_Q`GHM@=gKC9fH@=1o{!t^M1c|WC z-|KofsQb`J=@lIviFz&f$zn;K`zV20Y?0*uwcJM~NbuNLOw4m1B~VMoN&AuKJ{sYW z@V3fxA0<%B+luD9%YD>7JkDwb7wv+Bkbk7yXDA}k;!@NO{i8c3K3*j)H%k-=1WK5O z(M;P0P#gZtVrKx1r~vTU8KN^sI~|*FwAvmZ839LCk3ND$LSr}(&LZ_Tkf zkFL)*qxXycl%CE+0=333BYJ+!yNd5o?(<#xJ?E9RsRm#YBv!9p2d>qY(0iTFrCP&L zqqqiOgx6XZuGQ%IkG>b_N!G82^*$zXL}OjJ#__q25d~_|wq1Wvqz>zS__`MDgH{ON zQ$C-rYdxV7uymm5d%3PX<1_tzm(%t6`+0Q&x31YXZEIbF`($;W@6r2xUMAv`bVZMZ z*IE~90CZhj(sgac*R@4q5+rzRtnPCrjm2$L_n9-^6R0KQr2U|0!%KcPoS*bY2@>8` zaSeT|n<^|wI4!nYvK7zvl*xd7&ILvMoq0TB(JiG>lU-k^E)XR5dVnN}eo;k4Lp$yPKJDfdD9pcP!S z3l2hK5_2DmmN}s|3;=&L`8GfzZSs*(WFoMZI&1r(1Xz*0}(%X z1jTFRT;zS;^@H}$Kb{D)M0;DCiH?YK6bU!SL^*uMHjs!j1HAx%)N_jrIyo0D`=|s7KJVJKTAuqT;kDMa9G>6%;c_3%?j1oh zFJ=Gu=u_tEPQB)qNi+(!wg#gUL^_n+ds( z_MBsvTG~ZaKqSjBn*agr0l?>Ti02`e#G~?&+L%aaT*CeGcE_H(eSwybqS%I$0D%!a z=r`$;ekJ#@C}Td4{uqe(Az6lcD(4C4^R6GXfBx}=AI*FwIwHqBv$f79L87ZMCS4mA*>he-pcZdi z&d5=LEzH-oXdkpf_`cM-PmNFs*e%fXz2w^N{XX1!%%k~8tnRZO)ByZ*UPf@wtvWOY zY5>0OV-h5IY^?6{DY~Y;o33q724wOFnjHf9vzK>IEf8cw70k&OGL_ zFQ>(JOSa;%(3Q(*pD=3CZpGmG$!@G~1WIy3t)8!S-XOI;a++*Q-Dd-^m0#;@#PTVo z^+-2;ANxnO464D|b6zGvV)(EPU^M-6UPgGW4Peaub6zHKgtL`j>udztjknEKK9iB2 zhx$%Kwt0pJyU{gVr@9YmsRW3Ex9NNF5C5DOwO&RE9f{R_Hh@^-*E$=)J-6!61`tbp z?qd=pcxX3dB><`C5)=J?EglD=NuTt~cYb)5Xha4N zM(+xUd~lXQL_8{rlomgnpUeK4$q3Y{%|zFRjt3Gj$3%BXBF+r&QO0P`Ei%}AHQy|X zJonKIna?<3o379Jd}Y@-dG4bGYVinKcAn=xDnWwJyLPRX=RQh!tudDM*K!}d9zcR; zj9$sqa~~y8i?{9iBhO^iKI|)MgvY-cw6fi z+$XC6_~*Rncq8Gp#-tp+D16<=BuMbsSS=&Zee`+&wPeh-?vv*}di{Zfw^g3|DB-l& zZpl_W+cEc1`=H%8&g=K$9ZH}iC)9@Z+(%pIGmefXpRdeTdG4bGYO&X9|MK-dCP9MF zyEf+jIWHr;)&?-<{y8s`IKtT~&wX^v(QdqLw#suKwGT&BwL-8PU&EU*HWM9DML$4- zw>yrxivXbIJxcb^pW1V1BkdRc+^==sC}qg6E|zV+KI^`BBe=%#Yn_cit?|p~`}vw{ zWA1|zB;H!R5nP4c_he5wgK7vqG>NWzKS4TO*F!rRKPbv6REysdbi^Z8bu^D_IO6^g-4lHFJz2$X=`m`GO7 z);e#Ru8KxZlWiX7#Qh!jqA~aMT)|&bv6REysc=m zr+Z#JYN@`%qo#JFnV-H_|A_azK#~!O4g|NuXB_8u>`~f=n=)y4&~MTw{c;At zvqW1r4@U0_MEv0Fl?d%e=JT!}w157|2pG-!OmswLUYqudb4--OXKVwBIBMRb4AGuL z8)=-)H}mJb_#7_pp_bf7-e@j4ioRRDp8E)aS~5=hM(cX+Qzs-x(KhP2j}WLO^H|%c z=RS3U=dr%`z9{OsPuv%3@f=I<*{)?WWUCO{L+&HAoT=qq{zdjwJXx3C)1MRKQTlfp z>bZ}+Rh*Aq|2BiLZFuTN8A(t{irPWsS}c;XdCt1M+nrCG1oReOKY9i zq`w96c6i2}GnqQ!ZS`j&K5;^S>vekD0`3d7ysdb)``jlUFOOP$N4%V=&SW?e@gz#D%6Sa+c?o%fuN6|KX-N*KYS~BL^ zMm_ft2@;akXdCt1M+nsNwxa2t; zPyeO`_?=wun9o~3ig)MR-*HC*M$^y4J??|QX~9Gs54p~SHad?-PDCy5QD!a8ed27u z*t$MMg&Q|nqWr6bXM zH{2(?|M6X_`|ulkw|a=zIvasnY^zkiERLhK&d<|Y=T~3l=bcT01dol~$H{Xa-4|-f znCm^SyzZm5S0ucx^16=_sO4?Nvpr=pU>~#sdzacxydx1P0lP7gtX`}8XhoRMIANQ{ zna@{dtGw=`1ZuI@YX9N{+^c+UTaerbAQjvB#uCf)N&skb7xU!t33Bn z`*0joD+If7#XI;%jffH?!Zv>&^29v%N#03EqQ1?2vRIPmK1z74O(B-#xsOH$BzSBr zCg!=15~w9(uKmb!AB}KGcw6PUj}oZmZAJ6lt^CEP4gBoHXc38f8)8G!a2&j1)v0pQ96L}w(z(ROSD3Dl}bA89GJ zp)nl$!P^?a;jlUoQOieBLnQY}F$4CC5j^NO>63mX14sm&_0@yXy8;nE=%~O`IrmY* z$3)pbLm2_1S)Ym0NF*w~9|f@%=a?vm&kjT!HSbY|XwRXIG|uSf{yDGBC?k_f(QAuk zo3Gm@-Mbmocl~o-MxfUCW%T|0SaT}QraLAN(%(^dI6UKS5+vSQy&2T0{ri24@LHQg zotkroUFn|J$nZq2NgUDG9O}FN8FwQJ)S~TFx#g==cxp>}&h{w=Wt*=og59WU7{0F) zDgh$Usm|!@KGb>@YnF5*cF$`wxc}kbZD<7d-0qBR4);G!rt!F!?qIdU^Ufwgg2%@0 zdHLtOj6f|JbFHxY=e&3XMS_I4m4D952&ct%OSa&1;{TQ@N{|>nY)cqT|BSos%WG{3 zWA2}EHwhBXBH43ZMxYjNo2}TgY-4%G-Rx5|%nHG76l26cYJ^IF2y~1}`7`d+dMQzc zk3{d?aG&g+mw(R72(Psz#1fzTm;?zP8@uP_pYt*TwPa*9Ci>^Rcmzd)gtwJ{&dUg= z#db@!qM=B+585Y;TC|&scELetOk(b1(K090>H*-7CZ7k<@4_~Wjm?t8guDdi5Bnez zdV~fL;m<4(wK1YP0;6+L00Hd*!2Q5|p;j&W2p0*BOGxl`r7_W3=|Ds+A4QRH61QKA z$3eeIpY+R5JMk>h*3E;_9|I9Tcm#>ieiTN8@yCA9{`tofPOCN(9Z{Lrs(suX6Xoz3 z+dv}D4DV5fXwRXIG?&ab^Jm=o94?h2$$g~aDLIPPUhBD!5U3^N6l+c$a-TXOIf}MX z&wYgOT0D=nje73WfuI?qb@3v5#vS&BT0F;69j>1HXhk@)Tdehmn!eALR1&-^9((X8 ztw7dupI8y3BhfoFlB3Y~;o7;L`v~E+*gxW)ihAx-CnQJFHtM;L5U3?%u5Fx3cd*u> zdqoe0_xo@rQzs;=q3=0=EZ(Fi!>*m(-`X*}-^U22hdDB4Cn_YnfMWX!dVdhSyv zB&*Rj>bZ{)PAi;ov<;f>S?(kI3Zte`jb^^uEw~4J6y!dg35$u$q&ryPMUwl-k@#7H zgp)8GkIEgP99H<$+(&x|Q5z$wBP5gQKtOu{q}(SGsO6#${vCI@evL643Eqxz#s3}m z8WFX86t&~ho=1On`^DJ)_9NZ5?e}2!ZSTG}KjuCf0U#QncNLo-bo=6)<2^6*)S@uL zjT8M5jb^&%g@n^`Gm-8O?q#!tB3$%mB!(Vyi~y+RJqm4w5+t}!=I43cNAKP68AtEw z@EOkPyLs-T1ZwdJYGtyhCD?0| z7Hy}>ZLNx<_ThP~RtR?E>ZjK9UGAfI0gwpWS}%3adGV2?iYaaDy&LY6-T(0KbvD9l zZEp3;V(-8Al-tsqf!7Z2bv6kSJT`V8C(nJf7K&Oj=6cU7uls226$x*vyzZlf(_%{} zTk&kyOonZx_CdSx%unA3_fWz~z|#DEvU>J@AG+3$t@9a2N0ZNRW~;pJqXcTPZ)*SY z_xqRx2|iQXnEUtp7~!?HgfaK;_b~|)&LXwkN5>qsysh%wNA1J0ORW&>#ue}2A2mWH zKm?k<5BI$2{Z}n||5eHFzY49#YBq1H*K(gMmgKpQ`m@*C5@Jc7`)Fi9g2%>UVxIdb zfm$-=+K)W<(Flixw^g3|DB-l&Zpl_O-CgdZ_CdS3Xs7;>a-X3HwP67GqbW52i$1{z zVQkE!5<^*rn?LM>NW^W^=QjMA17_69D9zDs6!hX z$+(S5BBzg{#%RxDdkAa9EQejE`pgckM>&A(-n}T@4 zY1L+;BjOxIB5ZdYbBq9}>pojkMkbY_*A~k*U!P67cWbEc z`e)pYK&_pY(f9LZPky}*N|0E+dTXdt`)Ay3UtVh)s8jpDWoi;6x*FT0x_JJKyAi0x z+ggXst2kz#V$iG*>_$~Xxvuq#q~ZYLBiXL)-#m!_ljEl_ll5kT5PvuE1u{2 z#5&ps?N$tqOLk*@BT$kPYQy}V*S4wkk<(yd8ye!kkuzu(6s zNDLpgEsVKe>uiMA+7`y#uXQ$wBb=@LGww#9-FVw<-lD)ZVjGhmL1?vO;B8Q!Ce(VjyaX)c*>cFKLE)+f1-R6Hd|(b{W0_YnfMWSq3l zh|hVU1PRGew2gZ1Bm44NJoB}UdhSyvc*a#UCMoAUrsATAGHbZ{)s3l{rZPat0Iw4t&wo%W0gm7BUR%F;L_tAJ|cH^0^c1!*Nxld;zSv??nHv_#W zY{S@?M=_#=kdqXsnQHc?*Jp(i^p_$0Jy3=yehn`)! z)%wBLWHMio2-}tV$J|G6nR@D}@|+h&ebmBO2?s?-g%Tt#XF~aUKZgb_ld{u{G6s0-17ngwcJc3JHb6K@pHB=j(^zhIOcNo6GxES zh+5vG%vzfJ)CumB`MJO6MfIInjp8$o-qYdpmDP9i+(!x2;&IZNY`yNI5+wM%Yjx^8 z_ff)YZ3FeIJonMc77{#Tw2E7=`zV20ysdTEdfi9u!}D0J5bVaa%ntXwNJ}L^1X`<~ z?w(g@J=Q{bTkqX)pX~mJf43nWZzR0dHmQD@zuV9xNbuO$eVjb^(OM{K$(ZXsue|P~ zwO1s(t@65$5>AWlmTbkdT{9W95891AO6?}zp#(~DLTy;D`)KQY#?jH_Go0Bfulp#0 zTI{vjzx+8blOVxoY8!L^oR<+^Yg-s||D2ae9N}!0*L`%%(QdqLw#suKwGYQGwL-8P z$CwWHyhuwWKmYM(G_WxONcVq)~Dl=}=ts13!VxE=Zz>OMLf zf=9(R{47aK$TDpH)Ci>wh#7$PoX`4dX^g=Dgf=WXBjMTuM6xBdqSLBHAHgCK;}Q~K zJH}&ZLXQfGsO6)mF_Qae%<%iQ2p;sC^hv*x0Vu&|{p7*uT>+5~sp6=oI>Pz6?4Oy8 zK&{$LbZzJyMS{0Gj=75fpyfSE_Af`}BtUSV(u^sZbhW*l{+8*wyq0rt`&3n;^n9)FV%-NNNW8Urd#FJBXWVUHsMS^M0Cj5r zjJrvYC>lFJeb>L=#|WoIgw=N`wujX_@;5EaJ~g{h)llj_H9{p|=|HDCBi{4kBS{rO z+SYqs+$X!|<=^jP1ZuIZhI+T5Ns!>Nv3p+r8FwR4OGZ{JteE?t1c@-m)FK7N_HqNN zmmEqn5ecWoc1yP6dCuosdAFh2$JuRg$7DD0jzpjYEluAit7p%+k58?SoF>~+_Zbhi zTGPGT(1_(zOzV+u`hLFJ%HQ)c2@=DHjfXM!bsr`($^seC}g} z*BTG8#OFRHL4wC-sC!;Upq7le_QU5sJc1%Y!rRI}<8B0Md0Wv?r1d^LYU$n7YiUa~B?1M5Mmi8t3nQQDv#p#2_UmIiF-`g9+{YqAQJ4p#clkEF z#0Z`}t{>b6{cyf(zKvS-ndpehyf*C@=a?vm&)5bMab|drGDLe0ZKSzmzDY-4%YCF$ zB)N}NJS9ib+G{=c5dyVjoMO$XsOLU)LUI&sqn`T+fm$+;wT*i2Qzv*HTYa~l`^0^r z7SFL%hpS~WR2K~~Jouf^a;A>8em*n%Y)S6|03m)8>-$AL_lZ?UIugAfAvp?tAFiG2 zxsMR2CH@ijl)c-KGnqOeIf}MX&wYeIEg5rd1MhjE1PO1eRWuW?qTJ_zl>5lOoK}c2 zYAc@YDU$*FNbVDlggi>^Cf<<+D1M15dyWmt!TbyxsS#x&VAyM(9Bo6CI5ijr!$f0fTTM==taD(ZMa#& zNFq>@6H3crg-^`@6MzMzlSqt#lc#db@!;@O@u8L*GD8~KXbO}rx! zC_zip_sQzDx{tQbXB-_(K3|!w^16=_sKs8Z{mbupnFI+wQ`?yPdtOF(t?@AC{+^df z9Dx?8TH!~GHM@=U2273H?DXG|ELjBf<)NX8hNemlf09TM17n4WU(aA zeU$K8;~|#hxsS#YBzSBrCg!=15~w9(-ua#vkDy49@V3fxA0<%B+luD9%YD>7Jc4Qk z9}}ZTrQByIBGKYf)DHclm9iFn!gd*Z>t=}}fj|kBT#GnGWvdgtT|=RxSIrtw^mPpI<Gt{a5GwvpFL}O>D z@A`Ke8d0DYZKpbHw$@pCE_EN-=1ex&jqb{X@9Tt028}3qo4%KtzOVaG>#-KfM`icC zCcym<|9&4MxaW3fY-hOt;ot9L5+rzR?4Fl@#@z_ik}=nQ_-EXyhx0{(gtwJ{#@z^~ zH*cHb7%+K_HR>_#z0{G&#w1c*S#sFc6ohgvTs%J7ls9UAVF z-SZ+pZ*4@+G@Q3FKNW8TYH|O@9-{Gzo`b9w(%*f#YNXgoB}nkt*gdb`(O6vYLQnbA zm-$WUwlCC@and&YGwwX*B0<92%0J_7gwtZXC0o%@q}&JXgH~|SE;tB{Nz8pLTIPgW zJplaCyZks;0;m<4(wK1Xs!g&eA+5!k@4*>255~x*+ zKEg#pV>lALtq~j==|Ds+A4Lt(p2zs=_G|Gt=r`$;e)&mno+Uz{2ctg*B7V?Of!`tF z#)-9?f@Fjn&3q<0BF<6VubX3{96n02TX*pZ*Y}ZVNW3Adp zVz9Kw9+kci?xBQ}@HofXtN5e#!$0Rm{!AmtS*qkdq!sRYaaKdyVLbf14ULdYMzq9h zwGIDnLylJ>K|*pAZKIz12!UD>yR?mZ?$d#AwyNhoLZIEet!kMJ*(&%!h^SyUiZMgw zK2ZXMM~=|X z5@wWe5~g7^bz9nyPt5?-if{(Nhzdx|GLlVzfc5}Lxle2ZwOsV^_q-&whwE1)css_G z{N08b5w(02wd2yBM}KzvwFpjshl2i=*TRS7?|EUAanS(1tJs2`^SXK2Ew^&EB)N}x zDiUs-vUeL=gmYSMCi-_9+8jk9Z0oGFj_Xmy5kxKTQHE&l1G7)(Rl(OKI(zcEkKViC zGmhTV;WM1ock|pw3Dn{d)XHT3ZbOqG!RKA8Q|Gyl?#pZK40Y-}_tC1eBWT8?DsJ{} zL)aH;(RQlC)~YyaAI^Q$3c+q%%hZ~_%a-&m01{zatDo*UFODDS?h9?}od)ic-T(0K zHZ;O(?F{!n{JRZJf&`C^-N(suAHDy9S~BKZ7tQNFT6;yp+bXa7DB-l&(#cjl+clG6 zTd94}ZtN@R``{i*I0;yqzfV@r-fc+N`muFBgE%sXNU;b`GlOVxo zY8&&*sqXV9sx^H5;k85ENB4zV9J_R!isD9kC*X$kS5}8Flgflj9N}!0=RQiH-Mp>x z+(+%h5ml`a?8X)E;2$+YB|rq4zvpLSYq^hlCm)IWHuuS5NuK*Cfm&=UjTqq_5U%c{ z5+rzREGFi;j}oXQW3K(kb03XxNO)W2xsMV~i|v+dMbq8oK5CyZYGphUn)&*Da1WRJ zs3a%UhC*;Va^|$?6MQhX;b%!==&a@>?1MiFR#@Nb!z{NyGfAfYILW%cv1NG z`xt>*ysh=J{26z%Pcdj#2zI0Dr(D_w{>Tq4g@(Ea^z}o)`DY?q>P- z`_S=5!fSQI{SW_cLz5uEV`KNc{4?%Gpq7lR_5+{uLJ1PyR{j}x9&_23(_*_NTk$;C zC)U|kY9F*)F*qrG&-zB7Bq!8{`8}`6sr8Z5WShr%`IO0EEB}nU5vcV@H+>)bN9S|* zejk${F?`r$7<0eY*$A&S8OGeNbvB73oUJhTDGDRdZoF-_@|leEJorIFwxwQ1+Z1EO zKWc>E1K-^jJw$w}y8ypycW-VZKIz1)Crz3R^P4XK0=^Ym}999SIcC` zRw0H5zY|){)Uno|Rf>4FM+p$(H=XWz$qbh&CvWS$8_7}V`*7`C&wYgOTI?V4eg1Ak zlOQ2EindYDePmy#C1b8_;B#ImLBiY0zuS;(HDC7Sv_gzgTk(ANxsMz#+D*>X^1b+n z5-7Tq?xSt^cN-cZnT%+OZ_>8ZGHSVxNRW^mMcb(7K0VZgiuxMX88-ho{*y#5GNcX%XE0UR5Ba{{- zd}{8aR)jMEMpQ>g?o%gRdqWaV%S9jmZbOOfoZTZ4wv&JOcN=Cz)WTQ^2bHouuvOZx zMew5V?=~bKoUai8JQ%$zd$*y*E4ki@wDWVCR`6~^AW+NAM4BP+ZbKr-&%?Do61?4U z%;o9_h^XZ~%B-bXU!CASnV;u%AFY`38AtEw@cGK>yLs-T1ZwdJYE3qOx1mXp;PbB4 zsq@@N_vN*^p-!FWK3a7~f@h*uaqD#-B~XjEwGLaa`>1``yVMH7Ze0EBaLAeoL6W))&GB)nEP-2XWFiJtQHmwKwl9$mYauY~k& z1`<3rb{{9teUv~g8FTGNUiZ=3D-zyTdEG||r^R+lw&K~YnGD(o?Z(kn?Izx#1WIy3 zZCJ1SXzP5&(b42HoY^X``zV20?6umz{5da^Ai-y98*~4hml0lTavIs9@XvXf#1YO` zdEH0H9PP&2W~;o4qxRw0rB(=bZMX`+cbOSk2}mQQzi1SuDwO zA0@ojWQZks?xT?b2_74ZiFxj$1Zv5cYd`YbMVU-^nGv;@{g4JBngi*5V|cM#qH3)Q1{W<5IhRTM!!!4LsT!Z`BNj521Ifn?K#IT zwKT?H074rUosn?u0U}i#wW8CiMIXT;5#tgPVLQfSXhM$)iKykHs4?1eiLZXY7Qusl zlRoKJG60J*=JV)}fruYc#Zgb?JOO>)jUerxe=-6_(|awevVJ0}=m$u^91~snjBOwh zXNLDEW3=bcMw(0L=l=aZyHiFc)u>k&%Qj!vcHg@@)OY2_+|9{e68w(@n!YDg0z{xwopI?5de7vJbE-L;Q$M)%N-B`Nt@m`ePj=7ie~;Pf4whoF>~+_n88=TGPGT(1_(zOzV+u`abqA zzvpEVB!&;00%Pv$K1O)0DKO@~?qd>1I9vJL#|X3=Z=0?B6YJ7*wog|>w)sjg*o|V0 z_(zS15+uTQj7s@EFKWHi>UmG{ZSIrZ&GNaA5ngKw#1fzTm;?zPo1yM`8G%|d<{A@y z?!zM}5+uB>{4?%Gpq954&3DLs%sye%qTP7r4|UHABs|VQ=(czix5H;O^rEm0V`H-< zF(Cu6`BNj5Hh>5`e_+(c7z{vY!=f`1u023FlL3NbupUV*`Un<@7?*IrVY||pXpM9r zq87$V(`W0V1o!J>J26f92@+vDMx}c0lf09TM7@^# zWU(aAeU$K8Qy`Y)xsS#YBzSBrCi=RM?F+SJ%sbb8cmzd)gtt|m`zV20-d1E-m;0!F z!l;$f9?$&reQ*%+k68Bs36C=nx*Y)iXv%re$E&2}W=Uc~USjhn_+V@UkI?kF4Lq}8 z)W#U>36vn=+5<%L5{>6hs}_9(i$sh|NQCVe!J&!JbBkoCg|X5TC_%!=xL?|Q#QD&rjTDzqk!~qoBcBMxg>-Jc7+pCq<_6MfbHMXNJwQYK>0WE08`f3uV z$F7AoDf}b0?GOI&6KIHup;NJ${hWRF-p_OHz3|SrlDF=9_kPYkXaAjj&pG$LE~z8- zdmON5kdLkOiV@vQG@=RLM~?1&=r1p^Un?jIBObhPJ>9G6b6$l| zt{doHO`r2BiXe{PK=(Mj?lVn=n3&71v+8e8KtRJd&%pX&Ewu0L4#4kgxmschBigkg z+WzP8UT2fu?+4JUTKBo0)&TSw_d;OgwK{YItpVu!eTu>e*rwKf^f|9WFqd04#-Y!7 z!Gca<1Z!lP>^YXbKX}8bGk?(D>s$!tQeD9o*k|!K@Rxp|tJK@s7pC68PY9+Ah(r(1 zdA-QI!N+m_JaZ84W!m#$z7 zXxPvDlzyh;rG=(9yNAp8P()A&(a`q2$A_NxG3k48clW}KZH%ebectw6r_Ow>tq6ae zz265T3@3I#%ozFB5Df}I&1)Z%$Nry?l^Obmn5cD0OUU- zA}m_~L-72;S(`H|0Wdq$9L0#%+f^BYpk6Jrk4x$@dS;MzIj>N+RuKE1S2T+jBu3uz ztF&ABxbe^SY5$`FfR{KzBABDALHq+2G(;bVAVv#X`}k8ti>^KnjasmRKM~=h+%9{i zGjAcf)ik0C5+kq75dO-sX?+=LpQv{+6fb(;Myp7VADtVMM#m zwG2M*gP!DFwOz;h1;$is0Q!u3A(ZO|S_9B$+>62p*rwJp#@Z*=0GP{d9_v11?GyJO zj9`r{Yo9d4&TTOl;ymm$O&_%1!Fsi=Cw}+?K06165y)Mo ztFiV8gm8(j#@Z+JgFF~oXnMmvT*QaeJ`qujXxDMqH@w%`EERWj){}@@jHzKVu0D+Kf zK=BAb{COo4ktztb6WC|RD5CjQ^lIUWf(RewcG)YPxqWsSjOd=B5mk^Fd93@Cw`-j1 zS?3q$UBmsS{o2=kUQG8mde*rR*PSb_FS*OUKN!(>Q^mg{9)SE{~B8V~~LhIvM=e?AE_=I2k zy3ZczN^74&oIh4vcOS9u`}n5mb@v?IKWi%o?|2?oaf-r-M;zQEn_Dfq|L^SmK7aCb zMJU%E+1&i<%=^u+e$q~bO;b@Aaey>pZ=3#mr_TJ6ATGJ?5qUAofRr}Q%&FD*2^ z*+ND zJ^mkCr@rlredMts#0c1?)_ru(tJ-2Nw``0=jk z3-J8VTgFG<^D4@S2pu{Ca_m3b|ETQKuE{p#C5dTuN%_wL(b2^Z89aYXQ)O+=!HQ5y zAz0ovLbw*$$8k106NM4&x@V#l89kFR7w1YvFohA&LY?I_%Sa_l!x{q?Z>|@TmiRhl85mlHNd1Z$3*NV;Y8F#B*dVPf% zr(N6q8Ro0H#~Ev%Krk2VRMq)d`vip%n0M=5ZLEC)pC)P_p@cht1(;MpfIM1*LoA{fcjVmaGXlQ&N&#};RUM9WQ(dbFslVeP^ z2B6P*6+*dgq&Z{VlfNg3mW2}ARK7+a3<}r@3_KEusMyRgF+9wdg1-+%NpxLZs zNI%VLp*M@i&>Q#(L6i{@T3^;aAssVLSQGPA>1wQf0>NB}+8Ez7J?YPm?jN+3oU6ag zE194$0`qR!+!x%McRjI~c> z21dX(l@rI>ClJi#c3NNefj2mX5vr@P_6dY=L2s!mb9SkHLO-H6$%#Eavi8|Rgbu;q z{$|XB5=E3b)k`|U{=s@l`A7RIZ-$PC(UW$?y7+o%2S6+j?3<~bf4qJMZL6OqaYwo_xa_VK3( z;aYg2Ai9q-qFs0UJMSivJ%+CA*E+`o6y{ovR7SKO_Ly&->K~{}DxMdJ@CAaP%Bb0k zX9mvm1ZdS#&4Y{(c?3bP2w|fQUFmF4kdElNkK1k68zZl5$y}UWO9HgZ6h`nY(GatJ z+W)9BDwj-C#XQGjL-Y?=(Bs^rvk+{j#%%55Z$OAOt)=~l53qti5kVmY`?2%-XP3c< z?im_`g^7_@E=dcT7GkB?`a)-lVB5Ge!K@Z{dYBXIK5DG50>NCcQ{4Ob`}(-P3JN1I zx7YpPSYHK#xnT3Shnt3H$%-Nf^W(T%nuce|3IV?gE?ie#I@VXApM~CV&k*;{QeWlW zHfg${`(4KPESX8~_Z;X+-1lQlwa%c=k`;ovpsQFLn1*M`ioyukrq)Zw`YPIDF1LBC zEsgb6+~Y8!`B>^|tgiwgT+mzU3f>;o66>c~t?LaLJoM(#5eTL*0x=j`-$n?RAxg&o zYVY{{VXG|v{>5G`MSn4?h5a!nmUhSbDiF+tI1i1Cr;v)m2+Zx}CHnMPA(ZPD@)CXe ztSEwzk&pFNcnNfs`VsAp)l%pOIXJY?^oD!USgqZMRs88QswMP6bAY*SfOSEH&e=5m|IIL7)aav~#CS7Ut@2Z^$71%i9kVP0i~u4I zF>=r0jL`YR5VQa9RYv8d$`TxpCBZFNv5kt1vqadbAt1y4y!MG~z;<5xt{@@waIN=a$fuSiiz`tN~z5wSJ|~s}(}IUPdbu`n+0E7y;YV`jwv9E(CMA z&0~c{&uqhjPGLmTVd_esS1SZ_sjlGdrr~{mx~B9adOLd}_2$u$2&S;6?fcaFaAy1E z<_$iM!zcV2c0PaX<)ka!yDJ29-F?Kq?;07OS1Sr54jp_s*<7DjD+F^Lm|jjc*XPxW z!ib4AGCZ$V2;mZ4L9@^??7{k(j+YkN_jaF{@u7&I5Tc>&`?b|5v(#SPL7vFi#+Yg~ zO3!Q;g1Mlpy63ceLHb>?qA&ussnsYwvt0=0a+}9Ev|54%ox%v!mG0dYLb#x})Rmbc z_wHb|ToHoRLT~2z`F#rz6Tl7KV>Q$|Ff3t%#IW~r>r z8I=H-ooQAZ^L+M@AOnJWwah*a>xiBiniit(K<`IREFmk1&ZSwD5kir6D<3!h**@)m zQ~>Z2moC|WqpLyu0~RzyABP~=PGFwb5b&`a?ZOiUv0qV}2%tl6&fGqGuNcv}G@=R; zBPSUhp>e*fef*8qKDYau*}X=Icf>DiA4f2k+o``Bd-y$i%xX)7*C-)lS^GFbx#0OB zV_EyGAk1UxJ@m`kr?Q* z&un`x>2F83p2Y7ac#UG;x4Z3S?c)gLLVWa=hTo$v3M0Hm2^q`U$J=5qw|U6W-=l}k zmk8C>pWANV*MIY=Gaqcv>KB5!R9CP?Rx+d?(VIn7=nedYU<&LU@49ah9OKa6=0IkM z-UI zYN&mBTdX(H)w1?61md7&RMOji#Q6dd6he6ILvcXHSbXCKX?+$*6#M&zrhGWaxo{3A!+ z`<_4W-=pU&BiVqXYx=oc-go+$`Fr%0uLQw%vQF`Da}>gBpPnVe6ZN+_46)y}%kAQN z)#j1`h)W}ibtM!+Xq=C=Ppl4N#)&m+%y6|LJk~yeU@q7xRwl=1^^3v?%)7O+J=Q+a zmU6v}R<_65CswuvVIEVfwPWoQ2>5Gq*>$WZFDseQ5BxZ^(Da7Y&&9qPQy9^%`+8|R zlbUC?(UV+hwCmWLz?f>sM4#0!gmS&C)-NZ0R=+5WfNg5$XRLi}5$ zPav2Ju^HnVcgc#v2+Y)FbA4975X^-*4?B&|>KBC($X%tYvG&Qfm`ijuRx+U<I_>BUD#o?Gp&$f~Hef=I&Dagnpo_(1K*Uh>xs&wh)PK2*|;FE^)`1 zQ@kV~4Z)NV5tc20$7)>?x2rOwE$Y=W`?w^pWWvLxUCt}itrbMy z8PhCUkQjN-uhMR1@Wwyer~U7%ACYAw8&EtpME~#=mKcX1*iPV{9ioWlSA85BwF^Y} zD7TC2ReMNV#HA7CJ;G; z{4RS(<8-zV%ysQu_WjAe<~04Hoe};8`~R)&9gRg{#Dxp5pmpjy?acOf**W2_zwAsDH){-KknZu&3wMDE-1Cbp?4f;fIFt?z2>Q;3PV?7G(B^vQc4dAqMAEi}E^ zs$u(nc*4yPK_NubVP9vQroaDh+Ohv`jthbbe33wldknX_l@!}@7f>w1%H7xB?+pURda zBDCHB_?R){aNMFvVeR8j5yG|bL_zFV)P{b<$DFx+b{UN5p21N-fE+o=NMEYh9G}(4eD14JUi}r@pSWQu{0sUZaGJW$oh#<$@oFjAiY!f-sM%_1$Id)7xS$_*kyP zEo+}x5gznr`yyMlPp7na?DASf#h%x)_K7t_)IN4?_sd?R`1Ld`Yad4_7viJ0g!|f| z_E{plMhO|Z?o(|sm)ksK=$;p9AEz+Fs~Y>h?GOG}J9+jFt9`yWYad4lm*@)quCZ?bBsXAGbN`@7mto4`uD+2(M(E%cItN zxK{f(g%Mt(gp6hF;|S$KwhI~ho}!{KLNu~c`*>T-h3nGQqLPU?Xc?9CW;tf7_URNt zc#w zS2ZDHS^GFbxY~>pGR)tH+Q-{sy?N~uGI~T&?X!-koCrkh{BYcP?c+UBFJXjGDA!64 z0qB2G0mKMt2H=bu?DlW3GWx9M)lx^3JOYde=927Vqs~1qzklsHoDsO*&lvpBJ8$^F zn|#k}f#_VCMXO&i^4^xTTlsjJ9=iL;d%yg5kG%K4efDIpeL{N0yjM8Ax6>1Eec$Py zKmX46R3#IXLWrHF=>YF}RZbKx@kHAnq~D`AM7IYcwr$QCfVniHSXWG8gx{Bh_l)a4 zu{wwuCsv>_U)B2VSo;KmxnRLqleO7-SoaAEBQR6fI`vrl1VXuPrFH7D_K8(zL72zn zDy}?BhL{KhqBgngy4K;w+9&h_KMpN4y@b{+c>7*p+k{Hm?{JkEYY;n#oD?l}peT({ExhrXw%D2#w@Y9D8;ePaKEx!mS4 zj&a>5)?OK*x*FGg0wG+`Tj~nl9+eD69{OP|!1MF_79N2R3h52sr`8wiJ|P`5PP;Zc zV}>hTjq5&vU@pXFjBlEr_Gd@;FR}L&{gAzJktvM8OkFmAyRG}Y&(?juz*bTjpoyjy%M5J4eCL&qAq?0GfmeU%*75w#do z<&v@XiFj77+baIsI$XV@u_%myZ7L^@wNK;{=5jm5p4V9WM22I8>T0Zg0wG+`Tk6W( zU231u59cpSU!OR=;B8U5kXk+!e9e_-FgH z|9#!3vP{K1$74hE4_{%4NJX6x?TVeiJv&4Z!nN>3L3AHwM7!?xciv4z=hBEOOpM%P zP1~(#E`I3h{s%sB$FKde)rppu4$PmtBkq@<@raM#@tLPRx96+E%zF=Bcz9*xr$PZ3OE#1nq--aB$8B8ZKgbi!Qte%wn}EX@AyRNr0}H!ibN3>nHALd2G=uMlct?f6x0Z$E+fP!iaW_ z%=h^boom(GZ9wxLQ@CA>DeSK!X9RP>kHhm5F+&E&AfsW~h|PvDZv4%A`(N{_J0m)O z@=tHOGotpze{$PKoHKjMdm^e!?I1r?2_g^_6GJ6cxCifd&Lw+ zK+~}kt1=iNTsvu35N3ao(YvPFg3^*Fo+}ZI)P#bEYuDE2lM2WCU}y8Ff_#Qv_i( z!+M-6qPS2?NSycKdzBFs%*deyZb@~;6h>ffU)a1^kP*y<@7E)WDU4{>t2SRCIv0AF zxhn=T!>^bE{X|S~O98;YUdcp%1!4Ax=xT_$eGUjzdclP`I9hVvKrn?7uz#RG7oxaO zU&s8Y2&Qnm@Z-?JHiEfOKg7JN2&OOsk+!ghLA~~gwwMcXvzX5tf+>tZ<+MKIFoL-_ zHgz0KVMM!LopBb3&c!(%PkrMxeLiyVgGbaOXvB5f?PF zE<-4Uz&J#Pi!d3iAB-uq%UbBn?H}(|)C`O`eB#)0R?Be&g1KaTBt%Efh<3f6;Ye4^ z#dh)mxFC~3I)N{R1x1I_E2c04UKzfiG8iFT^OtQ{a3TsL?mPXw%{sB#5-w{gv`)i- zw-bdC?Rqt8F^*UrfZpOR9u|!6RR&WS0dEiVHiEg}p^JMpgSzhq1$K^mK$g8NgAwqU zjWqxoA#*{-r%tY|`!IzO?Rs1Tm@y8fpjWY?!!0ex5z-j}UB%i!Lsz0+$kpPLv|07XF$BXhPlO0M32undf&X3j$U2zVUPE+g>nzKweW>IrkP4wo`Q zCyZ#<8#8CwgSpr?DuZnRy+vj5Iqbof8W4eQGG>=#xt$QWPOka*hRr9UFaqzqOEe7x z^I)~bTzF^dx+gLPZ#@m)<(5bU{EB2SqP<~$)gFuxE^8^gXDK5njA+-Z^EqS)qI02# z;m0b2DbPYh7q_GcrZ57U-iSf!6?4Iw(OZ?llo7FzF(b|yf$QX=_*WS%8}!_cn24DH zQ6Te2hoLU1x3mHsSsSskUi&bG5$Iu}(f;g0JSWCn#64-_Tb-kr!U)KYS=3t(8H`{q ze7}J>SR;q7VqW4gsSKtt0-0#5A}ftD7g`F9EM)|R5$$@c$PB95WiGbA%7C{=9d%&B zyWG9rf#)y0WQGi;FamzOu3e@GVtUE4zG^ZQQCtfP8aMv5SBUxWb{?Pe`ln~O7%d}^ zeX?>Qh$4i`bSU25QH}@-BieOTP74`==v?SwcqIXBHus+r2*`&azpR9cX{M-l9ajKFU@C7K`_QOt#2 zrRNKRDHuma(N4W$1pkH~iGaEHHi-sg#>WCdT)V9SaJ&4=o8G#AVpgj)3+CeA162fmQ9k^Ke?gKxR1r*J z1pmh6HiEg>j~ilkoN4#?4XMQkFI=DVD~~T_7|PB}(66eVKlY-W)wV~@6h<66_@b1T zGVB7o;q_~+%(dF9hF}UKpmp(*E=VmXT%-~06`@ zIE-l5t2G?A#ayiQCS!I_` zC5-m|M6Z~_hyxSQQTtr{osWLu3*YwPUqP=J!CdY8tjHeyHJ82TOTOaWt-fLkBV1lo zWYw=OqqoIeyuw=i=#|tsZSL#(vFoUb6oDBsDTLV8E+d!=*Vz(;%r41uVo(^tI&|JO z1ao1{GS>sZJST!EjQAXTkn`o$-}$k1Jw4iNPJZPgnkN!P5RXYe?#%5U`0it}R)53$ z9%JoxI|H3wa^Pvty#DE5`_bkl6Hx>)T|u6B-5K;Mf(h^ag@ zhJmOun+u}2F!CH*1%=Ppe(If=YD_VZ88$zE?6R~oxH9f`vNh{Go?+l=#SOSniQOBtaPMzrgVI4|uo z7hAT;m|YU$ymSK3uQ(?iQnz5iqA=qA)0b|>c_D<0;)X?1Z~kPyUm=-|c67&Kwf?!k-$JTVmhdgR>0%Qn%i*`xO2q@dkE zu$=;cf7OD5upUONG{oFK2gJl&)LZ8*M2$lbrZ@-=Z{^qA>+uoDJd5&Oo=!!eO8}7>vC|ntd1njYtgI81SbE<*FV!uYVe1DheauC1Q_x4WV3R|4~L!1Yuqo_TNUpcY}*P zrXgm>p=K!mK?H|>*xytJQy6jI=_&KrHiEg(QhETF;PFk-*a0|KYFPe)!XEO@9#wB2<8}4o7QF1!%rYlvaNR0y7bAF1D=m20|%?n5K(1*5MRUTx$Q4GVgu;k35ji z65ap61Nrn3p026hGJ+|Bm_M`A(@w>uy;T`D7j;)ilfDPcx@ z{LC94$|qdF73b{Gt2noq2)poz3JN12PtNsO`}k7?bM5x*k|0bABEv;A8TE7)bQN5% zO^nIA;}ATzT@=_q&JOO@D@J_mTOZhXf`{8;F7}>21n*pX#yxD#h<3etc97d*F7|1a z!QKG-#|gvTJdqKP|G|egpQ0;IWUk%(iV^L4^<*Zu#a!&uI&#b`FMeN+!72PR{F}ni&LPS_t$u0=fz=*e1tB5Ue_vPN0RbKWg8IGy?Q- z1cec(OV`hZb6di-lXe-=u2;PsGQu9r#g=X3n0+)}Cx%Yo`CK3^Lbl6&WLJMQ2L}Rb<44m6se- z4BhOGIJcFQxBB}Fz!mn#YE*bn0PruOwkU!yc@bR=F}KeFfwiUNA`f-mLX__c!nBZR zf(*HYxL}(clOR|p&_dWBrG4`tL!3f;xug5vJC0sj26eHU8YMgTxWiF0p9S2sI!_HVq&zRWB z=7O+&iXCE*x%iHZx&_~*do@B}_hd^(A(#vMA~~jzF?*cbK1as+Wfc=9JNzvG_}6-8qYyZ8 z5nMPKkzs>Vd!!mL)5^T)1AElfN0iV=rTT(#-# z)hppL8IdulQ!S#3!iaXg;q3#WbD@Xn$020)3|ACrA+y0wy%L0JTC$I|k3VF%>ea+t zJH@#m%>E+7MfB{GS|l!bWsa$J$04ZOivrJ2{p{2$M%;J$%FQ^h>?2$|MHD02^+udm z7G*Au=B}pp54`>AjDz#Xt|o8)qRkjA3L_4mxO&su3n5(d7j1fbQ5ey#H@tm7q_J=jnoc%)eL~9>^@b>DJaB&nkb0R7}1abU{Dx;%@h$5~BFFc{f zBr>i$_k^@FxU$}{UTxJ^MG=I_i^_>a^f=G9n9DSh-xI`jl@vli3tKX(E#_jMZX#wE zgg7sqKnoS;rFH7mkgphV|LG@e#(A|RTsvu(5$$>-&dVOm#g^4^96ESS+WGvkYtsJH z{M1c*6onCoPh7JZ=Y-&dVOm#g-k%@$8JX^T(c*BR_QTSxYZ5ePNyYTH?C4xaMkUTgIV- zggE=f>burH{@}aR7IRVjJFkC^5k>7Df4a)(umM3_4_1?7>{@F-^qmf-rNI7NM(( zs9mxsBknu>w9SaBwuEb^T*8QUy%ABBOPGu8pUSn-qe8C8IdJw%%lme+haiqWv(PDI z5g)|Gu}J{y)ph5dk>2;NA0uiS4?39#*r~EyWIccd27oL+gM?U`i@xh1#$B%4!Vznh)^rliWN1JQw?WTe_d)=mtLQKSU=-_i} zOb{}=B-B^WNne5%(ld6-iHx}a^m8_B&a;|u?WA2swCh!yv!$4eE$d_U(W6>=ZjKiE ziHO1*C8K^!1VC2%6h#oGX<5IT9j6G`Be{0cE+b(7L{qmQqbdOAV#^Z1#=+hIEo6?` z$rBlI_{4L!@)fluT%<$o6>FCf?Rqu)ED(7IS(Y7T)Y}m8E}Zaoy!|HaACMU~$9pk? z3vUWZE_>2{%S(zP2z!@>SkT(XA1qi1yvroG@TC8`451JL@6HIcx9*>IDvaAAF1$x0 z$3zfEMDD}eD8fsCh&hn}HV$YpD9~;o_#nflBY&$sUZryO0u{LdN)DE{;tCSg-K5p71`rZz;Tz$EOIU2*P@`URg2% zy-F?{`MN#W+Zh2ZB$~SAz8h^Z7e^WaY~&K17U$6}_f`=?Ap|l}pg#wKxLE6o;I@zx z!yXI7>^QX`BVhBetjgfFmbi3;O*?}t;=H}LcJ;guQy76>ZDk*N_c(LySPMA};pnHt^YpkGxwtffm9uM2F7oK+!HE?mzv~jX3AFn2U8tBDw`*9E@n! zt8vb4F&A5Ql!0HF@~3|NSEl^BJwuakXfn*~IRACW_?^-ATREM}e;+5FAMR2N<-buC zPm}WRWp2x03L{uvm(cz(Z>L|pWGg!e{ss6uk_!Kif1i% zc_vN}?YE@pO;grB{`xrLSsCJLJzR}JreI8edVTLz`^71e;UY|iBJhh-&gH-Jw1!~M z@ZStu^OAEvdfN@pdd6?RC&$q}gAx8~V21vt|J|Mv{ehD|pYQQv3o=*xes$zbVTAw6 z*xEQ2h<)c`%eo<4S?=vm`AX;V->C9y)?rty14X-x@L!*bUcLH-FS|aT;pMiNt9_p_ z_yebY>-y*wQyAgDY8Bf3<{$m4_x$XKf2-MJf!K4d)u=Tw@dT*b*`Me1Yqpb)oGF56 zPii`P8{yA$h75bYB}ZNu#79vW;m>xi%P0hM`7?h5V#dh*X*su)KhNpcyFJ0f2!B#D zY;NPQ_VL%p(Y>0v*h8JyKQ%K5qCMM5GCE8V{sgFV`E#Cxm_r6r{CQ62+O1cN@Fz7x z#?O7~mh^URi@Df)rs7oo2z7OTOnvZ+p+tmF&Y@{sib?a~nM7C_E4B z6n~!6ui4+G$zUHulWsaieQQ$+DXukCJ5?XI}aD}%v?B&6Wznv6PUiIdAw$@n=^Ld*_9rH>P)PVw`i zoolCFF~U!RhKvU&!|@4h;o>Nmjym3iWOqP|)n`h3pO+||_ni4&&o z;eK8;yxq>WWDKge7ljdi5;S_nH5|@aMq9$Q(^(uw_zBa{ZjA(fRcCRS3q8E&tpj3q zZ!e0U7Y&~b>|_r{_({;v?tdq7UKSKC$cXVx|CA~jo(&k`XGd-1ZT@(%#raLWl35^n zoU>(ByM7wawdm(XyGC&?BYUNBUKB?7Nzmw(#(5!xYp1gxjPMhtq1_q@Jh4s)F&BEc z73W3q^P*w%YN;f6)D}e$?IbAmYIdCV%1@YvjLI0J45CoGes+{(bQok5g1P)O1z zA-bLYylB|G;%22+-5VI;CqX-!AiY-|Azb2D1?jq4L$tG_>oUr({Di4WSryd@S3jtlvd~m=OH^6 z&Shkro1RivjA$n=f~%bnTaz&{h1(r%o-!0s*7TEZt1{4TuM_>;quapG`-MH+-WW@q zlnpMNd+l7*Qs-~~z!OV`pOo#0b_SMYSo`=>1kRL2Wyx8|dHu6{d)B*zXlGzaMu!au z;_@?|gqTxCJ2e+}X6@pnENM3peoAkN@N<@g$X@x0Kd1Of*+8>j>HJX?M)(<6L$BNw z6+*bkPQ63zAGHS~{M0PzD#yV#XD;?JZ`>iM8F04N+wzmLy2MQBhC-jObjPR47Yc^*Db8U~DDU9$FrmU;b?gEi>EzWYgopc<24$&!oUbJ%|U&Sm+ zknZiB!U#VJx+a5XWZ}YDybT#e5kxyXx-O#-e!|qb{7fMsW*?p}tMKG72FkM5iH~4wct{?G4 ztpLie7~v;D!ybAESqR}G9gZU}?J~kon68b3?ZI5=;d+L{uhz$DBmBC2o>khZSB&7_ zVDfRqZXfqbxJ0|a2%={IMzrhCn;Do3J&boFt9F^f2>gCj?A=e(`)y_7Ielfq&lk9D z{d|FYNjrnE+ABYQ;aq+~$gkUZjYOzl*-4I0VT7OkaoM_y%xwu5p9!I%BckfG2qXNo z(7Im@h(7oEnW6zPdoID5BB%HXq0U9JsZ%X8lng<%vp*!m+Q*-c1E*dxGvHUJBV#yo zNAPJ8M);YcRT=FZkyHH4j9*Jjn=%;TXJ$x7N7=3=^_RK)1k4(Oz0Xe}eLhcQA7zA} zFX~>o97p(QJGZpvy9Md?SVOcENoz9Lcm3Rwb8*~E(^LNNuk*~rM881HzdF45UF6Iq zOko6T-A57GhY`%hI-DlH$6*R1)Pj7E!wBZ$98;LnHZ~3FM?S7DL zd-%j{R->4|T8+!TFikgo?`w=3f8FLi4j9p{(;k2I!v8mO3Ae>utPyYBKh>`of!?Oa z5JVBo#a>AO8^=%n>1}sD_t{_4M*HUPdexmzf4;xTb+=wI0@peZMuy|In2R;yy%I#% zE+g9YYWCr_m%i0&P9X&sPO5ClC<-HR>M77;uL{9jIMowlO2mwD z;5YLhY`UkVMYux1zN~#KrJQ0F0@yIFil5Z zX$Wf{e~Q3~t>luEPR<<&Itj=Kvwxxs&}0yTxZssJrq;N_{ESyn;Q6VaoqELxoWEMn zaO3%_ zUj2fX)ZR8D+VzIF4~X>ktIL`pVs>vY3bYXRXW0S3zuGHC;CzvIqP34dMF`hU5hVya zCnYjmM3Yf*J`oqrGv$~%xAzJsfx^z<3j1?bB0!fBo+t>Dw?p1#F0*X3G|C_fA)tjV z8HHdj_UR^Lc1eE5D|7-aRGgCzsau+_7=iOw8Nr(f;WC?Vjl3v~XxAHYJ|H?5Tb4Ry z7Q}g&urtm>h5d0lVXId~VFXTAZN+&ZgiCg+t6$J=?WHoJU2nwsfXFz%rmPtvW{>lt zKnr1imK^~6tGyD0okEfrwD$3*2%JJnF3Mxh>z_bWzG4Kwc1>?vGRm)@tKedvZUdiv_#b|MIAhf`H#fh*B_*Lz53c^k;h$mY6 z_)`QRD!!*q z4G891)o#h?@yv*Jy&C7-7IU#>wO2T+6yAWdG2vIc%^!@wDVy+PmBDQZm!18{C?E*p zqbP!~Geui63V}04!G%*jIVQ-MU67yg3Xg*p(ld7QT}I&i)w<2ucZF-G49AFey=rsT zE_1PEeat?3KjRgng?>T{?TpUqJ`Pg^VVaHzZZc+<ehhbSA z2ToH&9N@%Gjr=P&W3VWUzzLzPkrzU^WN*9rg^|}zH6z;f#>fXm=Ryw`BcEXpra%kn z86>;<tRC zglCA>X&`D3M&K;YdT!^om`gOWkP#ziM7v(i?c5e~v1Lhw*#oCgBDQg|B5W=?B#8TN z^hywRMq>wi5Et*=lL*8IapAN`w7ZR93L|i4BF98R^c(!i5yHiBLqgPojA+-Ze#PFvT#EJGG0E_h{Vy)(CeklV|)IExeW5_^v#n8Jv5y*lG85S@#?XDK86irYnR z(_;vt+GQ^GN&=Yg{^qT>-TB&w`so(40bfTnD}rr~>p&pK#C1c=j#Iy4F3w6SgDH%_ zY07mOj9@NYuaAQ%jKG^p*JUt5xD2r_16)a=cJbcPbs3CcE?j3zq%6!hMPUTap|8te z1askfT?SJaf%1|x)v>R=iMaywJFU90rhWhjEUcDgIV{Z6)PYchF_Zq42|^s3e@ zu`-ohyRG5~;)@DB$e^__TQM&gwc_plsa_F95RWhPAcGOawbM=+03P zx(4^`kP$&#_WS2sGKgYaAp<9%;<~j?G77<5xL%jR6h+*>AwvvIH?!WO7kGc`_;HN%&?VZz)pKo(wzDL$( zxV&ycE-}QL41u{XD42cXnp0(2C^B{u}m{$Vr2*?jczHv_34TT^;z@@1vxj~6yZ_Z6 zD}uRzj{A~nf{ZKQ^vmzM{Xcg^tVVH9?7E%0|Ci7%WWe&-D?$VpWYjtR_uI(t`?gaz z{qsKZq)@whPX7f@yM6DAzU9**mdi7MZ`5%Ae=-$)+mLix7 z-t$WzjAsFU>!U~a-tzIIdtdQz_mZG60`~v4-w7G-HsAdx*0Ue$o)`$`f>*|zI8Fc5 zeD^PG^nas!dr(HiJ)aF3(5&UFy@;ql@LY?CS|TE9gTe@|1|UIY6oP6Is!<9Nxg>gp z%o*3a^@ z(%rV)-8Tfh1iE4huQTl0D_ZfOl@K4fRhG>Yr7hyZ_hrEw-*oECcUoq6o5eZeASfIY zzy5-I?ud*rP49TisWS%+@hkUUawAh1aqRi`+)>%*k3N2M|1FlYe)X>u!CYJ|Pt%{< zjP_*9i*Nm#m)^(}M!fo~KYmALQOi~P-(WfGiO*LAbKz~;nZc*8u$lSkmZ_ie1()8) z6h<7FI-+Ij$6DnI9e>APUfvKfL$S;qV;tN=XuYb8|73{2V->*f zSk1r`MnG>>W&D}h{5!0Yd9u|dj9@N!Pdp_!O}E^0bpNm+exZ9wP#6LGSGDv?^WC?b z6~D22Vj!3cUKy2Io7K+1Q!uMBWkl%RgvS-`o$q}Kehp@R%PtB9x1C zIQ^^FojUWIPrrTt;f7%C3c_q&zg_e5-*D>8Ck^rXCn^H*m|S+PUIGofJ<1bX1gHH! zUFc?QMy$5W@}{49-Km>?!+P}^^h$iU+O^*WAzl5#H=MfZQ-=7+B@m{j|n?HGU@7-pPgEl)eg1ICfr|+-|pF3QK#{{M37re|Gq``+Q^?L`rU`CI*(;CFrZshb{ah`kn3g@9Kk7d&(? z#$l$Ip<#~?o}-A%ygkt{o**=RH^v)YT@TRNY>m#>b?XMx07M$DrOQbFI zDy)XM=`F>;13?r)u+4w=#QRP^^ZYxz3`Q^)X6G2k2R?k{y?^sR9eMA6`z$gxQDBeW zE4P0jFl(Z3Rr@SG(Q6b#wD%4&LMUW&kCk{Y&KoSE9`WW=XTHDX_UZ|vy+$z^?Y$o# zv#9++o1>0r?c=>-E*;0R_VE!i!fTX}v8;U@pXcD+XFJ)D-ck0X?;B5keqSt7hf2^q`U#}UjW z5j_2mRslTR{OX~seU=EXGVJ^2yPvWu9Ee8I1NCC1fmXA4f2k=EP;~vqX4}5;B&xk0X?e^6^UTvw~<VMA}NAEtrfjm);`gzYS(L&KrCw?M<^F6oEQi03$*rG zBD_Wk8Oz$o5zHlX`%3MzL};d7);^99F3R&TNBnv1)6P2fb)UMnx*g{e@jd-@L{O~V zLfCbD55(*+uYIn3_48U=80|eL{Tdndp1pqU%eHJt zh$09ZInEKTjGPh7b?-}JeBPhz)kGA_CDAV8Jhc#zxm7ZT`1N0?EyJ1gWE!{f(!N-Wpo5l1TokgGVHHgFxrB4L&o&U9G~<0r+Z0^yjid#-2O3g zu4I^tZ4S?G@>*TO2%(V8+xPwK=roP%KGAnZBZBMX^0@932qph$V7Fr=AYTR&s}ye^~HaFNxR1hgmSTV&)fartFF0y|E<66cV3}gL72_! zyw6zs1OkzoTnjJZN+$h>xy;`Z-OSC1qzHoKwK>Y}Yxn)Ww!9rPPM|Tvm9G9TTlabF z7vH}BcRy$&CvR7-inM8Z!-tRVecJ5thL1p3MPUSH>azJ*`-HBTOX6{{?h_Vd1nP(K z-ErL~5W>arxTt+12_1sS24daQi{ zAzYN_eXj9O%ux^7y?$Szn;)QS`#$$63eyom5rm=RdjMufVOIN0?g`!c)5di&p-sNYn5BIzxvR z0y4Ln!4R=0xwEv;C zPa&8~$D!*!hB)aXWW;?BJV5(6y6#g5pn#hgxNfIohGe)3W4ZKF1uDQsY-_Z zinz?*65Wi>h@^14EN{B`^`~xnwe4U%s;$tojB5AdiytCg{cEdz?lZ)%U5;IVLMT^7 z+B9K*#pc_6?6Dwf!$%qMQ*V5TY>xevU$t8FqgWjz1anC|PXE}}eSXyTynfMk0hq#w zD}T`A(LM38hPc|+eJ-_geT)z;j>qZRUdg=qgV+CA(HK+he>~pC@g&=uc-tow!CXGRm<|4o*#rN7!YX~HFaoxzeH@!> z_prxuzU`9PXnTHDF3QK#H~ynjH@)jAx9?r^7`I^T$_T=|CwHADt$nC1=7PWN#W;}K zP+j`EsKrE3n9IDqWQ>TU2!ea1>pm=_+C|KluC(?kgmTraJ??oGg%QYIWpk~43c*}5 zw-2=sGMsCX5iJMrN2b==rx3zLdA=o|{((6P@!=~)UNgisVug0F6cLoxZXir{d=Ku~ zAwH|c>Y0x=5YT$RcINikXUnq#N<=39U`}MHrh1|Y|SXwZ4unN)aA69F#Psr$+?K@az zsV+kiY;)c7Vgz$xMhzLd=S39wRqvJCKM;z~#2*^{%XamI$vh?EB`s2MqBOR{Km@`#3_lkXIstS8AWgaK+^{N_hLS_UROA zSLChKJ}!gX^%^B)ENdS}Fqh`UW$m*>c#RS=mbH%~l#BB5O6{|Pu$*7JOUv5F5y;NT z#j^yQeW-m3QL_(flo-c|ND8;h@`iOEno})`0_`)ILjuX6j|_;|SrRJP&ikALetb&tr$jxa!)z&wYyEZ?iKHK@o(Z z<9h&RM`1qyOs<|`w6QXUj2f$L&YK9LD1v$j=6MZ)d9cQDVN(WC1VI|{=G&*&KG|Q^ z+w@S5j{v=riM2k~G~zt95RkcP*V>BJbLZ;2J?8DXpAZQ9xA$t_xfDTm3WUqxw#1rd zkKR%Mpkc@$iXaA?ci4zvuFvH7Qifd^!n`C#-YnRC$?e~@&}L2GqV`FTBMZXw+xIJb zUPKuYxeG9^`-BW`7ZF_hALF`DAec+Xp?hA|tCK!LMj)@$K925r6+*d4hm-Dk6-5wc z+1NLl7VAD`58`59XeQ)JCjE!G%->1|AdEw5H60#MeS30u(Clzr?-!_PeZgluK|I0Y!NlC`-BW`7h|gZkFoX%1aoOl z9BZG*mW+UHY9D8;eFC9eoT5Vxyi=Lh88sFzWMew&diYbi1H6vz6VOBeEbF3#`dzW$bwXEs* z0YlL0U>Ad46-5v%58Sgu6frT^*@tb(U+R0fcY7dvKX!fs(hx)u1luV9E`t!w{$Vv}eU#w{rf|EX&AXg#k7!G{ z4&?ZvQ~1{q6Hy4^_K%Tc)&zg6eTa)~e&1>L#O1n=P=L18Q|t(|@9o+VQu~k$Mjtsh z-MsOf7a^ES$HD79Oku=>7p9xnpYvjba*+;)b)TXL!YrG+PDAZe2*hJ@u`j?B(-mfu zkK?&J^Q+_{AA9hBAap}S?IRRIwD=G25gCHuo^TKK$uMr0dU)vIMWkIh9Zd-3s@NP) zM;C<==Z{@PUZN+23c*|w!E!=~DU3LL!ZWq|uFVGdWEdlaiz66ysKs87D9TZs85%m{ zgAqcZc150^jwTt5#+YiyL{111g1LNrF@Nw0A*L__wyB*TJ|V;i<)REeoDeFCAk2Gm zpK7R<3V~QjF8JGCjKfSZTSV=(h%&EEE_i$ALKNipEk0lqgjqPe7* zqkmu?G_OXjhSS5wmDl*b-`%eug2D(~$M=BDj`Nu_DogY*DnMk>sA`=z5kwIL%LDVg zhLCZXmu$#j3b)G|@#fp7je`-wb0S~eZx-ym za{I@~F*5@Z^;M3LEC|nU-!Imdgfb%Xj%BQ`LI$G|kG0MqYfCg*=F)NS+7eS3fxJ@d zCA_x82<2k!>e^CK1Yvf{)tyCsmG)pRwrn#V*H_sV`4}>Ie%}zVV$23fA%u93$dICe3K#fw~ zKGs)(5H613MSZn412lBT$5>xA1Y(Wa6?u#LDr9iG7*nlGjP+F@m`k(hSYJhcWdv+f zD=cGu6$s_x+^$dF7ex@}J-HsVsIPK1U@rLE9zDU6wGZMT+k&@uE<{0o9}$)HRZ<8c za~BXPL)zk=a1R&tRrG{=h`dtT9qX$=DAxg+Id$)@D2zaUEH4@BtI#fUd9DoYj`da8 zoDnV0r?-#wRUm|m=8|TP{(*V$;=GHW&OW@Z@qMgo5Tql5!U$Z)_dv`J!_0Xo*LSYH z%eYSVYV!D@tjL`=5kwIL%LDVghLCZbeZ-awrf|Eg5pTYI+Bg^?To>o~2+*n}q7dTl zBc|QZLO^C4j_K;+T;Fl7SiiDy$Q`}IdapV~5Rk|A0KjEn9MKkYLF@6oHy;S5Fk-ZM zM_I2JAzX)Yd?5n=V&p_2gxi08{faz}EO_5(|9)-#iYOyue|`O`WN^Dj&OMw~CbYgP z1as*)bp6T@Cw+vBc<{o*X@!N)Epc1QMLHbTuZkiFvs11)4fRzaV9n%W%Qh26wbbGx z{D-;B-x9q*B!v+yZ&-~Y-=%gB9lV%yrK?eeP_Bx!aW$$aj5vSnVzRkbONC%AiN~Q@ zLI!Y~Gve?GkJ`1>s6q%A$Ky~f8N$4}o!KU?hE8wSYRM5z`iR*3(!Rbc&#Qr}%iwk~ zrdnsvYN-&+r8!ZnB}1I_aWDe5sr3@AmI|RW7p2DOWrFI{QvQwZg%S$kYtDheZzyUONT`xJt? zWNw$eJEkzA<>2&Pt$mP1UAw|XdA`}Be_)O>A4MJ2)|RaAagFa|&4C~t5fp1T5x9=; zftVfUvszSr7*kYd$f!|qI&UI~A_$fT=6MZ)+NXN;h%FiBKPjCNtPyX%ecCt}AzT+z zg!S=u zFooM4Z4Mds2QQ(vgzHd_&w2gRy(I3on+1EX-2O3g%(FoF+7fvjSrDFIciW5*%81Cj z30+$%8H`3e)~dl+`-I+^OUI#WOD5x_kB||_E4BKeYfFVtF4nHDEfqx&W~W$f8P6>h z0@h3}wrn#V*FNb#%w_(T=mjDvj9_`gN>O<`;xW*euS!?CQd9`#sz@7Gii*Mr%)4dt zvGxhyWiE-wMeP$dX9Vhp@?BjiLe6k65iX9$MeUP$khmH;y?v~G8ltTfRsIlp!%C5H z^*Mvv#h7XhV61%t!CaaX$J!^dB_m*)TFV$~pFk)V<>N)|6LXXx%*S%AW>_hrwwTMV zb6$bBOC^&O<}z-OpFrFD((tEf{SH*CTU$&g-AiemSA_%i= zuDlHEK7~L$CKvlcGhWp`MMf8U0Euq1G4vH^&=n+K@>qi z9@_&TmqCbT|KNfSM;VS_3b#Aj95U<=eno8w*CRLAeTYH`w||U$tbKBXWI=d-`+nt2 z5m81&-c5|PPsreQ5s$S7FxEbSU@jepuKOS+e1wcZUa7SVUH2)3a*+;)=hccL2(weH zos8=~g@84ai!Ix%&9zVZ4|AEnC3=BK3L{vaKCi~UOYLI5DqYF*YJ^a(%g7V|;~yT~ z`^o!{?qB`^Jg-(1Mqu78n~$|mL@jekJT7XVusI`8Ka}t4x({-Odx>yyJT7XVwS3;t z>Fs0f(-3Xlr}Br$8`gb{tIr?YF2+=A0AuYF249c_x;X$1rZcR;5xnsWOf`XfJf)L$hCJFSFh)$t>*nCt9gwq!7c5v&n!zI~buMhMpxIX(ikbswS-;_f4+-OxfnW*d&_>WW+!ajw4N z0onVp`Vo+ZAc`O$kL>}F%OFIve{eyEqYOtdh1(r%4jJ~>?GbGW*Q0ZM&g-8TIZ+7V z_K%Tk?L!_%7QFAYf4{cwLzEG*zkc4QWN^Dj&OM6O0JQcg1as*)blt}gCw+vBc<{ob zXe~q6eF~vmq{HF7Pf-M6md%xyVcn+?h_2*fUuedw+J}6Uxy;`Zy+9;|5iD;w??W=E z-9rbjAYJKspF${CMcOpoXm9uXulB~p*R@}qDheY$aO?`Qxjw632pn$c1aeo|Tx*{~Fqh2jL+yhM7wbONZp*>xyIT7cLbxc;x8&15Fh`k> z_PQN4Ltf+iSPvjbM+AitxQ_3Em>uS`T2y@)ZB%E-s8Mk`Zz6~y2$l!tc?}`sFfZAV z!4z(nHR8>;Pa6j#gzE~bkPCv56NM0n=F~y}=2kNpBJLoatFL%K_I|8>1f(H|A_&N1 zdjRAz2+`~xT+sR`!x2p3c1N2-hW)`ys4d}obdJw?{nNc9M&2ygd*$|zk&m@cj*u(} z&u`zatosmUMC9FsuKSc%bGwM(S_2qspXe2H={R)V2QlFzWCZd`t!3!CPa%|xwX5fS ziXsTJQ?9%$YM-dmt|QWn8_Un~pzDE9BlS^r|R=V0qx49ij*s$JsB~ zlED;imo?(ew@;J72;sUa$47v+ibE7a+R!CVrL!=4v1fZLoAhfjFauC4nNLbx~{huX&w=GDIL{^(tfq6x;|dK^Q0+q$ZkOc^wGYX#D2iSo=1W&v z`xHXCYStdteTu>eTh!}g%P;Ucf^~7*`@fb7H|3X(S{6Yykx0 zYZOB)ew#xmBf_G<5%Sv{)DuQ~jbbv|+LHVpJt3G&$FZz^e1wef8YN^bYad4_7wK@N z_E|xgo$}W)R%#zdchIAL zLb)o^)@mOg2P3>j2^q`U#}UjW@hHDX≦@m0>L{evh6J!o~5pQv38QLtI{?gtwb5 zhT5l7Mug=O@0Ff)uK9!8^%^B)ENdU{6?6IcA}20upC!U;l#sEkeH@`&l#f?xpB038 zPyD{cG_3njTg(N2<5^8AnWQk6d3(vQ@DM~&7{T&ZYM-t}YS(L&(ABc`afEWAUg<3j zzs*q;MtD^dGM2TEx5ZpCx3APbON3W7A!AwlI6}B6&$o2dKfLyd6-d+!d2OB_EB7mi zz8@h7pyPW$X2*H$6DwXAZLCZoqsD5R^Cp5Qg5Vy4d0s0UjM|%i9!gse~f&reX{RlL3n=qer3;#C?g_Q zQpa_lkiqRDf@}X{T=xkCbLlvA&kHf(BV+{fO6}w5o>w81i*z`gbuNk^%uc!Mw5WZ; z6JgEdV#_w;aV3-f!(8TXiC!R*!U&ev=BV29qBx*-F~gOvbkD00%5@caqW&IzQ5b=l zx@6*SNFV-Gu%sri{o)o`(!2~u7*x;A8Vh6XnS6j8ARS< z-6v#lyBJgLe~h(HAec*Y;#m7cwqyisQ~Nk$?Gp&)qI|rlePWIhg!x$RIxT9SKwxG_ zF1yZo1>P=|Oj4N3ygktiL{b>R@)osE%Aj@;^QEh?_6dY?J&tBI-Sa96Bapkw=40&> zx?(Pw+ZVM@SdbAd2dD3jwND^~i}HL+KK%o8)YY{vdiDu*jqmqjr=c(%5fnz?I=*if zbQET_C+42ewRag;U(1?~KhY3U$`ZMDU4u^Xs;L{TvzA# z2+%4Sq7dTlBc|QZLO|wLGfY?Ko{)2O8$kB{sy&Dz2*_i5K#t2GM6-WzL5HIZM=*uk z9c>O7_6IMawuI}6IX>t0Pxq2~#=U&W?H?o8+NZcCvfzEE{rk0bAEJziTuIg1r(|%u zN6tNg_CK`tDFk!rICR~|5GQ?vjCkSM|)o#nd-N#H*PrH5pinpA)>8qb`>5bf$a8aIzpT}RXWOC2T8-c>{d(B*LT-18ARv$J zVPlCsuR?h36MJ4}kCfporQ~YFYa@Lb*_{^p=J_ zuc9!*tD2CptbM#K=90O6rS@4OG*d5YA4dom<$0ge`pnkWePRU?_s)53o*ygsD~Q-j zVFa$@dq8H#dF>M`UKnkxOu;s>+UC58Ac`PZ9+>Afgp9+yWJ3m1xLu5VW6z7)60WOh zbgg~6976LE_B393xtMB%pxBId46Oe`=iXb45?E#R>AOvck=hB;P>}BlgE(-;rVS$D|=o<84pp>CE**#Nc_Aizgp5F5seK&X^D2aLkq(DFuc8RTEStMdi*=vyL_}(G zu`e_OawU^CXD;)%L@y9YVFb%-b5!klQ5;aanBhuSy6060<+_?YQTM!x!U)XNW%IH2 z30*Ol#N%S!Cv46L)DPvmGQTt>jBd&%{Zy#%)hG=_Ul^I0dqV@?H+%Cpc z`yXTN6A0$goH*7#ku4bk+tfbJSo;J*xhNkmYM+>+1YtgwyH1PRClI(ZO)k5Z8AmFa zq%fCxd!i8^f=CJ@Sl*)cNg32GV!m`W);@tyt|!v0rh8sRVFYql*?g>hLRZWsbNiz9 z2@5i!<>2()vGxgsa8aIb$)|r{j=IL~;`+Mi*(cRCzK^{Sf^pnyo5f%lG(AuYDaJxs& zJ&E=|wDu_kbLlvA-Nz6oeT0m7@WPX5A4k`H3ZY!AUET94iXhBRx$894K81ialZ!3e zj90Y}`6zRlza@HsND3oZ-mvFIGN|1{2d^Pr>AFuLl&d0be7{do81aE)*O1Ni8TUdk zm&D`rkL|bOfAmeK&irC~S1~ex+nf=Xp75x3PkgK)u71m@GnYPqx7-v$xHulCYx^qB zn?HE@jgs4mtD)1|86lJrVOhd^^)H@!``+(=`>C7m_$zxK0Jy9z?4>apW2*fRea5{I z%;n>Y*+8Fh$H<++2-v3fakTa+gmO_n9%`SW2*P|Ucb$gXrx2JKlFP1TR-;O$W;LBl zo?K|ehagtlWqCvGLozIi0*#n2U1{x82<56-d))IX3L}ua%H~@86oR>AZXaqNWH`4u zBU%nl-__cu5W+=yz9pajfjJ7E*jKh1SHEtazrN>Xh}cVE1g_)zWO=3m;RA2F>b(ttUUiBfAdl@~V~IVlLU`>HdtRo)l;J~LD1>nP2VzA*U>68&+xn!&M zaT(mM*C-)lS^GGGxilv(Yo8^;Ym|_&tbH7zT$GPjYM&K^`B>~5jpu!+E#|W8oQdG= zQpqHRxy;*3#)wD?BUs)_?c?J>3d}Ggx+7hm7Xm!wgginl|D1<dd;?k>&dj! z;M^TC5rq(L|MfjD@;I^}Jim=;WzUN!BO+H)$913354Vd5uKka3-6s&trQ`VjD0>^I z&9bUI@HSl(&=x;}4j2)EZi>c+kCv{Y8=9`KsA{Faw$b=QOLWZ)Vh@QwsFT>4kk~g; zCYVH*Yl4Q1j4=MpWQ<|rC{$-~>Z<^27;8udIvSD0@i*E?cc*DfyRB;M+0WT$@BKXI z-V2}KTJ_dh@7~YZ=j^|;?>XmvUp@0eOvIU2^^3ex=Qw)iRS4xG9S&z+MG=HqHcy=v z`##}`h}7g_UuXv8N+xa2T;^|yULcaf2$t8@s5#AnpFk)V<>N)|6Kj+p%*XQ7X|eAU z2zX+0SzA^dseO{dT;}bGZpqLhs^9k^3L{wFqV`D{)GuPbbT!sKfl#h5rBzMOyo$mI zWV^EYSo?&om`m37MeP$7WJJrs>APd?6A0m=Jl~Q}f594c*q-A0PUE>NtBv<7rN3>Cmtc_wuDW5(6@vZmu#86tK$O9*5XMG!1cWe{Rwu5-`ZlED;4 zutsW7SkDU;g)u{HVRZZ8Ds|pR{31YQhmN(QsB*UU8 z(1`icmDWCmP_A0F$1|^@Fao)&Y_7FWA(%_n_M!GchI4OVgl1~3eF`C5l;>OW=`UEL z;E8=_t8w*q^ZfNQFGIvx3M0^t_nQS>h_7m~d*-tZ8PIxf)3Ex=*(rixc`5^$Gx}n# z=83B^n8FCwh>nU8!i6YUl`#>85FY0PVy@c9ceb6&+bve|q(RTTklR-fkjM70xx|@Q zAv`C>nV0D>W%$(N%!?@8uh?AAya*v&SW)|&hBGgs5W?*r2(DyWy%RGe3wn)Wh?UQI zxsNu=h_EPdgr0eoS98B!qnM19Gp|B0m(F8Z`}hnQ;WbLgSk^v{P%hHpaOPDML9{9( zWayb!A-wkKT!=LB60LoFRPE^{xGZk+WUILqBa*`X%Bb|ri+q>*^%^DSv8;W3RLX^V zrH>YS`n!0xeYRB@lSOS%7~wTa$XM1s-WPL81P`C{!s@(4c$H!AuYAs{5W>arxKjJ{ zEJIvg;e@v@YoAUT5f*7aD*bLl8)Yn0H{vi9+jC>QFLKEmP5t0;`{8YN^bYaj26xnyl$seP6RuWCZZvi5O= za8aIb$)~?~?GrnYSWB{Po*z5+D~LEtVFcRoJ|MH>y!MG5FU&S}reLSoZFAm45JeCy z56tr#Lgry!vLS;h+%IOnappyR3D;rT9rO|56*DIaArR-Og#gTfh~0DNiZd^hJ)TFo z49ufb1Oa($56E#Dgh1_+T+sR`!x2nj#AtKKus^R}voGPgicT7wyCWu|5W?-he&$6U zM;3(Vw>hnxc@bqqKA#X&T;h2s}RaX zIvmctiXsTJY@8d7zvEsAL~3%eFEj&kC6hL1F7vlUFAzy#1j}n{RGoR1w`0W#G*-CM zm7aMOLb(o;C+g?Cioyu2)MfLr_KB!vE{Vs*zE9Yk5vWVbcgKC7KnNGdl23oZ8g-4;?R}^5+||{_ z`@3<{P?(Mg3M0^t_W_t4g$m#Wc_wuDW5(6@vZmuNFhuNfIyYV+qbP!4d5zUkikO(| z+?Q?1U@XZ(GCN@avlMubIyBeeD@8I0aJe>I(dXzf!7=F)lSzKGsC^7! zUfu335LZK|w`=X=h$ekR?8fK3bl<0BaKD&SoquTUQwZkLoT#;rA$qoC1Z-31I9mG@ zLb)g(54BHG1YtfF=SJhcPa&`}B$u^iRijF#RyAEqUQlSnhagt_WqCvGLozIi0*#n2 zU1{x82<56(dpz?h3L}ua%H~@86oR>AZ69hMWVkr!N~YDgF+;MT*C>Wq zIrDNKZIlsVQQ!zY^D3|Ae!WI987pUAgarxKjJ{EJIvgqlC9FYoAUT z5f*7as%7otGPqx_Q9{PD_HhJrX--_$K1+nxC?R86`#3_mC?BuXJ}U_Gu{?De?mAOn z%w_FdiQw&0$s~oj%-c)Gh)4<}Sl&wQnR#BQ7OCW0t}V0mDk*AOxf^O6l2OyPbp^Nlkv>Pxt;q1{0r5neHK zq7VXco>~aN9EjLGcdj_|GTGyKl*_<8IzNWckt{2crgL8MpL=-}}{nyXD$m7U@@ccHXl`}7*jELMx9rt}gKin@OxXwSueV;%u zm(D}aybu#{=2iV7uhcn?o_Q5Qxk!h@nO9K+VU~?^qw&nE5Qx;|Vqa(m2bSgFhAW9<`B%UlwVi+!K4 zIU`U%l<$uFK7kM}j>kpqlbMXT8almwtbH1yoq1Je5P8FymvQxM$^BwZb^bBdK7n8^ z&52{}6WNjxuuYxgjI~c7l#BB5qV|b3N)YB_dFr&NeF6bbOfGB7iX*j8QkcuUJ<%;0 z!Y2N`&O~7Z%UjewDTDe&%$Kgl+9wdo^#WSe^vtU$j6k+4n~$|m=!&^yZC}(rVL?W; z9Gt#8);@s{F3R&Q`Scg8QPhnb~)Sb4naC1DCY=)cD&y#=rB|OJ9#E_ z_+!S^_p+wrJBC<4^D2rUSf0w@zL@LWi??Jjg%PX~ojD_f>)MNK2r6#~{wF1Bp59W?CrARlEe z^S4AV5J_PK%NzE6NCx$L@W8dCE8X`ggmP7+jo4O; zfZLoASDf;^>z=5eaW8~$aXb#6aW{l{wV!!;zi2mfdb@tc-4RVX^(*p*&$yQi?iX{a z^AG)udm)%hbE1C6-4H!nG6J@#a~!RG3ZYz-kB8c)D1tB_i*uv#%&QO+b6HzfHL87T zRRbcq%-c(b1&AP$!U&c()IKDG`bEr_uC(?kgmTrYJ)U_Lg%QYIWpk~43c*~mwhy%r zGF+T_Rlh9jw4Q3&C2J|O0*eS9z6xxC#*8)pc^nHO^V3Sz~AapqMBuYKao%j}UdeCl!LMHKE= zY_4Zsgb*&QsC`bu=e&qQ2)BPAxRPmhUhzb)Q4Fzi=4Ey^M5B-|d91`vs-Af{0^ZL3 zdW~W|t(H0x3?|Q@?@*I6(f?u{mQ8Hb6(`T)UVelF^^^K<0DZn)GK|2(@pmu+5NLWII{N! zd{)MyHYkkn8YN^bYaj26xg>&z?>5BhyhM1FVedEJ)$cYegm7^@uGBs~%Mh2>DBQ<9%@BZ*DS} z!idr44YEK8*AAUDbaseoUJ^5J7VKkp`>&sQk;jn*;rVrLz}1paMnvwUj{82LMMfin z>-=Nf_Xz}Z={)qz3o#LAUez!1N}c2AnO7l{i?w^VefIUW&$(moEx%^JJunqT5N6pp zHyY2p3V}#XF7}0HK(1ucf0)bsEzt`^QW(MV+8R}7UgW#fFIKqHm7aMOLb$;p@&BA9+6hgTDW9D4ROvKgN-H$JvaZg;^_aO?LNJ%kL-&0Qai`Ca5f?ALgwAnv-=`4DMLHbzeTpIovs0cr4QF13 zfHjkgE!#|3wGa6ybD6&-dVxp^BUs*W=0!57--8E^lCE^$rx40jkv4wLt0;`P`{+@! zx!(6F1anC|4)=YK0o>+{ICRSMu6v^8cKU9^LI@Yf<7Bq5eA~~2DdTXQH*|VCBZNZz zioD^zkBzEF5u-7uI{(o7K80W|&53&72Q&9|f)TJyo#SZjQwZgvd_2@XMG=JgSe`l! z_k9Y1l_9yTEvp(;GPSDdT5?^XVLU;s_RI2y+J|IV6a^YFU%JxTrx40jtM*v?6onDU zU1f8veG0)`vbGPk4>DYwc~!qHx2NxF?NbQhqC5}f#-CR*QH5ju$hLWYJiP`t{_lwX zOfCqZ zXwGk#$3zrDAkI?@0hzr5IGRtR&K3JUCVMY-KLXMam`A4w0`k}%0J#i8ASWglbU4az z1XCC>+8i?M&ugFTOSrDf`8lt@x|hVWbF*L{yW2lzKGr@tcCsKmzrDY5*O@3IBA+J4 z+9zaizlh-40~l+cKroliL-&0U6S418{UWc_UWV@b6hgUJySndF6hW9}bLVAI`=mXX zi+!OPk87W_Idhr6l?*@_krYO-ytYQwzE62O){j7Ay((SlzE2^Pt0HZh^saMJ7=d-S zY(CaLp)2N+cwE#zVRJ^Hekk7^Yo9;}7sunG_Q^~}Tn(MxKGr@B(e`~RGl;xJ?GrM% zU(BiY0LI!U5X_}HajbnJTQUN+slAM`_6dY?Q9fSOKCv?)2=lSrd0Esxfq*9_m$h?U zfwM~`lN9DMZ%_0BkrYO-yhZJkGN@m~eCcYeeFC9ewQ4VGpO`r#knPImW9<_N=90C2 zQTv1i8PRfZ`tDf!1VXqd&qKNKhc)WuS+`H;uCF%UkNtpPxBojLD2zZm-UnjFOG8XI z7dLl8v}kjM4_$Yl_s*+00T!%>DK zn8N*zHir!R>-LDggzJW!pY!@FbVU?Gxcy`1TKka4kp(ZD@%PvEeTXt5@@YbApOV4- z?wr4#_5if@DFk!rJapg35O?|v8FBH_^|Y6v`#yzGF4Ez!?^6^(m}PV4WvG1$f#^yu z_JwA=s$|GVnalhw(F;UU7{T&}eIJrR{T@8S%pQ140?xQa!o4@kG zBfJ0hcaQAda|><=6@s}W9;Y|hF3#Vz-*Lb3<|}Su3L_4k@~Cy+eVTn+ubs1;-L+dt zj1Vr4$D#JIzRauJ%}nBI==652eH_uGj|j^WJ}Ui;d&%H_F{j!Cc&yFiuYdpPV=uW5 z-#lCh=JNT)DZo4Zd$xD+J=;uS1Z-1#8U35N7YOB|d_2@XMG=JgSnQpQcbyA?l_9yT zy|wSdYZP&rwW)8)o;te>APC{6hgQt&$r~$U$91*kH#*Cab+9tkGlpiiz9-<2(;sU^grXJ zA*LI0Uj(y_>I@k*Do*G1S6?}UA_$h(I$uMe_Q`pemqbs445l!GH9`;@6(fY}&~u+!t}K*!Qt{?8WX!KpFz0>J&k&Sv(-=`4D#oE<WA{(vGxgsaB(~?YM;!5#MRL0?PKlJ5N+S5RsfMV?E4s3Uq85C%&GPO z#@Z(k%%wSTtbHO|G6J@#y^OK;350TSrncXLIChOyWrzNfSFe$&1z|pxJ1@h&5B0@d z)|M4VDw(7(mw9{1umBN6QW(MV7PU{xpneharK_>_350Uhs=cgzLRXAHwkw;DwND_J zOV;*9?GqMcM9abHyJPJW2;rhUKdd;%ck9{U+$*Y$_pQ=z&kO{?szww>pv{QcVTPD) z%6*Z;A2Y6A&rQc~(h9lDfsCREg5`mGc8DS-<~nz5O9oRI!5Z=I+pEc7gmCTV{0Pu$ zAEFTA6Fa8E&_Y0FuK;#)U&Oh(4Iq1O)gD9<1lvhv5JId8t&cK%R7~N1N1Jy!-5$}G zaNU&ii$URkLrg>=gxf!6&Xr8Fb9fwC@WL7Q#I=1NqKt@qn$X&(yqf#nIsXdU1JK&1 z5X`0X(0w06-03r9#KlXmpuG&;_bG&Okq(D_pP~rDESozo!@f@;5Rb{lzR*lqwGa6y zbD6&-dVxp^BUs+B??W=E--8EsNmsh>QwZg%NE<)nUKB=r^yn_xT<=ouX&jZ<${4&=c&pOba1g9FN0YXG54*`@WC&i*`e&x9eSJNBF+a zfUrpOQR(lvmkjO~bE-W6z3W^E=JNT)zK`B@Hbl>sjDT%wFGJ6~3ZYz-kB5Dqq6or# ztoCH|u5%% zsy)^|MPUSTSJ_-^pF%K~tnEYXgA5n@KGko_!RfnN`xHXBD9^X#(_gSgnUD6m9cxLp z@qT~uUO@zf5opKz&4P~eRV}JM%r>esWYnlQM;S#C1j|zy+!u41mu$#j3L{t}G%TA3 zBZO;rbKi$3gg~697DC1xwNE@jI#=xb*gW=P_ah(;fl+meAl5ACG6>P^A6A17M;VS_ z3imtOyblb1MSTg^O`H2ZL?MLRKW0AGKIw5}L3n;WJ2OHkBO;$B#@Z)jFd7kDdjMnY z6A0$gdFZ|mVj}i^s$b-l+RM;=pF$`X>2UaN!=ebn>=b(^WjIoEh`S~;?%09YspO{ z!vaJQDV_Ued5hX7rCSsQ8ZlqG8f%|GDA!H2s_Azd7KIVWc4hOi_6hAWm#poJ+9xc? zh?axXcgNZ%5W+=yzAsPhKdezV*R#R7S5_PE$1^oSIwB~HKs(+CVs@AzrW3g@a`2kzM+7*!!A<~nzBO9oRI!5Z=I+pEc7gmB%Q^CLjp%ODCN zKCxrk4J`y@Zk5b*bMA{cSKsk~?7i6i2uMQ^MG%n3_5jFb5Te;XxS+#Ph9j85{f;(= z4EyW$h`xmDM9$B7{nfpszT2>T$?YFA=Srs8ImS*Fyl}?RYx_P#84>w3p|wwqg!|n& z|4P~e(AuXE%%$_teIG;I=`&=+#Y?ZGy$s#=DTH#dcJ;driy{cKZ0@`a`#yz0bR`%2 zLNi{~KIEg!W&W1v1tKYoV0pv756Pf@4<5Lgbfx<~g;1`FwDG=AQ5bRe(VNNUde^xS z%q8(S+;v6t7I@5bE-W6z3W^E=F*&~cbyHsy*)e6onDUU1f8v zeG0)`vbGPk4>DZr`&7Rz2dD39?NbQhqC5}f#vj%w^U+?nV=c)x-jDr&V7LD}A}EYN zJKhIk#!Ev?C$fUXY@<3uMvaQodHvN_&Y%c_<+aY&5Hb(*lIUrW!4&S7H9`;@6(fY} z=A0h^dhHYSE^8Wbo>~aV?7F%+pGKXl?|4A=UhIAZq#=kRh&2nk3_`R~h1Fn>QHCR! z!u^gm?*r==jJ|~HM9!~f5nd9{&dq{-RBr#6`B?j;$B_l$`St9~2%(IKe3}?*pOC?5 zL~!i^jI~c7m`mrO`#y*XpCKcVS86Xq_k9YXT&!Ka?^6^(m}O({WZd^D1R^!L*cX}! zp<(}CXYx_zGJi|-0+AF(u)MZL)qNk5LH%OADqZQmPa%}6B5l0yQxryE-7TAswNLmi zb4ffdYM-zK8Fzx*BVrKqyzO+RNG}X3hxYuCn=9`viiyWNly6K4C#dv>cqi zJJvpd5H8B|!-{kK)%9#}?klT}_v4wGAXwFi!U(h(F+0o<)2nh{2SF3Qxrj%Wpn3c*!L*};xW0{7n%vH_8}i-F7vlUFAzy# z1j`%teMkoNd+@-kNmsh>QwZg%NE`Qkio%GykG`60u6Laa!CVrL!(C@&0Jk|K4xRGs z>b|RYoeLpc9FIfoV+iwV-}mu;ec#95&-lolqSkN30re~LhT5lOFdB2JJpjGyTnOgU zoTzu54bihDBVe1_%h0>dg-|Za$HTr)Q3PQ=R(mpf-=`2*8IsG|Tl+q>s_9ztszSG9 zh)ncJqAtg$hO3_nWtfVg%apezTxMd{v8Y z$M)HV3~0T#d;bmCYagcwg5{|UWX|Y|xthnU%3um3SR*Wq`ArM=(MBPgd#uE_vFmSIlvi`V zUZa={JRwhi^xQl4e$?)y9)GTVVuZ%dTsn_s?c+0Kgx4q`V_Ew+Lb*tXE49xGqE#6o zLx0nP`eLqymuT(dGTPHic#OqO{&GcgD@G)R`(=46wNIBp{d$cO^H|nCj!-VtE4`=T zcifA@2(M8>#mfVlHdvN(9ByE)K6z#AV)IGDbvFxL=mHQv3Kk z5QBmC8YOhKtbH7zT&P!iPs49o6onC9)r5>??c;qhm#pn8wa*fvnR;3KI6}B6&%+$? z=e1AlKq6~r+dMyZ?t>fucSJvr5CqWieq(i<*FLf1h1tf=6l@c_ZO)qrq6mUVs4@tl zqdK)E!~7?ubHA8*oC4CYY#xjdu2*lKc@c#Wi1XA!$e5dUr&s5hkaNYEmyLEWPJRN? z5Exab2my}8H`2**ZIe|?-K~-(s}5a7h)pLysBU1l{&}K zGp|A@7i(9~yow?Svs0crE%trV9?Zp-ZN}qDCjE!G%->1|AdE-~BUoNrqw377ydCiv zXsmFhD?RfngmP7+jb~m(VFXs{viVs1gszxN;&HL>6EWA{(ao;Bp!o~5psC_b% z5m!T}x0@}b_GyTA=2e+NMa>eVFYVLN5u%?x;5uVfOd{U6heGr$Fv(-2*~WZx;4*)oU5PqK=xjo`~;*S zh$4tJ3%U$KH2a6upu-LDggzJ`^U(F)Cr0zPGFS-3==3L24+%H-1 z!Wl=e?fVdAMC4AY);={7?sw<>SJC;0);@(`E}e(&`xxR*pCKbIUivCJ$I*SCLMRt& zSMNF(MG$7$JarmspF$wIl8b$znXoDu@=@k8e@pZNkrYO-ykXymWKh2c58O(+(tV#o zC|5<=_!;-2Fyf;}ZzY@S=e!ERToRAN=e&>s+~$n9;*{rI_g(#*S0RLp<8k<$mm$on z{mjezMZ2NX+x2r^j%d=UUy(O_&Z}f_znD{DVFYVLN5u%?LKLjZn216MkMjXxbAhgqMSU;axxC#*8)pc^@3=d)UtE#2mFLObMDZ?Rg=0y}nh|TrPix9$v6}8JAe#f0Cgm8}u#Ip8TdZO1ThFCfC zGJiFlGz!_=VN%MtF@9GM2TEBb1ADIGlME zMG$85Jat;BeO!juK7Aw$FVWhk5a~-6Hzfmp#fYSEzcMQQ9ryBf#6+OIM(HD*mbH(M zO1Uc1)@q+6!fTX}v8;U@!CVr-!|%9bbzUO8%CPrWe#gBK!o~5pQv38QLtI{?gtsqi zpH3MO5jQKfkIUeGy+#Qc%i6~g%%wSTS^F#zUZaGJW$oh#<)VDNQv0kR%*W!~Xsz~f zgx5ZOB)m$%*`<=HH43#)N1L~oj1iF(?pH=-cec;kzUb~(+sUY`snoC6D50xm?c*a+ zu3EL%YM&*-tD2CptbH88Tv83J)ILjuX6j|_;|SrRJP&ikAF2$i&*Oy0xU!A+#}gBS zbwp4Yfp)wP0W)42V!9=F&oJBAnSz~Sx6OI|6*7t<2$t76UqfI&Am?FTvLS;hj9`t> zuxwO}5UyKuegx>1OzicsrV;02YL1cz&H5FhVFJ zB6m{9eV>rQXhd+Ge~kM+fnYA3hn{&MCgRMi`b8$Ha~wVMDui;ecJ<7wD1tD{#<|h> zIj=$>9+QiGp_z~?ne-p#GJi|-0+AF(u)MZL)tOg$JK{0WSm8=ndgfIK<*G=VCjEY& zqA&t0b=iEZeZqH{OX6{{?-Mp>1nP(K-ErS15W>arxTt+H4-!{Hr?-!_PeZgbuUY{_ z-lFyi8Qd@CROcUK?Gp&*(wsQfK9MaM0o&9$&RF{dLb*6o>*u_RA_()bJarn*yb1wN zOfGB7iX*j8QkcuUJ<*5{K_rC{EN`*zlQO7Z#C+*$tbGEZT(xR1YoA!v7=dh8HXm!B zKrolA?TgwcEXatKgVT4%+9wdgMR|Uj9`7f-^S3|l$v0j7xKEvU_@}RF&lzZ6bzS_L zb#MQ~-L@C;I79sQtH1x3e&h*?n5N=tJzaTie-eIzAwK+*@BPJZJ=hURDFo1WeZ+G9 z{{R_%R8x+M5Wxi*t=*os-)46Qf9=~(AN#QvT+!xHl=UvUiUqxkA391ckI5< zX3mrmaqpuc10e;Qe23ZmBe&doGW(ielWn}ejYtY1rui!p4GAveJG+cR5Z8Qs1%Xjb zOqp*?uJuvfRod5%IvIhx174u*&*dyLA1m?k9ljZa1cZmq?3WX3@KLYJC))B;ItIs+D zD{@k7)sMEwZbBd|tRw6~WKnG04X*W3!5%^(1Zsvrf3{H( z7i%PE?tVq%wYn|(71@Fi3Lz$|00aHmMpazssSv2yZB^UDs>YGZ9*)X6GR8FhHCsC# zuq^i#zvmTlP#A&Qx3bS|wmv=G^3|=q3J(Nx;Rzsf<%F93iw%Lgohgh!4PRLlHM`aB zXHmB^g1PjW3N^dc?q^ZAGldcSOy%13*LfGuNq zZ!=hy$Tg85kU`%OZQr09drPR!uYN;3e-vciJ#gTOwd-{55Fwtlfq*wejl(qx*AgWG z`=Z$Kc=)Y8cGrTp+suF3pI#Ng6h>f|BDFw}d6yBwW!}E7E5t!kxL@0ISeGFP;=&HX zhu#~%n^D7>cbS4cfY5^UQ~>O^)2JAM{Q%ra^%KQ{C_=avaqcKbL_9O1wd+Po3RyvP zE{w45$#lRBn==Jk$QwKR8kHbS(|L0UBCLP>>8P;38(f;NoZAsXAp|@o(8UiKf*>xf zuL?8o3WX5x#EOY6jf%)3ls1R`x=4+AQKxezy5qm~FmFohA=BgI|3r6)3i zxg<6hG9m^U(b}ut&V4Z#=NJ-U^Jo#(t9y85?C-(HYCo|shA_{F%n7dCl{ep&EIK>N z5N7At<%B(=-!|HKvH)`-NCrlj{aQ~U+k5v{&m}Pu%p>>l8BGwMdGyN&#Ch$|7eo=l zWilS-d32B?g2IT_u3gR)vV!PbY@1?laZcJ5jhYTa>kTnG&ez(o0X!pYF6a~j8BAdW zd@RosHWAE)p6Yq9ATA>)jA(6~6}ElR&x+_=+iNXTxL?dEJ*GtT%n-W+%mqIVe@nm& zU2z4#^5Dl&88n1(<8R*O-CEvNecO%qo(KIh6hch%{TnhAQC!eM%?VR>N%Jo2gmnemMD?MgVhSTLDp{RV z1|yVf+%D z;aA)jbFtP*gdv#1h}K?R&liZ!#Zk~?*og2q@3Kzd`4KCkLuc*?rZD0eKlaf1sCSDE<-2-BG5UD84<+@ zw3ADsz%a&*Kh%k(6KEmx73#h(o6?-*_rwgmAG&7BWI7jA-rkd_{dR7h5(( z%$PaiAgW?`epJgXnz_<9Zv1(^ib|gmP3w$sK-i;G7=h@Lx_uSFT#&JWu(4N_`e;>p zCS(0M3jG$P5RkE6i(>2{1A41Ey3lC+GR^IqP5qb zypVT$U(Ch6pz{#DTMU*BE^bLNf^3L&O*pRY1H3cKe|rPcYV zxjLh#SS3gVY)+Je2MPfhxh4`s5yG{3(g0nhbne&Yv@Sys#05=f#UZ0&3apv6D9aWE z%V5NXGf&>CMX4|0viGCzA`yel8PVG7wJ7z)TJugDua}@G)oZ2t;jA zM#Q?Vn5(s8MYf*S5s(oSMj%V1Z5E>n1anC=2V!m!MR6_&i?l@y8qzad$Ur-P75zInKRa&CceKp$0PI7Up9Wzjo# zy6n&U{-?a`Wk2$J?~8c^g1IzHe8X#>c-OC={G~IANN=cqU0%O~&_{&-Tvy>G%Eeit zAXp7(cc4|1U2n~&Lx+rzrwMvaXq9Y^7Q=B=f1*!HJz2ct=Es<>VjfTYwSRK`$*=wO zHgoPvxqt}m_EDJ}*t{r?a0|Ac*yaI}eFjEMHmC5I#%%rLPj@DSi*@MC9U zN1wQv8H#JNTQ3=@HjhAi@BZqZm=s1FKUipj3<%=FoH9!UVs2hSx{{Ub_~)e#0}yL1 zQCOqR9;;8n+!t|OymUorI)ya9qVd8unQQl@D@I&6^VrRGu=FlmG(s8_B8n)CXzh)4 zu>6O)*xv>jd{@czR$fBhLlBILD1<3?pc{D_)2x79| z7S2lM#n=7T`|ddO=~nwNVj?a_N43#us1_xwhvalz#kY~vOb{P6TjkoC`Nc~w$#rSx{7Y)hu%2RlED0WiMPbB+GcQ@L z9|rYNMPI^&(WZ7wN}orkFru|rv*_JNkLK799ypqF!Y3y~c1iG26-5x|j#TAD5R9r2 z6LalLSAsZx-KLDv?nGQ{rySIbd0_0h-q{Faw*~TI6-|USY#vNuM2nlD3U4w5!CW@N z4H-f~1V_IWX*nvFA&BC_%yWJLX$YkhqD8@~UkQS|4}QG0o)d)-3s1BW;ZN-Wugrc$ z)6VS(_*LkK5r3e|>oe|l&R?JL$UP~7 zDU7&q=K9TCQZp1T(&17@XqOSKy_!o{yUc|VrZq#zjF~e9T1bE0*Qf+>{05CE>mPrf zePSLHbG7w6qRY7hfz`QF7;)}pDx-rSgAl}Z@W9J!P9?%db@$Pir=7tS&p7C5%M*(t z2$PpjtRh4DVy=C8`@{&-!j_EkD`+>k*r(f|W*-{jymSIBq-U@W7xM^vFyhdumv6>- z*+aPYrCmm}_C}nSJ(!CvOVencNS~aNPgGS;BZ4T5IDS)V`m-R2>*A$Xl#dYvzKhz~ zy&a$ViWvOp(cQ9*Ah@rc^RGxh7Jm~2Qy6jK%quqYRn1(u_T?pvXzh)BRbIke7-4#4 z%wzU^RTO9;bcOka4g-MyH8TjpY$Fwb^^ZSAOw2`ga$bK`3kt$KMr3r@fFLfmzsk7c z)NaOFYe!7jsJ8M|Q5XTg%DqJr;-iYbm`gs1xQW1TtVb5bZ=tWtU`qS_^S{tMM#RGA zvs%xN@)P{_{PF{sbsC-NywpW9PP^DEvRAjG+on_fZ);yQTX=JNay(dNPW zkzbdmIRya!t0yvof6cxj=Jq-ulnc8FtLu5&HE;?e;4vA&=)PnSLb*t9KA`q$^RV5I zxWy)j<0rPXONfcNNYf<3W`6h4o71adgYb6PJmN+XOc8|1h?RO9F)`P^;#?3mr!5&2 zAH>BG>}vI~p=KzLgBCJ7%Z^vg1b$V%%ZNj#Zq7Vb{O*Z`5Uzb`ml3TUd4+`dsKQdr z#g-+2*&M&36E~XhYd3Xo$ws?+qS$8MDU84`-z+}=VZyquIzqT?=5Y^5M+F%{VMJ?h z+*=wDd57M9udIIxDrL+V6~-PEXd&(`vFt=x!{-sB5`_KQQQnRRWX8*g@ZW>%pGCD# zpG8m3>#vYO6zsRE#74~nRKHac+eg0e!CU5HoT_Nym zX~~7S*^ogLMwk{7E%RVcgm#0AeYyc=hat{OC(uIJU$j2RD0?shzc{w>nIE#CaM}A? zGcO7wT6^^#8C#0E*s?T@7U!=_J7bNiIN#h0w~QR)Wdv5ytvD})a9K}V-d+?&wDv}v z4~UHOSC%zn>a)jrQLqAJOzdk^g0QtjV$k}>A7ZdZg|#-hD33X>ziKWKgsq8*Cdhyw zF05TSCqW?Vhn>MyaZZsY2#zR0n7oKC0`#01UV_y*xyXA)M0trIOmB%Mh-)`x5EpEd za{^*^n6Kxd6KJ90yjBV44FqR>Mqm})iu3AAxb~Id7}44rabA{UF1D=B1J8h=6Fg^z z{qY2uIwT0RTNFm%iFGT^3n5(A(^i}pg%Pd25$6LUYAi!H0##r|j58N1wJf9#QO*}N!>z)t#BoEJj4Oh$Sr4GX?o6h^f6Mw}0bjB`6_ z*ogC@KnocYB%21+Jh5a5!uFFT24~0VJh1DWT>Hu;g0NlgMANW5@1_=s3;WkOCqZE6 zH|z|qus>&T0t_)I2$Q#u7-X(}`4#r`vtQF&wrNQa}oqja>LHx3j6Obw+q7L?IQ-63uoyY&*wy8gz0Td1|f)x zeY#D2_UR+eODE7mdd9x&!3dm;Z^e172Ew(k49AGp-iY&BIhl(sOC~qp{pita$>!IR z%}Iv@ao-I~9XvpYb1&YHJ($bB`!jkX5iO#K!ieKLn=%MNTo*6BsOCgMkl~85bN)rC z1$-mv=N=U!E}VJMW`?W2glqAwr#>`jx4!9=5v{$E;RZxzxEGZl$INHnnJ5ahklBD_ z2LS);s03k}mh5Bw<4+M2bL}gO3c~C!GF(KHQF(VFE_h|msSU>=i1VVr^DEA&r`~@9 z%8J8?D^6Xz8RylPaP2F@F`~6M;=H1hxj33>8m6m@m#)q@*g1bSdHeG>y}c-mxNzp` zO>ZxRaPjy3(y-tq_1(dYXzdMe9}wy7SC=(I#_Zl+6lftmgJcH)|Ldp(ar_19iPk^< z6frT^z9LEx=e|s3xQHgB;(Q{mg9omuIdyIy)!j$0Njrn9*7M3r1n4p%_X)z}ZLPJ` z7jv0*qo+{@Q5a!*+mb;D;$oj}GG>>AI4_+*3l-<2LmHOmD@GhTbvz<4+M2bL}ga2;$uHRECRa zGAhGO#C7n%;hIzD_EFt^^l;i4TovaOH-bRk4Q~*H$=gQ^GS|NR3iHT*O>fyAMpb?V zT?H5WbOX!|L!6gRpoNNa(%~SZD2zCC>hNZq7ecs5ha{p~Ftp2v*4~KovIldqWk(tH z>j69GzbI#Z@zNJSV`x!5*2jTyN_EM>aN8h2l#niyfW zNi>95|M=5+Ow2|3*m?bR$Z&)>c;K0z#jiqF%yswCXQo#UGLC;~`VY9u<`n+~@lk~* zG6M3}{ffO^xY&7QhfY0nnHgqimk}2)JuCIYXcA!vrZ8eMjfe$1OcBDh zKMQid=bpVGgIDK?xDFn8PR>c^fss^pepcFmZPO65<9r@rXUsgT1|7!xDuerCu4WI; zqA7zZjJR;-SsR&w5zMu)xytAnfDx^|ni;q+=3?*BnSb=?b5bX;LFkHoS`kbUgjqA} zw2gqxlZ!0d5VPa3)|NM5gtgZ0r@msu6{nuFj3^VM*+;ncRb?=uwb@I28eK-@66Rv9 zcjlH!5$9i!v%Prf3o0h;8(kvvC8E!xD1tctg&Kpi<1q6=Ow6^<)qwgv_g|=tJ~YUv zHEJTRg9n~obL!mq4^jJc^2Dc;C)SEefTrD|px^Xelb1e55Fb_81EWeV(@4HQAc(>U z(_5mq5yS=CN04&jIi%fi22dP+o%Y^T%?gi%$SF0)VQ+Vu~BVhQKB%yzL&mw-+hlZR;-oRY@^D9Q!ck-;uK%|BR@vT$A1x?G$ZPxhnZ_)`0 zY?B)0o}9TOSOz2TEjM8&0+3ycF%u)Lq z6||cOvrV>1h|U9^5nS+vlnun}F!z$A5CT4y?>lpQRRnXvrz6swHDoY_5r`E*bU7YT zL1C^In{1CcWH5yh_zsx$e8mXn;`nd9tBjtP7}46R`HK5uF3u7@gP6y=zx|Q?U6IE> z{t@~Omi_!rgCOQh8^8I|zF|D>EeKcro`#N!e>Y=d#QgB44C;%xEv=p&oID^qd`OoN^jY{vrg`Of;(y*}B7KIV5y|@0&MgyXAVTAX-Wk8s|@N`!cXyMtf>0Bh6 z28GN(6hWBQfB$-tVg2Jz5&mnN&ed$QI&-0Lzh*&^;UY|iAc)I<<8p0OOu?_$g?^-` z-oMX-DU86ciYOLD@HI^dq1LJ`pvig>h&&2e@&1Pt(|`L8*l%byYBkE zUu~YqeK8kCn0_qt@K5ArY+z1k7&^P?oA!v+L#`6nvZ5dK+2x3hm{G;D68N}JcXx{OW{MEf*oM;9RCJo;iT zXgA&;5JX`_`~2v-3_=hW`*agAyC6JG;8Uiq6aUO;*AL|}8dS`q`xPVn)1aZ@H&1abLY)infD{7!1joO&A8^P(`qZ<`u= zWj!y1aP8}+6C?ZLVxyeqO*RZ;b zP7y@AZQ9WVh&YeFmp5<*x=#E~>R-ejjPTp0 zpcASpN z@1%x|${3>zqHw?Mek#f6FvuVTaruqSHH6=FbUXW<)UY|l4GpWy$T-Kn*N$knO?!J2 z;dfF)M)?8(T4o>$_uKBLuFD_%{M*{zdG;2)}I_+SNEOdkB|g zIF0ktJ0tvls?B^Q&Id%sIqoN~>#EM^{idXk-S0-mJjx>7cOwI|yL@3m>nYwZK(ioG z7}4&hZjLJYA}+tHx`tqi-$`8?mFBA&6(jt%si9Y@@InaJzV1vg!tbZ9Yu99C6>j%w zvkJ!z;{jp*8@E_HrQJ#G?R|~PZ?SenyKPD`tbhE$<~1t6#Tqgy^Et1-b}xx4oci_q zsU)Mr6v146V{;YJZpyix{jOrzoZ_E`rM}Auzn|LCn+V}zKNf`FD)jO4*!>pbFpnA9 zWrW{JU7|^ZA-G>g`2EyDhCvk}T(mx_3|=_}(e9_N$q)o_`Mt$e1XH}@hlI_e~e)H52EzZ$@Aeh1kzirBh7!@O!Yhm+Q5IwdT;rCP5 zbj5u!7kiKQ9y0tsrR&7+q;~yC4ObYA4?(p1sU2N_mKiA4n2Rji0JFoe*5Vec&(QCr z_Sx>s6B*&RO+#1u>|A+CxMb$~>|FC;gx^mMo9nalfXHWO+#MctWwVc4tUg}9lNvLp z+mx=R_6mCxMG)=D^AOvywy~Q3KX=7J96{Xqs%7}4&huFD_wX+jaxeS4bZ#+u`hct zLT;NjUBzi1+e5e(-Y$rUsH^H%xf}X(#s_m@g!w(WVnL=bf`4b20PsZIH3;eLE>39F zZrsHC1Ob95jA-|A0$q?1fjd6Vh^{6`fJzK8lv6H2^qg&`@3J)_jmpFhRx7&hTqfYVt%z z`28Z+`fx9U5Xx2FQ?nSogb{utX>A^hyHUN$WS^db3~|wk-diEdNTak1BEr zQy9TFhqe*Q#hxfN9A}2{MpB>CaQ;CEwlhb8YWHn7-kVwG!bA7jT|T$@H^2QpySEnh zFU-8#5b=C&h*;sK`F^`Ww`Px@`Su61uS1W2Fl9&{D-n?ydJGC;{&eOp0t|?WxOjew z5DFnMkI0Xo4N+XIw}zM9$e5{+Gcv?Xa4sazU#NowdX;$ z?LBY4&u$ocq>4tSV?X%y#*M!|k8Te}w03&ppT6wF8ByF9bG7#)gM0TZqf;1x(JuCV zYE&J;T(C#Y9IQ=*&4YCUudIIeV-H3=<3}H~`-$Q0QjsCU^-(F8y`Ss3RAiJB8PVF^ zHtjxK-A))0or@#Q=NvQt&`a+ z6$I|X#4kqR##a75irvMDo=QSn)ri6f+`qc_bN;@8aP8~94}ynlu=_>wi#pan{!lH|sBp(Cx#Yf&a|eQM0x`mFJtevTO$H%|3-_6F zPJ+Nqps+Kz!v45xv}N<62*TuT{hCK1@Jj;8MczY$>bgqlj4&-Enjo&-L=YGIbOX!| z!*gxv1X@VX*q1#RftywLZg^tZL%8;(T}HI_Mnsi%nTst;sxs~3R!G_WTCzF)LMB0= z-J;;mOnQmkve~jnA#lelx$HDN?KH?B3M1_9PolRG#DyD4IYL1&1vj=r3%Gspxktqa z+`rn&aMhP^$vuD?7PMQZ`iyAp4Zj)?oeLvOKMoPIXSkw33z-c_b^!3dj!F=wX~{m; zKmHVfJ6_2pH=Ue25Or@!5N7{G7of=?1aZMDb55;uhat|30?$wV>}ynv!2PSOIImF& z7sU-tqt7EejuEZB5$6?A%*D~HGH@Rz;sE!d%G;m6>Fq^f1a4Msd3zy*OHRXUT=0@Q z+h#;-Z+QEFNN>NotQjI^_x7Sd3+WjoI{^4!Mx3UxpKe$=gTXWiHch_%scw>nbUXFuiTbpuUKU zecF}ek`U*m6KJ90oODRT(tO1T+`rn2^Xf~u%;q`2g^ZvuqO~{Ty!v7;wk(M-?czR6 z*ctbs!u~kN4cUrd3L|i{YAepGFX57txRL_x*0~xZT6-hT2SmpCm1WHkF?*aB1zO0M zAlU)H|2ir`*!`l2u7;S~>wv%=ujJZSE)j&?dP=l+@1i6p;x<)q;XYH&Nf5ZJ6m|wz z*dN(-%jQK9gvr}S3^Lcg{0j5Peob%LmU*xzLRZ1XKJ7|!7~;Hi0xeXW*D66GdiIGu z3r67n)mEHWU&6I7?J}aZH{!hP!CY+FaUOMog_}+>bKIF)_Y%>r-E;}<;^cSBONhb< zyOES=8Wtjo5X6O1rB@1qDVRt2vGgPerZ58cueS14jY_!WM6rbUJi<#D(b^mNs_emB zY@3uYBm0P@Oji--m|w_Fgf(2g=E5DF z@Jb(#zuG+P9!dBQxXR|Wt_%puGK_${b-!Y77cTZ=2$@}yjmmDi)NG$qvt84bq3}H{ z_Fas*EW<(V3!^CWH_a`HDaWBJhkWsgH1Y!4! zBnGX2{3!x=ypn65s{tYG)>ERr`;|(px~`JK2-91l3F6vK1aZMOIYL1&1@;duz_QtsAeh1k+^ky9 zK8z49@*WZ~cnKp~do}y8Co&iNbdxc=B*b}n1MDB3zrVVK5x9S~73bxN!o|KoQ&%rx zL~C!vdHEG{u}_l-(=P6mgq?9Cr99)&jgvUsdI)b2gx!YO@I*r3&P;LrN%o|p!fANO z5QN)q-U_{qC@$Eh=EMlr3A7OQ7abO$&m-)?2;AP;h;y=sa_vXEjA-rkIH&V- z=3>jXY0N$u|7N4m2|PdSFSqxGnU_5nfx9>xaX#GMDXxke64A6<6z;dR*W;Wbin%zN zRR*7|<7P#~1a4fE{R^XK^gx8(aGzz}6LD`L`obNJkg-3%5`^7=*-xAo7tgO|ffy7D z_iOW5m!XK_V!bsPvrAH4sebn3?Silou4@-stXxuD&|BJurj86(w#8kXh*X)MAeh34 z)?SUl1)_7|{T%H=Mo_q4jJD#jAgW#F60Zbcc9h=`3Z1|!t6$QgGq+dG)QrIGor>Us zC_=et?JB^KMH$iB8*yHJF&9S~i7**&y#2ltw>=WKTmD4ak--(A(aDHM32m6!al=|` znW*Gd9vfvar4YDtS!k6}2 zHncmtilN=Aknt4Hh?MQj?G=c6+E&E#3k}}60TAbcAg+Dwp5p|gM)ksK4>D@^9A}%1 z*qTS3t105k3q8nS1aa-_R3CR{YE&<+_8_B9_3`VljM$pTOUX+Zabuwe8H^w<`(5NM z8ALIz8rAV?4>A}*T=pC5TQZ1ZTqWZxsy)bH1aa-}9+`2KjMr3qkU@7H?UoiJw&qdy zuW)NF5NE&cwI}7CWL^alZZJg*&GY zPVc(ghWG_TPe1ULckKP?-#dM_$r-pp-t9Nu ze)672|NH|@o*;zM(HLR8-$pxq>aj=nK6CleHkY8FuW0+6zU|~Qe&{nFm@p?nOmk6I z5%0##|H@lWpZ#;2i_fDFi3ZpFMw`bYU4|lv67m=kGLDrDM)Y<=d@IevWDtTVF%m{J z8Gn4>=&t?i^I$}88`nEN^aipABZM+95pEBg!!BkIT`?lsZjU!Ke{-8NVw#JxhHx3? zerA=vh8QA!G}`dK-jg7j0fn-HkWn3Lat5xDhY>z-=Mz6THE-|pXb7PM+M+1mZxPkC z+vbuK>nq#fGELuh=jg#r&$RmV|J7 z^bFT?d-WA)w}(fwL~TP%JR+qr$ zj6gfN%tO=11OeX-%7_U2H&28=&S*KJ`>3JQ`>ee{Gyo7u84w}6`7Y*h%;s?v2<|sx z0wcWV(f^~oJrP1NG$Zacghy1@?ylM6rHnv3xlGe{ecvy48H|7hgEAt1*$^(HXSiMS ztCunY?c{3NE@UVId9YIk#J%?ZA~VeGi6wK%?P*QCA6jT;^9mZ+ zfKD!Zve?QcL>Ukn^LUP;%)kh%GBcNaYmRozB}B22Fd|1d@O;+24^I~1(+1(1nkdG_h{dRS zE*ZI89!9v8ONi2DTZqgOVUM0m3W0u;%QPJsqph4+4H^Q^I6)Z^nI*!ndM+sh(8<-F ziq~@qp0FdAC}K62Oqb1X_+Zq|Xh*%9@3#us?2);IDI)@Cua<6n)g603{CEA?Ik-TH zHYz03!UwB{V+2#y5ME#XO{=HhYSVFXiF5v>;eb*riG>oqka zvJI~JjW&xLfAU!{WckIw0Ugo zmlS0U(PXf8FPmRa`Q!DjH{*);-R5fu&kTx4txx~j>fIOo;OVv-g}#E4ZIfY77WRJZ zmoS1UtB5ua%Oks%9lAZLuSB9<2%-d<5lu$7V3)y& z-Zm~+v(_j^2*o_3tul;gGP)-=8H~ubaltEVtz`sL)(~!w9#PHajEFY4G|m~plr@CQ z7=5?uMDydQ4b5Y+0)&gZX5l7Gu{I;BP7F`{m;V~iIN$ieq!0ogQ#CasgfbxV>17H} zyxR5v7=d~mZSPJ z4m>7CI|)K4$ZCYh5n|@ZyL-?TBhU^mcud)Y5lk5osp(ih&cf!5Ks&hLq3H{PV9JO{ zAA|et!U^#QL{J>%^ojh z1lqv`O~;c=^WC;`0>P9Kkxwt-CA;QVf&eajp56&gv3d)EGJ55tOv3&P0pL;L3g2D(qS(NWGf+-^+ymFf2iRC|9d@us-;KGwd z#ULY?G9n_nrYW9SzTe`U5ojluJy}#PVFaF1f-)i^=EvQSLI9myR%O;a;u)v!;uK{- znV1ceaT#AVSl*XW4c?xUW`)$F7Q1{oxCWz|%xfMnrg} zW`_3sk!v5&v3F8EEfFEZf_*?Zf)NA~`{jfxS< zb^nPk{MwL#IbbeNz&xg+2*Peh|K9Z>*kZzjN=2 z?>hG0Kl;-r-NgDC^>+X6mz|vcA#^n&l0upW8t>1h^=az!*mZlD^u128kzD++_lr55 zdvD6HnO}D09lHmc1q-2E_n-K`-xD%^!favxcAwpK6%j9ebx^n@``E0n zubER0mw8YoiXqwmKB~<6q&Lo$1Tch92mvib23G`U294l~M@4X?DuV1ZK~JSC>Wl3x zo_PDeWnED`3xa%%h6P;>h;B8G8v>ZFgaR39=Zehdi95I z@%A+RvLPP*p3`SP_$A0C&V_ZGx!g|P(=`1PTWf#Z{{4&R#X9H|Mqu6j;@5bf8uFh8#2b)Cn$n2kNKVJL&nG7bo%W5mPIeS2KkEmVlHdnzZ)`a)oi;_ zQTv2`SPM;WyD#pw&jJw?(py8@`(FE4Za-_eeb;k4BBxVqB!Bi{?-z60dvD0F+yBqLMYe$CqDe1kYTx9YM-Dm0=D_%w}uSM?R%EncRjaPU(Dq;4;hx*_bj&`LvCjZ zBUD$G+xINDA46_ugm6J`sVnpM*>d}?=l0T%*FK@QPp95IJ_U>DB@Oko7p-LkpG#;!dZ?Bdyg z5z6%-*?g>h!sddoED=67P4;YX%$^N){n>!}Vy>3EVjid}p<~1c>j$|@^w#r=*P((4 z3LzTW-uL*p#(e66`PSd~vZ!P_#YPgbjX6~=`OP<-KK5tkTYtxLiLd&OP_73lmyESf z>zc!^M?--^v?dXMFizhx2iJc}q_!(Vc8`mcQ7=e|8_|0Az`>{G^lJ^!>J-fmI* z-}QZ;#$^bsYQY5y-goCqdcGR>eS*RWth@H9<}L%fMELh(eWxf8$^}0T8ArTk*!xd? z7bhr!Ft7aG>qExV4e7 z(;Lw3eY6+*KKJceUyTcEyZ7rgO33(KtKlAV)g8OvgqdT!9id!!Ht0RIeK@SQZ*Nbj zMPY>3C?TWQqPwTzC8n$Bi@Dt9A;U8D-euo=`q&E%!4yWIs!5F?x9?eQKZe}S2;mZ4 znZL`vPw0oWfOyRJTYzAN_MIZ4klug@9ZqeK8hj;(G_Zj zhYj(Yn7L)n?2EZXS7YrH`e7~jN^PERd1bBk=@inNXVD%ji+!JrP8&(YHs(~h#NzxI z;{117e3)%}JS!J+V#GOO13Am%qbQ7kZ6e!E6Dn8aD^#yu`*>f><(3T@zhITj-?qH_ z&c5#x8IBREs|O76k1c1tI=#gE5-!tQy$~nt6V{-ynq`3hYdXY&S&h zepL2pF_;LBC_oB96vQASqCLI)H+KFN{$W+qm4&l5YM=0u@4x;1XWsoA?`gj!#Mybw z^C{29G~a+1$Pk2#iZk_f{}1nF5JeEA5$itwTt;LD&R3lIf*b$G%zHdTMyw1|CNVn0fyXCQpbKUoOD0i3feM_+ejqh8k{at&mr8BQWFxM?V_0Z;-S5X*&@2skQYCZER zgmOKcd&^lf^fRxb2*SQ^EB3|Pb1j{D6$0Pmm0Z@Y{W3klD*a4zX#skRvyk!3iztKu zI(I*Z+Q+2FUa^fNP8u+$I{&b<2|DvCgmOJ>YZsld(7sPm7y;XCop}|4x!mRUl?o}Of@|I2LkeB47%u*&k0 zv=qLTE9~sw$`xl`Pcy_b4e@{esUn!`m%hc&T_e-` zzsC*;<$8o{{;U7(>0_sD^?cS-usRn-5cVB(;bZ2zHitU%Dg?f-FS)E;x_X{fmG6J^ zvG;!GzkAY6te;VDkyoY(h}R!4L{do8K-Zbq$88=zWL5GXwo1mN$8NTbB%&5`s$BAF z+rN5}A^vO39OLZ><$8p2Nw>!y>;YZH2^J$@o63prw>tF4ZLj(Z|JZC!2RNU#krn& zRZeVvmFpEpt)6)ig*{`mc^?{dH6XfQaTMr0gd+V`G>>Oq4_P(oJDXT>;!FqYRqgNU znO7m0%PkoDyL#pY-*pNju~cPw=Mk7woqy<=S0R+^;o9+>^vtU$ zjDT(G97oT*3c*}%^O%R8dBK8CVMOz>(8#1`UWE`Y=q+_+{!V9Jr5~?-LT{H+Zyq0( z+xsaQQDEoPH1cuGW2}8bI#!&pCf2Lc)$44H+OadQ$yPN)Z6KJ-V>4v@uU5t2-`}#8 zlPQeAx?47XpRKk3z3u&cXVyO6mvTKqHXm!B*#8!UWr?jbFY1fAkXKSyhfTB4anwGc zAJ#(Co8=gfj|Czqq_>8)_dP!TjnzJPSS539JM+Sd+$lDah+534a>;Mo{?%vfdF_@b zNA2SX<$8p2$yocunHM8qo63oOA8zmAw(nDYF_&95=J9#vB{x{@^SVo6bEhyub@frJ zT(7X5qCc>jn)?zi=q+^xThy6X>BnoI&>Lkt00==8*f}-LIne+!P*`gPJ1mzWHZm(SiBYG5R z7A;83JhB@1Tlu*7p)1ZMsC^>lIUW_E6h@Gp2!eT3hV$AdMmTz+!#W~-ls#j#d6%<- z=$^(y3L~)Y z);=}3@z2k^sxRe&AIBcDo_Q5T5ayM&zpH0ng+K%+m$hqObWzDbSJ=C6l}za^_xf?K zmd?CvJ;#a3fB-so4Hx@9xwB~_iL)E8QR4hV&%A8BeJ@nG@N5w0AK1^YGq0jB!fTX} zp=Vx&U@o_8$j~z{SkNhqfRCj{hBL212$$%}{9X2aLO-xzXaVt<@3#QqeV?QZh(u3) z#X0u-xr^iTz={)N_ZlU1wS{0VL~Uqfx$hGcMtF@9GTvcz5B3_c&%k{t7oOXEwA1t( zRx|vFt)3VE+;=8|A_&oyo_SGU%w_G;Ra7$HmHR$@yp|us!+oXhaWjpGmVH`$6vAsC zkFIGN_kA)tZ6p!3m{aAFFS7lsCtL0Fi6gz5@+=-+A8($x2T0wG*jiSpzJ?q0h%r61OU zWV;q0h2T6`dTY_ub=Uy3i^Fk8nNz$37~c0u|KVIqcCydP$eCBI2H5ck+i(t^COz{q zMCybQG(sB_pLr2NM#Y(0&%B5t2-1ivtG#;d6EVU0O0#G|y!MIAzzE;>i8yBjX9nN* z>0A_##gA$Uv6iEnH0IMz1Q`%)XYoX{H=TKrj|zf(Y&i285Z(JUqH0)P^+kM$x7(c3 zWAv``x#?u=E?+p)+xFS6o%7Sl+TWEkFG4Wa;g3xxYiAN`ZPY$YVZ_Bt)5+SW<})uw zDA#2tV>fy{^D2rUj$d{%_Ql6DuR=`BW$oO#l}~N4ekRfa-jA~oJ@XO@A%M=^Ppy3* zJ@yc-9VZQ#Q=NavnHM3H>#~zuXI@2N1Z=Z)=2ZyhayzY^c`=0%q7nI=7bApAbYD*%y-4H255X@!mk|DRFk6)g)J#@<3liiNK z`{?DQUHN1fA(-nEJBH3vGQJ_i6h<68a5;HNAn?gBMkv?ind>Q8A)wLJ z59fEmD*MPM!w8{Vms9rX+U=hV zD+(iEo64g4$*@8&m)j}McleWGOksrTia!~~2;mZ4!QY=5p9~}Yw3z66LllJGJffmn z5(??9#bao_K~@on!QisC%E)SoBb5=57rC;@NCZM27G-D7+CcO_ zs{n*T2$rYkYK&km$#6D@I#*)~BhZ$a`>=dexv~%!XV;hm{*RgW98L&mq1KPW%)6XR zrio&nF4kM@IV=%LA%xdg@odn~2mN#OkRG?@tQ|WcnA6^S z`*ZswdrO2+F2qO3`2Q(;|Cmp+t3K?(9*>vx82@0Mwav0-S$kM}?H6P3cO%eK&jN|4evQYdMq5UG$vRV5e$?ankNg^m#NE}=zB z^9Pc_q}Xm^CNa#Q(DS+Hp7Z&9?)!c4n^&55uHJJ#&%O8jy7xKfKF{O1B~lat-Tc81 zRv(^QB0{-RPt}L!mXxB1+&NVrdY)Pl#uakoy-(PC?|q=Pk`LM?H^lt@`*0B5Uo}M# zSW5~$0NsaOOSz)mSMn3sBQm5+a{rLC#hOUz+6inyC>OlB?<`Rn?I-V*q6n<*v=Tjm ztqA8rv?~qz32agfVKet^6cLbU%SYvg-0P^s;e5NwCu1<>R*}e0U<1(l}`75IcLi>v`N&ZR^%4HGG@>fbx1lqMq3|Zx` z+Fwn77A}ph0+{=&jxvJC{Z&NYz z(Yc)2UJ;W^{YC~g_gB5gvFp;Cmvc)uU)1}-+t+7%NcV3>qBI4v0xh_8YqTT!z zDT=sr_eF9C>G>-noa;RAEGq9a&uo)oh%4viuE^h0M8u|C(dK?v&upuFwnc7x`Ky@6 z<$1DK5J2}`M$KdHucG(5Gl`K@4gho7%U==UT<7KfBUWcQvrUR3pqst?6%opnIzOJj zf(DbK2*|J{vgw&^y_RvAtis+|yA%09gDtn4FK)S|f7JeJQ_6y9w7;k5$~~>A3)ix} zjcn9CA}h~E5%Jt5ay@?%f1eWBmfaF5ia3An9?^O2uQD4&gmc{^I`?c8DTYvqEN8Zf zFu4VSvhv(g&K&aD7P)oKX~|#R!#tHBfbKg>e_jo}*WGBeE8~GV?Pa5gaISkKmUuRb z6h%Ncd)X)=lq+?9JR1cKCPfjjG0MubQA8M*$qM#fdmm`6;Za6BSiMUi$l|2e<{3dj zsGgSGk|31JEYWjI;?IgeTXjB1mZRzjAYATIoCtP(^bfQ4jlQ|&mR{8NWLR1Os*kXC+xwJ!puv_~_)7nMxQFh2 znzA4oy=02u=h=JieWD$D#(G6rd8UX6<$`aPL{9I0ilPXtyVSX7ig+#OLhLG8d8UXI zLzt{QQ$z$}Ny{zTl$B?S=FH&-Bcf7n6<5|wQOx7UJkcZwpv$|~Oi}b+cZxBR@>6cM3Zsq^ERB4{uvihzx^M3zhu5yoY*g1PrjM&ttx zw%o$k7JWSLgT2r6HASFZ^Bc0tU$yrU#N_fQN=WYdDl%Av+Zd0@kNuTL8S!BC zE`ikEr(%X6R8RW|_4YuVmL-shzvE6@87@!TbHJ%18^pAy-&Kl(ADI_8`<%%|C<#`{liFqG;R$ma#^-_r?FZ|SFmp|~?$8P)|<5_)D6an4r z<$Z`yuGCXyEc_G_tfBHgyspd2^FBlvm&pqD&b<%i0}Zy^!tzUQ=^u?y%7SS0fb>pA zy$Eg54Xp%_M&P;<;S5n|01o*NI{-w6lA=Uyji^A(AM7$1owrR8I>IIIBM9ZP=o530 zypP0iMW9{tt0BezIjWBO!sStvked07uY$mw_RbW+N-83Y2dj6n3yjJrf>1pzc^~@r zu&bJ_S)%8C#Gm!LYGbEH)e%6r+@lD=-iQ8S*1pj<*SycYeTRh=r|vnh!tox*^FBl< z7c|J-`MUQhiXyP?@?OpJKD?H5y+rQSJnut_A;MyKkK=hCBCv8cSG2ho^}G+|1MjLk z(_E=z=X@mZ1OJ#5LFC@2_S&BJiQen3Ax2Vn+n5t`0G{_D!nxod)raSONKpiI!(4{v zeTY!5)Oq#cc^_ynDT;7edESQz;~LSY`Uq>cy-&#p8f>|Ruk_!Cd+6S$DGQ>}OWp^5 zp1tSZC)y+L^HPzO=Y5F4I#?2gZ!lJ)UL1R$55?Z+UAOUUA1R7}ZWt3i??Z%grJgEd;U|P(4VCxdbzN3|LWl_CGFidg zdnY6Efd*S{VfiJu;T}XNWkEE0Kzb*mUWB&jhE@VdBXC`baE2)KlJ`MmC@D(R)`+^C z_hEF#KA}$t=?G&?n)eZea#{58yw8m7c$=;w(60FnS>>)~%cCeEx%a8aU=eO( zJSIQ(R~i{$#~lsAN-B;yBKJNOGX$Y}5=iZqCPKN)5<}mT_Yr?q1lpo=&HF5f$>ko! zVb#nl@1xhHZ?1Wtm-QXi?d!8W@;)zI-d6-!ns~9_XeK#Aw?0;&0gMz2<1wh*IkCbqfse}a9MfY2RhGd z8JEc_tX=j#ln*r6a=ZD8mRouU_dY^d5RKm6{Ln`)-}t_#pZv4pZyblq|1wCYPrj-5KG}QjeWD$D z#(G6r*?WpcEJ=iN!D~w*@s;Cc?^6^-VBMw8{k#vaPrvtj>ft7shFq;mzC#zp!2+z zaha@O?!A){`9Om$x3K(@+i(vel(HZiJs`c4Q7=MUbVDlvq!GBTL^wkfddd4BGL#f0 zYHLJY@;;2t*e8@WN0jJ3B9!pk9C|IA$Bf|PD@vaC5sD(vuKA^S$M4$vOz#vfkD`R+ z-lrmiMYxUenEcpZd6W?kR__u>?R_d{2txI=k5DeN#L&0oeZ-#?fp+V|zRjW65-#^B z4y$Hfc^|zleRIwG+}C$lx3ACk$ot$U_c)&SA>!l~xh_6?ANO6$S!Yrdap&%RaF>Ukf^XS+!$KyIDgS@J$Y5d_fOh5Ozo zdat{N7zxk&+$T8z&-)O8nKL`|D(?E1_fwOi2Ck(HnKA>z49w@h^7bv=)UV)@;=df-6_UMnD@C~Vu|N{h``L59lBp)$&~JV>kui5fNq%g@wW~U zp zp_KsA2(_OTQD^`T`42k)M23>0L~V_zK+GTPG8mn=O%U4OlJ^mWa#{3=IY{0|Vz?sE zt_WU3ivM#|9rcCFqbMOY^BG?SfjMLe3?(%*5GtV%-N3RIydR6SbnV; z6Tj17-{ug6bG_<){bu%4d!M2x0=nV%Cj8qRyq0pMp6YuO`fU!SC}P-HNyNU*p$OxG z+*(#)?T3ie`K1k!Pwsu@NWxc2Zs{G3P>RScJ-FuKZ(O{;d&i1X+QfQAS;f5pzegVt zpvJ3Q>6_I@nejb(r6>aHE_ELF2K_yHML5^}qVsj{Q#v< z{|KAU@6oG#5K&7C`LMUZL6nb179iR_g4Y2B$ZZrmui_c%V z%b-jIq5XmTkdOtTT&JRsAu28@0_~ldOC%F6jeL3a>cc34fE3D`9ifo{JDKKE?-EGN z+$e%jJ?$fu>y#zdJj|aJfwt;=_A^IyW7?~5sTatgde?Uv0V%Y_`1k0?ikxr3&%IAR zafa9>PVar@6S<4rI@f<{x6~9tz-!0fPk)ady;sIG+Er=DJ<6;nEbmVw!nts7P`OO6 zd6A-s+@n+c;dr|mEz6}x4GNX(lpc}?SKkH0{a;45IUin#PXfP>? za9MfHiwNTyD^AG@=H6KxkqXN^jaM4^ z1Tc4f9W(5@jK_}fC?g&${^$tx)Xe+L_@R0dNbXB|9?E5w82Xl)SJ-apLlJ0;&h@PG zf|y+HQ5;t0eafTE+Bf>(F&h=W!UwPh#6hmBjt>kz8tTPdtaz(o{w@U?!^4V@u3Xt1g%}XeP0J^iE z%US2>y>p1K?b;3I#A=q;yohkF*D`;(EEJI&(4FyKYF^QMRYqbYRlC8QSk3a97ZJ|&fW#8d`;ejt z=w`3xMTByt&Z}DEH7{teYF@mq%gSqBL>QOJ3ii&u59I?5w%jz@4F_q2QWiv`2cmZ} z>P2XaZfGTdG(zoXMHCuZ4-p{x754@p`;QCcQRutb$NIEj2Ge zD3@8H*Sy4^6@j+ue2y$f)e%6r+@m;=n)$R6LByNU#m~Lw^_tj`Wu^!#PGz96!ZE+= zH7_ERD>XQCPMg=fV7p0C1lC>VslDb!gmb-C@>lELr!rfH2peO5*K1yKE#-n$b{@|2 zK9mo<%j6c>&+SOfE4Ydxh=Hzr=~DB8h0n@JjHGHem=o(CUh^Wtxn9eR=c&C<zznEHy78j0+y2>}d9JgI?R$RU11!Dn(4K zxknLFGnYPE&-BgpIWOouvxB+!iFRb5v0gF1>oqSTlnZ+5oYQjFnG{7}-DRHIYhFY+ z7woul$X@dz#SmdJ%

    5iwO8cb48nZxYK)|luzz`D7Vh_FEy`N&rvZ!PJei6BGB%v z;i!eR$0a z8cd2JU}G(jrRGJ1aha^b+AZ%>@_`0R3W%=#_u(Fz_i4(4X!KI^iWLVMjOrv-oEm%X zQA$=`^CCjI;I$=@wdO^NB65#XeR$1_2VX(uxK|R zjnFu_AR0XooyAcvLVHSj^f#kYj;ay3Zc$c5p_iH$SA*QiOo?hlU20x|XqkAN?-9nZ zwB{uU8%4P zgOcC%niml#x5#zz*$3lJrZSU=BiPO4d!0#9#GShjN}k$lUPL(8>m+~Wc^^^?apiTL z7hj+AB4SgnXfqGz&v{Wk+f7OVa@(tU2}KY{EOf7w@*j2phzun~iP{=b zftWwoWiUE#n;>+AOU+9V%4N|f<{&jMiQ$SsyXIFzivM#|9rcCFqbMOY^Qw92bs3Mz zpL-uhhHVoMR__uB_CA5QTrpe_s;8yqB?#p*OZ1wT__HF=R-Mn0<)}IW2$y<+Ok-rc z=uu|vA%(r?ydI2QYG#VC;#3A2D;)E?Uh^VCxl)5O=d{$kV7p0C1lC>VslDb!gmb-) z`ODff%;&sFF+|u{<;B`*U8f z@JWf0RP6?HV*SHwUPL(8>!kj%?tQBMp$O=PbsVpG@mk82IZ+-qL&^SqXGJtR6`_dca_ zL#RZS=e*=v%4M>;IG^*Xy-&$Ur7+|cF=iVz;ZumBh};G`{(h|Hg=je`F_Q9H%!#qY zYhFY+*FzFZ*1bJksul8V-DTH#RW@{cV2`hPL?0vrZZs|NJif~!Y z_eMSQyZ_t~#s#^xtYGh5!4mo8YA{El(QY_MBa{L?m!#n<)du1)U|7%9iIS}P(29*I%kA)ZLXG>u!*=quWk9Ljh*g85mRgK zQH0dYrH|G#eRHjOLFbuW&b?3OTd`g-zw0$GB9sey>YUS3^CCqNSa+GH_L>(F&ILQJ z9J1HENHIiMOy$Mn6njLTFMjx=H%{(BydnZV(Ol7H9`5wsXXc}a-%)Oz>tAYKv7V!1 zGHPCw8~lcO#+kpG-*J!LD`OfXsR~W*QL6so?=~dDxo~e#^$+CXkk`+gJ}HXGJxcZA zH7_ERD|KFdc+CqMOo}34V=a-T=0${YnXJOvE$>tEfd*S{;Zgnf;U1dzY083V^yY6W z#63>V11nCAJ@+Ujt38Br!D~w*>$?p}QAF-hst>Pu5#e08Z_ClHH7`;OVY2d?7ZHeX zEw^Y>R<)D)?#}zn@kV@9xpif0TMX&Ad+` zj0-E#jNrKzbQVYC0}Zy^!tzUQ3qmOiqR|7=Sse8uv_&_x5q>+(M4^|O7gqy| z+7g4;Z<$K0-8{~Be=#Plc?rVip^@5aUP4g>+BLr+tNfLFpYjQfR~|(P$z5N^47)Dl zG5Krn(}+zxSiMUixi9HaDMIzMk5DeN#L&0Yyu?Nofwt&eYhDXta=AxwSh@Ep|1fKh zInmF(=JjxAmv3L6?NRf3Sn|7G^CIHp7P&4y`>d$#WgH`k5bzN3o^CH5yOjcp-viG5U zpuv{g%{R2%(mS~K5z2yS^m5kuVr%NcwQO&Zzj*G_MUj<1=S75aJ%18^pAuQm`;elD z^XD##HofLWgmYaKoqOJg6hoM-yyiv3rd-jcto%8zoH^vPUCA~wH;^0aI4hzlf&jWR z-b>9Zdao>bjHGHem=mj6Uh^Wtxh_g9nbMu_HY7z6&<$%|{%%7elq+>!)f#`!3mQy{ zB3xGfoEH(sWwL_3bMHg>K!Yu}u>6u+`bQ&_vLG5gAia}OFG5>%Ln{HK5o$jxqR;>w z@*j2phzun~iP{=bftWwoWiUE#n;^8mrRF6F<+A7#bC8;s#BfERT@k#76#wU_I_e9T zM^Qp*=2i33>oOjbKleVcl8VUU!RlQC!QO|Sx^03`JuNjaK`575qSw5{pA~_&>U@qY zN7WHPxZI;S5$t{FA75nS>V**%sDMJFW7EU z6oGY@d1|kD5#d~~XZ~`jd68m>u(8UEuQe|suyQsRtg`cEp7)`A;9VxS%g1Y8!BrGN z40QbcSj`I-J}EJhs@-5ttbcgTiwNg>Ju{xmb6%t<0=i)x$7^0hC|Byd=HWFjXfP>? z7&cZCS!!NH7#HN$vI=XLniu7hd!IRy@RgEVdIxJ>LV=!3(!(EX9<+Yd- zV~N+ih;Xip5=+*-PgO}20o_!z+ctmBi`P=F)NIYepYwtSlcETh)jUH#pYtNZxFENd z6?D-RERj#H26H4D?EoM`DbRCC8op9(01o&y)^qhDU{Qd1TneXqd2UZIU@tFOW#~; zURcAcb~D@KIj@H$zw0$GBCx7e78n}roYPYCB1I8ccbTX5nimny1v{=Bve&#wF+^Al z^SfU2A_6OCb48nZxYK)|nU5ZRN4ZrkWPPu5tmmkhjG7namU*A5O{{sJ&X~qXs?v~q zlzFA)Ij zk2lZVQX!NJURx45o%bnM2D|OXzRs?HaMC9Hly=$#`Memg*kCBwuVor=DUh^Wtxeya8mS8UmAIX|9DT;t@ zD%x!ucCLt7*u7$vscR`$>b&~!=e(f7q$t8=+waX zkBuFfL}x?j2xClI^OESSTo!%2<|T1S5op)^hOF{e?yt%xG+t@s6TsZ{Rb)^E=0ray zCU*dh2&-%^@kjCxSs6tTswaWuzNF`&TxN-(Z>f2O?cSK0QUuzfbFFzTh{@$1#bMRV zr?1&{>6`1j4Ik<3^6l%hJ!)Q$NPgFAUPPSSBG<)dABj7e%1k1TRAf+!BJSLMMDo;L z^WwFf>y47XntO(M)|nJTTzRA9cfICC#HL))W**LKUX;&vlTv`(_G(^25d_ek{jB`e zJns{|SH?6(!kX73QvdLp7ZI2_YhG^*%dhOG*Sttk1az}k^CCjIQnS^E*Sw&?q$t8= zs$k{24M|bN`E!qoHVcvOHYCEi9u=K?-iH)Jn5?|!MZ~6D(Wb1tf|WCe ze6}mu&YIVwyEQMN2mRkk2R7Mem>S?KY z(YJ?P)ojfYz2+tUtk+c=J2k3~0K(-SMF{pj^bfQ4jlOw$?^C%xtT<>Rc456@e%EVW z$%UwVslDb!gmb+ycKy}Iy7wuHA;MxRFTU2i9q*TtyMYK*!&Y)x6+2mF0Y6*KRN;)<3-FMTB#`kr~gW z=0%Dkpc~e4yyiuOa;45|9$xc;29u(QA;Xf$Qu89hxFENdRj5L0UX)Mnedb8QSN3XN zLV=!3(!(EX9$xc$w0p;jQ`*D|M_GBziwNaP->g26XF%p4YhLi$q$mRGE_LoTFCv`l zQPKIj_o@81Axu_Y^O9>Rm&wYrIFt_}YH4lAZN`=L{XW4}6hRDh{QX$X3v2kK#7N4w zF(<|nuXz#ST#rgDS@%8_OB4a!FeZA_AEPFZ5YW*=pvia=X+KKnU>m|X5r99GSok%8BxZ>}{jtl^oB z%C$Y(qvrL9u;a=hd(Dd! zLxjaJzw0$GBCv8cSG1XjJH7Ww`Q+Y*a_e0Gwj!D`JT(zOch>M!-lsFBF_Nm?eUb2;aM6{p6Ydz6yZT%%^qiwNa{ z*Oo-qninaG$URE+;WaNJoD27DIoh@6MT#LzR$lWW!Xz39%4*&Flzj4Tl5*?H7W_j_ z2w~lx9u<+ZB%OPo=_{x5KJA?`lJZ*2iLu0MUNPR8F?TM+#EK>G4fsg<2PukxZYtWX zH7_ERD|KFdc+CqMOo}3MS2HEDyxWin;~FbY$qMG)SsalMG+0uwXgB<$5#bXh(G}6? zf#@ubdJ)=F(gSUkpGK(ttcXG{H7~9o$au8YG@>r=HVnj#l8GR+znF*Cyab_K7JaRkk2R7Mem>S-ULTxN-( zZ>f1rKgahg6@j+sTx(tnVsg1haag(cDUUMS-RPTZ-sdfyUA}#NwnxqDEt22$niml# zx5#zz*|)@17{%%8PFe!>~S^2vSi7+mc73{rtG9n*nu;r%F zZa7FIl(HZiJrKQm}NE>=ycc~L&_E|Xj2GPff&uiz?*AO^a!pNQ?xoR7->qj>8OdY`#aw5xW5 zIkEoXH7_EZ>qP1w>)xm8ABuo(SjX|27q6vUsq?Dic+CqMOo}3gjg>@}nimnq1-Z4X z!rGMK`zZOO{t zZHQGZDT=_lOPzboiwNg>tLS{)`;^WNVY2d?mt0G^Ojh-_o_x0<<%5W7a*G&~{&5OX z6hRDh{QX$X3(;~?VkG6;m=j}(*Sv^uuD41oS@%8_OB4a!FeduD4S6l)N}bm{{N0Ao zU{Vw@Y^)?wZs0hHM8zdV zpxv<~x$%4Up@_-lQB)B|vFkD(lOKI}lo1bB?-EFi$|!y#xXZ1zz$s)$wR zv!5e~X;_rn0uehw_?3we%EVWL?{>Z)H$c6=0%Dku5OTNq-r<0N10bzp7Vb&~!nin*f6h*+sS|Ur$iwNT~S%tM*-lyaP4VDxTUHk9DJv8srlm*e~T5+EIWV}r` z?}~CBSaE9Xxko8k`MV7#SLAn<3tn3iIi2?@iXw84Qhj*Mi`Q~4+_&Xu*P0h8hA>%q z&5H<=Xdo!7+R5a*4Jn^hZe7`0-ff6=dwNtv&i08BMbo?1=e(l#%96)O%4;zv#uBf2 z5#d~ji4{xy-G-zn0=i*L^miK)pcih{2n{Ah5xJ|G5?S7DNQ7~jtYGe)#S!^H zgDtnP{F2*n4btxNg;iRz#tfnip4tZIh@y_C94L{+yS@ zT19AoF($2f2|~Fn`gqMtVz?sEuK5jF<*(fP(89^(QIwF}^;KlB2)8jFlfU*pjo8G4 z)w=|eyNn){B2-WN2<0+M41G(@Yx?=9d5Qkj#zN;>^I8zoGTfs$tlayQN13(9oapEC zd7Nj)`%7-Vt+UIwug~_VdA&{YyI%7m;^Y>&EVryTP3HYFz|2`0yCkt>N_W27kQ7BgH>`R2yA6p@uGD$O zM1Rf;8cd2JTvq;^7ZJu~vVy&H??d@OgDp3WcEdp$p_B#D=z-{+jCv8;q8nNXAdOJ_ zSrLT>;E?~Y13+XbDN5AVhzi8~!7hVq)V2vi`&(*Wf>17tJ~0QWd1WLUxk*K!T@k#7 z6#wU_I_e9TM^Qp*=2i33>oOjbKleVcl8VUU!RlQC!QO|S8uuBDAF8LN<|PQ_GE4ND zm-w?H&{mz#k>#j50tlCT6eohc5BBd^Sloc&h>WL!+G9^6hnlK@gB#|Iun7Fv$>+( zcP~p8XU=?Nab`Pqvbj>%{kdm~;2)DBlFq$P-Jj1r+bO%Vjp6_wV!PxM~dffz}7E#|~n;&~q;oa>Ur668eTBbgT^MG??VMZ5K^GZD&_ zIr8}knXI6T-pPo3puv_~SboV3{DM%*f@t(W^iD>-2yM{~ ztpt!p;JOmw3{mJM?}NxtQk1Bz5p_B1%;=20Pv7_J2xCl|_Ys70S@iL|&y4NJWhese zn%|IB{;Ivt^iJXOC`w4~eJV0ogxeU8$zOY)Mr`82>Rke! zcNzYEA84@hKD@5W%JV)%7?;T^tX=j#ln*r6a=ZDimRouU_dY^d5RG2)K2Nl!E?mp@ zHu64Ch^)4UK6?2-`2MG#{I}kX6I(<)cZpoTc@lr`JF*{(wHE)Lc-y`2QHmnYpL;^I z`5(vEPjCG0W0$|>)sAqkCq(C-_aVg)CM(bT5V0v&v?(jk;!r*+1<0+lJ9v8F@=O2b zlRulgC83DifbP4#CGQix*PUXFgn6GQB$jyIhX~A^d7mdFmU!NW6h%Nc%=^?c?ytCr zoh1>ml`v^k0Ec(P8B<~|JToGtj1g{~*|2e9T`oiT=l#rTv<$d(JjK}0h9~w(w zmHif=u#)auAlUmTMG&f|CGR5$2=&eN zywBr(hlLfV?m4i+@gB$XK13)NG}!yDCGSIuBCziAUd{79L^#(wxrg68??Z|q!p3-y z<9Qz+)x_T+!{xjW5yoY* z3TwB$Pss-wY`KNy_uq$m=-#I(3!>3W-Uoi3^T@qVjvXr;W%a*(#YZpyn}?^L{NdjF zBtp61wIz{lTlYRiQ3Tdq>ii@B2`?%aHuB`9(37Ooe^FBl%9=ETY+WWM3#z@L*F(<|n&-=u9=Ut<7 zJt48g^FE{~0=i*L{EM*{{e|Cs?8Zmu-luX4%9T2=jKxpJ-seAzeEaXry-!6;MZm^d zBHIgM@AJps|MWAL=H90e#$~dCx%W;+pKRrL2fTFL@tChLWO0ZH=f)-bZ5XCJ5~>#-w>4K`56+AJ6;D*go<;GIO9Sf)82c zuiE=e?-VYNqJ-q$r~KR^+{SoJ{@VLAViOMzE2%iB%n*d?Ng%abnh51GOALKW z-begd5oov0@Bi(;_s+li@8AFPn1@9G;c}1SuyXIyRw4-Oeabi2ywAJ)4(s;y*&cbH zcgsDF=Y5Dcxkavv&%RrB=brZ=MG<%IzFY3XJnutn)VI;`g zQ9^3wmG{x>G9Hs3eP}G%Ht}HfE`eZ|K~FV=>S@XQ2tv8c5+py{PAX=FCUlXSPS)2VM~S;E~H%5lsm%>U-JY zQMK1z_db2s5F@F(ZOn-|0MGlxc;|hFbHP8V56}CMq6p}QxeU+y5TRVD^XkL%KG0xN z6p_1{`1_H(4-v*?vI=Xry-&#p8Z0Rw&iCJkd+6S$DGQ>}%X41v^PETSeRAwruP7^j z&Wi};g4dQr*5|xPQ3Tdq>fF!!5aC>ib~)NL??Z|qOje%vA;KgY2+GQz^O`dsc^^sv za;vx!U%r~>ee%gLp^O+j#~$tWl~a44_Rbhdc`fF|SmJq~81KBdbgs)1OZ+)6QWOE* zFedtQUPLHY>bx=*{+t&ym=s00tZ;_@C!$KWeg2Eb4!IDuD*|oNxt{k~5R=P2io?piPg{vym%h2?ecs!5Shugw_Q?CZ zSMG5hSSc^@L2>#E$VdESQc^}GWyGbcPZhLtjp$G!#z5`g!`$X?`*AOFN-sioN1Ms{L5tupiK363N5Lp9x zw;?HtfNu8kK13*2>il@#2O6xr53lR8^1Kfb#$~b!YnQzbp}nvYvG&MG@!Ey;0m0 z&-;*K2$PlPeTdkUE83KmpWextLq6M;Z0B=c@0YyKis+1xAb{?>zGd$dz1N*$jHL1x znA2X~hY06-zr+$h??Z|rpd03W{5dZolq+>!84G{T3mQy{B4A@JkpKRTvsBTAqow^A^%|qfXGl%l&Gx{ z6^QwRT?V7`wh2NS@XQ2tv8c5LQs>o&=Y62Tq$nbHHSzZ&c^@K- z%VZVSZhN1S4>Z_v3t#EK5BJc$Pg52|qnGnO@bjEU?tOCXSg$Cnn7Mq%oe1TEZY33^CCqN&<$f^#4CJ} zZGOj{2<1whSH{Ah^MVGGq6n9jf5)8&<1$%67rm1a`9Omu1&ek75D`965?v9E9*Ew_ zs28DKckyN=fHXoWE27X#-UpGPq$p8aBkGd(kyyJ4Li>v`Y2HT=%4N~V^FA}SkGzk} z9O#PRLst2#_C96d& zEWfF$38^4-v*?vI=XLy$|IB4Yu5FUTe9fcX00`lm*e~CGYdW*3^Y- z+1^Ip=Yt|Ef6j}D=Pr@!H&5d4eMjbJok>x|`Ewr>ZTfRwL^#(6MdzOPA;l0TE6@87 zu_;%yDJ#$72+WCjAAh&u2V$3+ zZ-T~(gZ37&3o9Jo-|pYEAVRrPgY%uz%Qr1xyGc<5)?L1be&!i&{9-)Qpx1J)uaA4R z>SNve6vYr>V|;)6Z+_>~&wTdbkKXvANAX;$TuZrNmGceS>r-2l54_9d7Vj#D+>RiM zB8Y*mx0@rj%Qr1x;q%J}F_QW=1Lnl<8~8UZh*-Gf`v&XYr@n8X2YEh&n?x=Wphe_W3HgUip1XMTuqt`D}JHteaN3}3(e#dwcb zM1az{Aygupf75~pteh=Tla=RvC?A!=klTzaYu+aiMG?6Tbo?DMjBiWFJZ{IEp#Gyb z#XQh^d1tiCw=pNi66CM`C~WKdLRN}!t`ABqS@%8_OB4a!FeZL;Ja_lMfAX;#e{eaa zTL|S!&DK1AFLd#S@b!Nj2&E{(W%Y@8e(>KtJpIgHFO7-D2FCvsHbzXgV%?lb#iXvcRlob$sw;>V6WwHu;x4ciu2O4a- zh2{6(hl6O|rzs1f(M!z>_c%EZtT;9H+@qAN{26y5lncID5?P;dCq)stN2xyi8FwO_ z3-@g~+O_6IiXlu^Uh^UX>s8Aw+LYD0_bK@xqN?2XYF>zz^^7|ax%ZjAaw_lB-Wek) zuf?1gOT6Y4b&~+$?$PL;|>ibMG?8HnG#u^ zaVNsK#=26ng1L7VN8|$ymJ}@74gY9F_(Vx`MKpRKI*X%Tg!Yv5Kvx`dgxb%FDD+bE zLS!f@O4Qbfy41WFopZM|(b`{(N^4$%P%eu;Uh|R|t_ZYk=41MEM^-+e@yerUa^rXI z`Z{LVbs3Mz4}?b<@nG>sN2sS_pV09`^(2tom-IZ8%PcW0L~35s&rulp~0f5v@5 zOfL5*4y$H9^=#LrZ>}}34|R6=_Vw8wHLnjze%EVWM4a3r*TrW)B$-LCd6A-sJ9j@M zd1|kD5#d}Pmi(3HeMm9Hl@CjP*K1xxY|0gF=Ha~NMfq$uDFw)FujVBbK>*#^&!y%S zy;sIGM#7rchot`DH7_DCbJn~*EcFl1`;ejt=w`3xMTByt&X3o;puwtn@wzT6uXzz+ zTqdiqcG>$-KG0yx?dG3txuth-?<152(dgwF_orG@_g>5P7WutTTzX1m<nVvP{){^*ihyod^YUlhiBPW8 zQ&nsH8F%PBDT;7e`7`cB7?;Tk_TD=gkqEUBV1};f>17tJ~0QWc}Wac z1ll#f8dCh9qw1(HTpmRUshL;JORvj#On&sCkzw1!gVnnPf}IRK)ex$urRF6Fe*A<6H0%`3T(kH$J! zS>V)Q<#!{eeoqUAmU6)= zI}hi1AIb;bWpcZGyyg{LMG?e6$KNxj?=>%2cx5?1+?58*iS-Y!c@g1UAMPs0I9n^v zd6A+B=!SJ1uXz!nT&dZbhu6HI!K5f+*jPzqsd*7$T##GKDy&^!nvLjov(Wz*1Y7pCM&Ob$+eUVk?2Ovqn=pL@3>Pwh^QvF8CUp>dn1Y> zh=Gp3AFFvGs!d9aqr4#_!pOA|{tdQAHTVuFH5#e)Qo{Mm$)(OCT{SqX|CYO5@hgCCYWZ-q_n`_MrR+1Uh-1}s{73&rAyI%7mLb;$PW+vCXPf-+s zb(eW+uX*uW&IQY_?5EefNHIiMOlNVInimo9;O2@p^Khs4J~JOZyo++{T>rKrnj#4J zW@img<$XG18Y8JnL+(+k{^2#R81KxnIv4H@s{R3eAg`Y_FH#hddz9+KYhFYsSL(d_ z@R}Dim=s08##$oFd!30eE|XPQyXAdKKG0xE0nxSpKHNj|K22E=jjk1Ee#ag6I5`ij zI5qa%qm-=t{XRq}7reG4vcBJk6h-8&ruy*byohiv-09_L*P0h8hA>%q&5H<=Xdo!7 z+WX|&dMKZ~o21;jvbDV52kZ9qsEC{;>D>FIcdg&^iryH zEb;gIkfI3ahB49K??Z%grOvAlf4>hjm=s0iu4YPP`Hnjg#x+))k`>Iovp6CjXt3oL zmS1uk?m>i77DS^5q_a5cMQDp|XeEF&0@tmY(26MZQuE?!kUN+F0mZpYvJ}(=yznIIP_Jlt-Dh$DHWria3An z9>$EDFQ!i%zT|zM`qr_QPNM>8tW80t-+%VPr2NDupL$=RpZVAR-209r(8u5T^-JRf4X*oFzCGKIy!iL8 z{=%=;YM`U~wjck@)q3Xm_UAuywVn;uEBUDY)<-^fwIbPtdp>uSk@KHjJvH-yhLvoj z7~=3xuX-%Wo*c0W7vy%l52FZTJA8Jh4@Zy-QsA60ff|*{L}m5u-|?BNfBuhC(#cy0 zr6>ZU>b(S*562MB_0M+tfONZey>3Xs`p7P(K8PR}bW{4D%;UeqWt9mmru1(z+}`v@ z_rB|AzWr~13_4eeB7X0CK6ABK?d|-}yy9cO|C68kxfP*YDs>-~QWSx9?X~`NL~*GX zVkh&e=N_+7 zsYfXSZA$ll`tVPG?4I|0eCT6E6qkClOd~X?cS3sSwH>}eB3$(G&hA4fiqLz*ZTs>6 z@2_3&nG3?W;_oFx9~F8piXv>+FObm3f+(HqorM5m=DMfSJ>0+dy?;(-PR!x5QWSx; zh7c~*Z1-_MA1V{QyHgo9A{s7TLqvZTed7A~aRlzX ziVLeBE3q9{V|Kez3{-~OR@eCw~>cYQ@Dms#lc|NP)T?C7HuMcAFicJbGK z=41csZ~XlceO5$8AN4fOdss>6x$4WXtFFt3f7H%tAP$KOyAlNKwYfr@b)^LnlsX#& zeblL!G1}jHv+v;onlZ6P0$=G$zV?>`%C3gj)<_hAc*XM!|LM>D>^naB)W>r*kZT!N z{QXlssu%qHJ3jWn&;0bz;PCTFQAEbXH~Bmcn1@m@sy?w}eQ+W(`piBQ0o|0`$UihF z*D|iqQ%SuMV^r|xqL>a=L~!Hha9OnmTdH{&I+-UzDT+utE?GTw{<|N4*)RXr(1#+F z3xEI0w@0lw_Ve3z>o>pbdg((cia?t>=djXi>srdSztdNWA~2`6N_G*lQiO6rhGo+Y zI6%63|DkBuTius5A{wxgbCH=S&td!gxfkwO$#a)p*y9CPk0h>Cesj8yq8Q@l3*65q zEJsy{O}OrS>ldBwaSt$Z-T06(((p4_CH}XU0u+h5vg+F$t zAZ+@0W&+k;6hnmn@9o=(fMpcd(39qt4mq}r47E$e2zxgfefQ2;CXz9+D2hlAu1t~L zrOLI8OXj!Sr3yt6Xx9#K+w3lNK@^uty{8eg&&W`-g|(LyU~e_QMnoecLu(BdQxXl! zFG)KBoJyLx_xfP6~l@a^*85nW6FuterE#4;3tC{b3q z+|6u2B{Q@Z9tVh~2m&KKwW`I)A`iD9iVLIdeNawe{PuaA zKljSs4VXj>p%g`IH(%lF`9v+!Rj#N4)M_VP#5^{oDB{Y?clt1daNW84vYwOop_G$b zFQcBdZ-Mxz6mk3d%S7iNzwhJk;69NvG_L4_cK|Q>(Jz;~R8kaycH2UY>HwW91*2*` zTOS1h0pb}} zDn%Gq*mOzS5wP~A=yk(lj`v{*;es94oVt$#Mg=b_S%ItN6MY|-F8U~nA)>!psYf4i zef*>k76SfJT&kPo&EF}jV+hEt(0>X-xb}6fGJzCI|0YA;0hKP5j+MV$12%{nbZv}3y z!1Iu^rMSMGzr3TR&z;sgFho7qrRMK-Y5}d%jzJ=96~k z0a?`y6#=>R+Kv$&a#*RsLO2)R-n?Yh0F0HB6h%O@oQL%x2ZQ)Kfyl%$ZMwah*w4hS=h}89#916_e=7rMn52 z`{o?gAuW+(ACm4l!9sIRJ&TDD3dUZD@SAQogw{Ta2t^TB-oD$1AcX7A-M4X0G7-eY$9i4*>+gR%*DFZ3 ztCoboqewBt2J~?sBw|ypeGM9g*UkQp#}ewf5fPYC>+l; zJ$dXn_xzj`L&P_E&yWL9E}J=Lk{ayZ6%pS^-s^)i$M>&`>(1SGb586cWTg~*!M>!R zaZCVA!+l$ zL!ul3eKgm&lR56^%uE;}^xtR>YUo1{!Ue1BIRSA<82p?RSbodrOruf+zR+Hh-nI*W z?Y)n`txxZ8RK{ff zwT6HpT{-&^HS?BRWQ4nI2-M7JqkfKz_Xe0i!t$&EDMbAB_rHMmZKwJugmVG0+^a=D z&^alINDX4NoewzO$IN&rVv7@Wl>-`pxITX7JSs<`TylyedGj}HSEQ?mO(ZRl6(L-z z8%JC@FDt-{xB>*C*OfvXFpra4FY0J;=kALbKSm!CuYwytF)HapPt$GjBwDRL$(z3e zp%fiS*p-dya2!D{Jo(luwRD2I!ApB3J9qA-M%5@vyC~m9j`N={iHs)BNIf- zuhH}R#Nu(T5_GYhNEqQN(uTC9O>#l_HGmY*wPzy?J4$57h2Tx|?vpSIn+r*7!MGRtmg} zdj`2uGEao|p@<9DUfO!vHorIEwT#QW)^h-i28uwtb^|h~VeO76E{zzDu=o+O>ZoR; zA_gACJ|Nvjgl@V`z%nZ6ytrTs<;??dNEr5TLJsrdC{+|QlsW3(cMWB5=`slTkOQXb` zbWSH`&Nqqc8^*^IF}*V&23EqS7Yz|_I^H`oK?L5p++13rVHd-$q;{i-c=L3l_YuNn zUtlnVQuJF8UTLxujWS+E=+`Qi6ODo}uK0VOzOYfD_o67mzC-Y*BI@jqe(RtC2Uwy~ z^s5WncO#+!opV%%2ua&%k+?p79Dz5CH&<9s%`bWLciL4`6cPGwv_KYwaKS43lnoGv zgdvuY0?V&+Ik4&OJDJCC??Vy#1%_?Y6I*&M;}XAFPkGZn6k+eyUru>DqRz&sH_J3a zAE*}B`5RQm`>c{!s3X)53=tLgGx(r##r^K_I~LptH$@Rq;os{+5WsB2RT3KZWE7`uTfl$2Idq`Z+0(Li@y- zMrDYQwE19MA3yL9jtb{8noA-^^5$0q-wgn=LEBe^;b5azM8R4=kP6YaJ1pWNowBrIC($7hOeA*}EN(I3G-iIMV(&mG4 zef&5A`Q7GH|4-&dXk-vX=)ckX2;qWN_MCt?Bn*B|3M`*~E`2BS_?^~Xno>k&Zc88k z_^0IEA~HkcGLQO4Un=hw5sD(vrd|E|hkp8F@2z)>EQsP#Z~mA}0{1R-3gNA{eg6ZknPsCkwYP-Eq&+|Nl- z1nR0K>2*CP!nmT3vK|@K@DEZHk+s{hD`KDzN6^n7ryUpI0O?}vW#N!Q`-EJn0Qleg zFhoe&d@!z$A4j0V+gxXgC58z7H##rheK5k|96)iwDtk_2I0=KFlLE^xDQK*eF2+3A zha$2PTl(=IRK$3B2EtN^&tr1!a1Ox6Q>axR0_`iloZC9q8^p|Ir~rqP6(BxS3f7h zxMJpeeol%a@)T0p6(<6HID&ruHrjCk4(aElKnm>>a-{;`fA7N(A?fn2fjErc3u05Q zGsO}^g#N9M>|*r62#1qy#RaSEIf46-5coMMuzdQtTq&8yZ;w}s$dgs25BGCk%ec&= z+|RihC<1NTmHW9Pic7s&rZKGjE$s&?yW5a_j5wh+AA&@;^tSMCHg2=jJB@C9@3+P zqKGReyL|{kxbEDgX1k9=`Z;9+uJ#F$VI!h}nNuHzi2lmE1|qJHA4hD;b*5Nih>(Ky zkzI^F7~wYIf^K?FV>k(cpOXUpw`H7ZREoIw+FQjEec#Se8CUc{o%_C>6h)w29=vV7 zZ+Ap-sZCEYjsLK3e^jjfQL%Qh9)Y9=YrN;r3F79P&SHtmb@(coIXgigLQ%w(H}3W! z2;sVO_YuyCU5p4v%E_%qS_;>WbwmHw$Am2i;eu86oWOlZ z2>hHBSbodrOrui7g=>$BK72iAOf;_Oqx@#gx09j>w9A9nx2iazxYV0-&NcJrE?sO3 zKY#8beL_7=Ant>PxcP>&_@HtfzEWn+PSA%?6mjMCyL|{kxbED2m~&zm!_P@Mx%F^M z!TMhOoP8+b_VtHFAMWQw7+1`%y}(9=-ix9Lw9A79Fg(f;#f1^J9T((~eohMH(>@`6 z7XbgKK5A5k2uYg{#`W>zh)uc96iW;d`nNu^i_r%o+$LPG%AV60PD0@4q`>l9K4%)0 zA}(CJDEe?e=ctU!Jj(a&Tn!X~c6spX=Z+{Y_2zB+!PkA{@&EgU-}?^e9=5D23PLi^sfhyTZO*FXPVpB`@uRfKY3R5hn< z`xoE!9=wtCfKe%BMU>^spq5dcKleaO!Tp>VpSdA!epyR_{HJ84T!&ZhMmV7;;>v4x z`w)b1-MRZ3&Pj%adAzz~$;qwPw9bJr{{ZTMd7RvOP`Dl>mt0A@2!!?lee`uh|K_!E zef&6LQ?4^bA4A;y3hyJk7=17%Zo+l`+(R7U;WEC1Y zq*l-e?FSaa^+W7URG3y$E2kpvz4nmE%I^nxE#opv^!q{Dl_Jn)6!rT-M--QOK~E!Q zk2f??CTN$QRqBn1hU-HS8e;|`uAk9IuVq{jA5X=SK!tRLVu*d)6@*&l77^9@7(*L< zC`GP&G>T#>VY~OY#hpKQzr+%H+PwVuFJodw8AIIsGrO@wuBBZ1?j`92eegX_n?%iPw6hCc?PRBwavy+7<2AJ+&i> zOTBrWxqKNY&Lr1Ja7wrJFH;Y@iYFgxZ-6HWxXaL|RVL(+9`&M@C=hLZ@hm{wwDp0L z*3~=CRjB=$Dduw)9U$T*or8*^)$xJ6@hkh z#mu|ikc6+DsS{YLb&$r$|!=s zsq)tUa_2=GRW9hfEPuW8B4tIKiY14%-Fw@XfcV0;izl4QstplyvPd1*#}A}S1Wxuh zS4h3Cl)U*n_0beXgl-xwkOd)Ju!Ww}vU{Z$sjTo+0TI4?B}EZ95ntZCExT7DlndwS zsXooajBj-s6~T{$fuH)=o3iSxpHBI6}v_k zhwLbyt|_@AJ~r2xtV9v{6ikiE*C<+?ajF0Nx1EHd2(&3(uh%k`D3`|koOAq+*<;^M zYse=pa_nx2jR}NO6agD+xd9N@uYJ2)Vsk}AHIHfpp0z8AU3cF~1mQk^zONMH>7THY zh~d?TB5W0He#q*7_{bmk_s;IQ=a1#vaC{TE0APvoCTK$(?(TexP7#}N=@-D*3;Ga> zA`XAJ+lL~^b^G(5mpRQo4w(73{rKmvme#;kzM|hNFuOMG?REJ)f5^vROwxWx0&-kJ5*8sYh8Z zLp(|mXfq~SE@MFymwI#0<1j2yzA~iW{25P-^;7?ifj;m|%%m71uJqfFAA28wBJjPc z;==clzU&*0A(VpeE`91RPcG@3V;b`iiX!mMr_aPUZ8sG3fGul{XLl{!YG2sFXTxd6XjnlR4&M^=LGIU zLa+lM1-dD%S>MS#etRE^!1t;?bJR-oTFN#4e$)q*qKMHxYVD^GlS}PQrV;wUb7{21 z54I(mHw(l)3Qz5o?c({-qD+3TzDq3M`-g<3ZALe*Y0%@*hodqsdEQ9682-WMiWD*0N9}5is^irM+WPWY(#1ax>E|D43(sdp z%g@>O{-_Kwo(7dZ;`;c3mB_V}>rAmEpG%$B9nX(SAKAqkON1+*B^AUWA@FlNWtx|gR6mYp^viZIS2gb9;JwU%JjHh@mk8I-Yi{2A2^d(et;97wDveZ zvok7E6p^P*kB^E7sb7?H%bZh{=_wSViZvn>@u@v&HGglEVHQFqLA6 zI6=7=ed4rXNm02lzxq2TK6EY=MZ`(ay*>mXT&mgb;*frhQ>-bIJd;}1P8l{L8mIs}G*POy2wrgi!Rl<9w?0F<}crxbm#3AP&`sQu0jdzs#r3o?<=jQ46Bi^S9E2r=0K~*7HZ3f-`=!cCj8q3?H21HAI{vJcA`F z7tZ_a%v>mni1UzpeF#FhaOSe-Wb;r8PJEWnk5jB)a8!!O)27Gu!BH8Popj=`V7r0n z)fuN_^ST4QV^<5JBOK1EinXJg19YC}Ta%J!Qp?(TC5|b*mJ~yb^QqEDTpvF^k4?EG zf+uhO2125YBF6bt>0`ncgmC3qRY4r852fUp)S9{UJ+F`dybnc;6Q(=*;I)kFOtD=N zd5ZP8UC}$0OTAg9G5q{uTR6`6wNISM2MrPD2+!by%7t?oJ02wzMZ|f?y*>mXTsU*t zbCRiJCqoKOeA3V5N`@Hc-sX4}k*7_M>x0)aE<2IJPGDDoXg|m4*z)se@7UFXXg|kU zRk3z-bAavU`PQW5nbfj&UWsE$YbV7J<9w?05!c6$&m+&IRv(NQ$(z4{5Q<)RoKKZL zCTu|nSDsZB#G(37N}fsmml>5J#tG9MeQ+MebtaEeM4nS%DL=wpaD0aa4S8Pq&9GT>xYbK#Ul$xtA$U7;u<&P+9WA0b>gP1SQcjhL|{ z&kLr`^Zb?g2T%uCNuC5NE}Ti7Ty|Q7oy>X6KA?|AjPt3|M_eC2j>t2q)dyot^5$kFi95C}d>zK02GpQvvp1&*r{>RKoF~m5Z zD*A})S{jpgt6lr%jK0 zE%jksBExm&l&&I1dnfuVh>p}apDZ&!lyp@lc_#H=Mjwh8Cro!nMco<~Ja|XCq$na! zu^yN1f|z$+7-4I3`-W>j{js;d>*M1YEdAE6e*IQ$dS4%kuydUPaceiOGx@n9MtetA zv@7Mp2>WfyHY%kk0$+-?w=_>w%mZf)s`ofw!iW z!bz3m@hZ=Fq`l@@oU(8^2gEKAedI)nA;!6!LI>oKFh}HBoZ`}x9PDJus^XPicbv;9 zv?B71M_M&bZ_r*v>I95=kfI2jZ8;^YK+aK3eHfSO#`;jXL(&|T=*bYOK}Fs#*jcBejW@`P9e9JoH-1g}>JqQMT<@zUVi8?q$FHTa74+BGCTIw?Fc}?XRpS8uePr zb@-Owzxs`T{{31~ z6oK~fuSbm2RP$QOg%O_G=^tRbN`Vx5cWnlNnKdz4-N8rR(bDim= zlOaO?jn2z=A3W&oTNu7 z0&UtArw-{lqPWzX$q#+t#7_AE&O_1K-@NOCq$mRCud2V*+KDhOtA@L^v$m}Wv?*QA z1T%L;abbk5O#))(II&Z+#o3>d0?r!kMITZO5$B8cq7M;xmtJ$lX!rUMiX!6FQ=@Gj zn0a4IxKy(ZIHaFbCg3W|R~a@U8ZKQ!M1SR70}@uy6HKM;Uo-xP73tjmT{(0DFWxO%Eq?s^RNEK$A4$8=Xw&*xXiBno0GH>MW9WO z;?yBsM--RZH2I+qoC=|}KPuKP)+3PAVA&PU%(Q>RDVsA`qH;wwysji&3@Z_eBI4}N zULS%GE}Tf}5lSbBaHQbWQ%M155WeuJ6oKweC20E$4HcEyQ6=Z+{YjIiyv00-z?DUd?@gj}fr z_}}|5L`d3vFs_duN8pTCbDb%c7$WrF=)8RQ!3c*p6&4q)vgb60lQ8%>DX{#O&zVN0 z2%M}cNw0p+Q5lzclz$JBtAQfWrd@IBkgg+&OTBs9{>ylW7ydyXsGpZiaO$aMj?)nI zkN@hyk39aspZw*1w_#Bffm2qTxsQt0j?+8ksX(`P5fGy?iXePc0XZbh5z2*8l@zw^ zp6~n4pW}BFNm&uc=b@v5+)4^(iwuT{69pv&nfUaNjxx#>Rm=XnK%jG>C?ZZL?DZiC z;lk;Jo>TR4fR*56g<3{g%-PNqLAs3yZI(ZdF5>$5$$9kZtXyY`KCr94Zk&_qc3!^w zU`)iD3X2P8bb5q_!0DED)?oz1Qk0f`*fpkB+k!tzW19uqYh z!17DF8Y{O=W1>C<7}lu!#g^`uSVB+pKGdIaW~QT0oGyb_8c z;xtvGmp%j`TsY6vBP_%L(#2V&vR81mr=ICViXo!E)<61)>*EJA=ZO@Y*lMn`S&1S- z3XRUocOQ&!kZy57H$5jqs7xS*iX|BB7uJU&aQ>=%Wz8D!TE?Xk**sEHR*FEIk%1F& z=_;3MHieWZ#4E}KmS6hUc+4JFA5;X+UvX4^?@WCdm+py{duRHZBG9IEIWG4ow#fdGO#T=vEkn*DAQgdh+U`yk?D+ea`eP*6@G>H+d9 z|4OyC$5XJiM?HcSYrW*0R>C%-|96|9Lh2C`Ta{3XwMw}pluIIzotiV>HEY&?rjA%khIY4vp2d}8;!9cKEeNYsjIJiZ z%GV#S)rb=dSMKm|UjN&BcPGO7t;p!G8IfGlO|~heSR{i!Q7?r4OCKhnw=sA0Lu2txRTpZ2GFH6*(g3z<}Pvn@uxBSqv`Qk&@%? zbckXXTiIsJhYdunAbXXlx>bKyM z#f%z4i0?v*7HYpw*lX#-b42~aH~-NI?iPvOB^Ub;m702&2drle0^Ldg% z1i0+m>!*_eigBfkug~X61`*)mp2Ddexvx+A?^4D$$~|7%?-eo* zzWD{0m%W^8$EkM{QMl|L$cO+NZz4b;LU$h4sPEiAy=L{wv+sB5A3X2MQ4`imzklkU zi!NUdZn5`L{UKsd(2mk?1Mv^Lj6|?^q0NC%t(Kzaw5#2!gqPJ@Zwc{UI%PS)1r7~X?8P#*9r!FNGM4=Sl zj=AJ-K!9tWIhV7o9j~xNoDGdq{XAIh%spHgM|NW#q+Z(VpX7RNC9T_iabt`IvKd zAcAYFRu}%{Yg?^YUzV%qZ250kUw!=h_75)XEsu7vhU)bndzqi7FdH+(ubbZQe5UvA zprB3ax4(OpAzI7-ndw~rzolz15ag2e#F>p{d7tV0J3o13v+hkJB=IlH-!jA-CmG7UMY-}A@$86@!LkaMy&>&J$de6Kup+=^v(IjXX5>M! zSwEgjNll1q^@c4OiBMD<=&aQ?0$diaY$MbTy$KD9&EfI9yH?vRPlVn@0-d$mMu3Yw zGFtAnLVYdXjdH)#S|vg;W1#=0S|yicB;pR63I4!5!~bF9oFkPM&J$zH^7jq#Ukvfb z=bm>dDMTE3>TQ>$_xUxO(d_@tM?Q9LL6A!)s>1Uv%YXX#k=6H_hx^Q#=Uqw)5#RX2 zPhOT@^yh7!{qL{XKlqW)pIZ>*(h08N!Iv`(@ow{S&o$pp3K7fF5zSL8CW%>1h&cO3 zbVb;#)}r^f+pIjSwGx*43*Q?(ZM_{*xzV;-}v8 z9hcvB&tG4*jVP1}@i8G(!{u{l9$o4GAO6KRJ&g!G53cn~FMs%t{;w{Bhy|1x@lYX} zjBk6>{;|Kdw*1&1|N7I2(DUG0zs%Zkcb8ESpiGF53DIO&@3uHm{k*KNGJS*&^c=dm zD*I4u1(Cg55kpVQYo2xW<~48LKe*TL9=}d92Bpb!8CN|+=<~bIi71o_@fjgxJ)iv>$L7cW_^IzALeGQC z^zqqiLPkY^G9f-AM97fNy9^>;X6@))rp;_e*Lg>PVl^RR)G%y!^TWS*hP8u;myUMG zDpMcbb{nEl3?1d__tDeK?Pj-sV*T}=&GGAqC|owWhAk9?Mr}}L#IVZA5?^BV4cpao z*zQYCYrCMVDs{bFm!ZrcTALJS*|4A?FaFNP(43))c;pjb^tx$AGq8cw!LL~{Mq zdtL;6RNDmwzF1DqQOqr7aZ10?LdSRw>&xuhst;Vo=(1*fC|yh_pnZ6EXbp zG!MQg#{p!hhNqhcL75O^h6{c4c`y+wcW_xxpKcyZ%8VE@T-a5g2NSVaxr56r=5+HQ zC=;U0gGC>=-SZolE$>n+@}kQ>eb3u2Tds>|`~4l;af!G(WkTFx=ygMAE|-hM10F=hg)UnBYpdu-c=}uj&k*T>Z6arrgI_+R~ub1&WUhu z;FK9LY)qC2U!wPnu-ET^9qTz{%!om;I4Hf3y~zw~@3rc_1QZ|?ImP&IwmZB}p-hP3 zB|;zFw`W;G4=#%U$M`P@MV3LC5yMMNzC95_4=#&jPv=WOnGmP*C0C(GuYzvu9cT1z z^(CO#`$uY1C4~lm*nG)f{mA~o3*IAN0tyg%vxxD(EJPH_gh<=XH& z*r9W)Sl3`LOT9Z}m@P#6yal5jpb+8ukCs2gvbC4I<=A!i`P6+cB^NdLiC4S4rG5RB z2vTN5?wZ`QeC1QVcmLSImz`H+5dHVwdixEz6ZGDOc%UKvw+TV6+Kzv0S=4u0Huby* zoOdZHMBMrL+i!@Sr_1uwmZ{bM7kouUkV_*id-r0i(f|6Yt5@e5f|P==aTB|Lm*xJ3 zSgb8CoDdq1!PUkltz`Y>rjt+nmGqI8NG|;z=%($02uekyyk&W)t&D!y+Hp*^Dl)QM z+qsOsdcgNuX3*O4?gv){xj536#dNXx5z~qEK?)J?c*SR-bJN8p^g#rdp*9UwQ#<|dG?L?5maw%`Lc zK2iqJYE$eNUzTTCJ04?uGp=}`^pOa1dHZ5EIAQwuC$_ruvP02wrw}3CIGFZ&{9-g`8zQ{DgDVyOfdTYRqR}J^SkYW9L~rexhkG z5#-{my)19CvGE^FC!cw!TAuSc5%OKB^LKvi$m%CdA0M^VB_hbhxqVsAv=RGM8@V63 zPk1=jIT7-~X}ixhgzV}s%5UiW7&-T&@0XQxy|)^H$PM$>ten_O-&lZ=i~B(n>VJu+n2 zgK9-Ya%tQ|`z8b^t>1c2``ARStVa5yzWVG9zkjXwyL0(-lf8jH91ykYl!{0_dEpM} z?dXWAP1DC|WF(~`cIe#OA$<%P$t7Ee_Vp%s<(icQrP}%{4QIuu z^%fE#zq09Hs9Ba@HDB^iZacDiv-vBQMXuVrbLa^J4l$J;?J*>0d+*+c}TB2u31*0R{=qgJbjHQ!DdS+3@*>?`x_2lp|= z*FQx1NCde!(zaut=qn;L@21ZGz0I}%%=B^CW@nZ~E{;dr`(?AulWm^*UW))oAwuy( z+U{jGqdm&(>UAUb@!lmD$K$eC9NMzA5&P`&=M6oqod{A`F6C{wJE<5@LSgM zdrXTr{w?VvJtw)mN5UswYxC?IE%tfCW1_E|LWFda-#7Sin`i$Y)5+`ZUlHW0o?0Ow3KK{Q8)K?h+kc)GB8y_nh9|!k)Pm+sYjM zia5Onvn=U9wAT9YG%`#dol+4yblz)4L~_X%qJ3&{{BbJ@iu4h+a{WikmBkU}(8&8l z|D2F6C|KeNsl2>oH2m`0qAHo$=_aSBLb@iSa=$joPrc zWx3wwTE(M^MM)vTW0a8bqc+zn9^G$!m1U8O<8fIIY<}8%&Hk|`_DCjlPK4rzv|S+< zLtH!|$i?xvEA|QRoa5YMl(6>g*vBa>m-3e7TC3F$+KlrUwH)&Y%T=2`_P<+6E%*8v zL%h{ywIAqtpYY-2sy=bf`-Hb7Lb`eQH-wCzw>+HwztS|wvdC3EwPNazSYlnF%zFO(YeU9EtPOTbXmeOmc=7GY)$DD|YVuXg;>3JME?IlZm=Qs#h?KXT_emL9 zuEu=!m9^uT+VS7y8BBU0$i-QESu6*)l1`L|BZUb0uGG2dVkLb%uZ^gT0LbNjEN0H@ z%s+75^W8QEW2Iq61Z8hc z#OEi3q1Ha1e_>=Apa1j5HP*boV2H?aN{0VYM3$6_NO{5CWdOli-D`bnTgF)HSa}kgK+%#y*C)##>0louB_a)^X~ZS0c#8K3tZX_sM=Q z2pc!C>NKx;B|`cSF4{uVU5jKsZfjn&QF7_`KyM?0LImY4i^U5E76q&h+gwW-Ecehk zccZV)vsvxW4WZQxBFLq&nd^f;YhK#^UwzQB2BZ-23$M5vI{$Yz6Z|Wi5&l7&4YDk9 zaXc=I)+H2=Di$S$h==}!k6O3gA2P%bzHb=VxK3pHLsl2$R%q}85$u(1ceC7n`57p!E!a`v#;u!S0czI zUy|#Cb>=SiIznK?}_Em(&T2NT7k4@CdYNS8vtGmaVkaKyKyVbU@ zCpfSF9g&Q45z*vPAM0HRa{27zB~=-uRKyOQ8?=RZ^v_^2Qf7CUv>=Sa;cGNX5jaqLZ5%Md!j#JmX5<#xo zyL0Rl{az3@ZerDGS?ZcsYD)SKF4{uVU|aK&Z>NotOTPzt8xa&DD9>UBi+z6IBAN5- zZJRP!uI8)kt7A4tef+|!S1+=S)Ogy!AU`NrnjAHDs^>Q(og+oGjF zkc;EdzU*KTfc9oQ?~It8UFSq7en{KB!4UuS<@?7TKVlz8kc;DSSJ-cI*>#2GMF$u74c2cD&s7WxPajqH1E&wVQ%m)hGUp#XZ_l^+=0% zNg+bI$#tB!+6vh(T0Hs=i(ZK!7ya>e>=T}v2w6|8IxWllzi0p853Mbq(&`d?JGq*@ z^|{MEoNiY6cWuop=O}W?+Ea!wLFGUvdtoIMg@9tRh zN{W{o2$M~OM67*2SIa$rrPfAfO1g<`+q~wLl#0k2dJC-lz8;kb)=E~AG92RwQix!W zEX&is``su0tgm@h1p2Lwg2>z*`Ok;1zyF`anwMf9r?6a&&FF901=W`^s(NBAXn4JP8p|9TR_fiTiAGek&+8MlB83Ro ze^??{u*gLX%JQ4M9cx}mnGwzMcdU73-C3^3D6#%g*Sr!zuG)?{?-T1EM0ku6GU}R_ zMv?akx!8xxQrEn)-wUEeH6f#}c_l*n&$THVX|$4(_X!FuMz$O1rtN|V3K5j&a}@JF zA%o?5j1uj*)#j-GW@~pB*lGqx4!JaUr6u+ila*FXNFl;wl#pRLpUp4Xj;-Gxc^}sY zxi}t|#p1Wky=?{SY>VMYAwuy(+U_x%XTRI_`~11(^obxB$D`+c)W^Oi3?Bt=;4zAM z?HC^|S`va3mP>id^6S=)H&{ISFWQ=L${<>8%Jq-eSv&svmHP+xwWv?!#w5FMtS45TmgT;dPyDzc zzOt=(C4yYd-nQ1fBJUG(5xHdTDMQ+0-X|zTP~LXlCuFc(jrr`Wy5^NLC%HWKiN309 zUOAr=A>WlcuWMe3AQ$KMWvOdk87C0oQBBxxUGqu=x#;KBx4GuE96#g6$UrV9mwdM0 zW1V6fF(^dX^Z4B%HVJATH1Bm|WX~RZvvKuY*52_wLqwJ{AZ_LZg@{ta05ln;tWv9c zZOialodksl_DIOEf2|!v6s|Ky`v7Py2L*^*4_oi{UTBE5izh@>@XQPxe(K!~%Ao}o4%Z+)?Yca%Swomw-_C81i zxoSIp*LI40m+jzr{$tL&loTRPomy_pb6(n4tNlLOTT4XcV()5St?jQ}X>YB@VDv5# z(o?KDEsOTm+Wy*=_SO;WB$m88ad%L{MH^yE~9hTpt(*DEF*0 z&p=<<*{B0$@6Ku(Oho0%k=9PpwNqQlGjI$Nam&#&pmUz{B7$6HJeG4_q!4lF3Lmv@ zyFBMbMB(CiEa$w6ZwHsqY3)4cRVWie79W6!si-=h6jKvb@r zwU^}&&GUS(_3r0PADqvLknc*J|6jI(Z2z~+9TDVmKNdRwD;wiqV>9%@>@(_HxHJb(R$>^pl0gB&^&beGrnpa-veFuhM>1Y3BBa^Kye!NAylVg0(`}FN z^00~^SFr`DqQpL-^TK5onlffYP>7(s?bs(|$npcN`6~PB&uy>sy{sMIYWp%cJ}Os^ zG#j<%rS1RKTbplB3K5!jQ|H|4%u!3OG9JrbXHtmps3vsIz0O1wE{?~AJC}=Z2ba)k z?L-vHglOZujSud1rVOIhrpy6wuQL(k^7ciZVUB&mTM{ANWG+LIlK%h69xVl;a={-f zFM6OoSlWL@PhAjZW085WtePQWuQL&{vB71}V_wnt$Sh8oqmoP3KG0i;L1DR+w-x(@ zbe5|zpMCXsd&jxbTK;I|;ZUo}wU=|(@<$f?yw+l$t8D+3d`Zk|M96og&UGeL@#vdc zWSIzZmAQTSCG)#iTQ2T~9{Yp_iI5LY+x>$1-QTw}otqx}1fp=k&$rIaz0Swa8M&Ul zllRVN`@O!=kNbT0|LImXv{`HI~ zTqn=omf;9ch}c7q3>o&Im?6s|*WPl@XkSH;Ld30yt#_jr1X(*yYhLG!_jBipypPF_ zJc={7zk97Zg$T(j`WP}=J369psn>VQ0EGzkTanRg)-@P13fEbqeP~9DeUid*UH_5y z(f#f3de^b*+WI-lr3UXf;k8;?-iHWMW<6G5T@D4ywttUL})w?F4%&b zprT8UMPZ}lvT-xeg0wZSKnw~Ilo#*kJ?{e-P+%**oa)`q`p zi1)U=&M1pq_FQK*_3#sIKOAQ@&L#RiWoUp9F(@pT@=EMeWT0G)`Rpt1bta;6<*Yq! z7wcJ^q!1zBl{#0B+H%z!<*DUMqTk8oek^pZ9JO>JeUL(gd~n+ClkNTH6IbmYJlgIY zAc9=<^Xl99qxbW3JdVxc_r%7%c8nw9UB4ij&j&&PL)koNEsr=+HH_#? zy&f^@vfS_|*Ix3JS9sos6e1|k>tp4&{XRq#F0+!9;h4z#B!vj}i0wLi>AO!{(D(bu zUZX5>Y1~BnmgTj7e)#&|{I9X!Cn-c|oR3~mrPjS>J@)Zlbgtf`lD#u0(`wZzM4VoO zL=-ORW48=Yh)};}f-~+!NSlKTw$QX)BAH=77(st=MPCK)IT)vajwmfB5z07k}E$717$sM6_G-O=H1l!)t@@D zIj}t3Cr0e!Ws!^Hv7T`!g$R#o!gg=AGeu9geBuxF*e9%nTpW)+YpRPi*NPHjf?PtU zwQHUY1SvBj^FAkR_Fvok`J!DfkU_NClsSOAtR3&Q_wzlwxrGRFd5`SQ`=qxdLb}OZ z##?NjJz;rfGKYR(hk*+XN#3a&c~7mVa-4_w{C1KhtBMm?4Rf4^G?tu=(9@wY`0xH&4y7$VES| zzU6+O^GB{{IeA__A3xt_wRqc}5raa6J&)g;4Et;Cv)X+|)OXR%#uXWlrDUv~vg{LjPLS$Fd67`J;Umu`Hkf@u9=kyU`1+ zaK|YEIDfpKJD2OA$=;chA%%#=*`SSxbXc9? z!gM||FXdimBBcMpWzWS*MkG`1D!KIgKug^PF(@pT^2!-^%3!%?oq0a`%I?Hzr{Z;! z4iS|rN7}sKCn-eSa`b%YTz4BP9@TwI9JS;s<8jga6ldH?A>z;#K5E@|?XIPb;!)kV zL`31@c%1h8z>|SX=(P5_-v^Wlp^@gbs{4IX2Fq2OG6!IB=tl8qi$$&67^&p)_C*eW zd!0!kLb}OZhQ*;9#iNQviKtxg$6;3+SqVKg5wf0Z|!#*vMl!7a{g%FvfT86!`J`g z|8)5JzrIHq3Q&O1*c`o}O09d%dhFx9=v@BXYP&NhLkbb6*B}vvOZwO;qv<0k)(+}_ zJbM$`-yZvnvWjJBcAl)nFm5G-0)*>75Q=0ZqP<6fi?-`AiXmFwhloOf&h>k~P3Sze z{7LgAkU_M@W99&a&E(dYAc=x0^3vS(S^ut2VsP zYWC{3-zO;rVLBg~mnrX)2r7~zZkKPBgj?8V>#zV3K1UF zgzdi5Vjtxbf1}UmVI_r&<8k5co#M&BC3IRl5rr}#GVfFO`{evVwAz$8fX`YxUS{v- zHz^Ni<;E;SF7J`Z`^>RVcuOLro6KeOSafrj>4RleF8JfcMy&2m*y!9HJv9-sp2(dn z1JOLgl4X&r+1qLIJ~>AfF0=fUp#j3!Cn!Wv-gfLW<~x+DF`s?)Pfh7yP{XmU*B1k0^XOdB1!@zQ^8d zTs`Blcl^sn#2Ennt97-c5K(FvkoAlxTqnPLTSh}Hq_7><@^~)^5&G9=XCeyM{YU#I z!~zNsw;s0MJx$){{v$8qTwMo}9eET8>9y*Vf-reSA8UtI!~(9?>pNu>3J~h)BBR%= zYcR?xTwgZYhi0_c2NWP&|6z$dwN<1;gLj3+xo*tc<3T0__Oafl#SZ3ox9NFn0Xsrw<9QO|j46nURiF7%=HGvJ(8Qizad zN9JWZ=amR@6X86e1{Z-s_w)G#&$e)|vN5U)6J7iI})xiKY*n z^U5(u#4Shf51j`>`>$-L)F_KwWjs#jyyO8~gG3yywq2o zPpDk*$FY{$&v_-KAk4-hcQT*zN`x$NaM^R@QQX5RlJWglIjeClk+lzWgAg$&ESK`i zexEjqdKQP}YRqR})pK51tICzL_MG=g3K8;MsdK$aNQ>HkwJeDsSDD+F2b&lD;_LPg zK5N-1QizZbPTQ^LyyO#I=Yl0zm<9BCn zD3f6=kNq%eQ$%OdO+=jYIj^J;QEJ#_^ehg`Dz*A@$mnhG9YSV5Lpl-ck?EWl5QXdh zqkZ!^FHnHcXpUZJbz1kDSzpPEdcQkY*MVvqnHOhvV2j9tQV=Gu=p$vYEO0e_?37U` zK=?clE9o`!*e7aLxiq8hLdZ%61-9h+4}|vBN{H{2g~dUG9-|nd<$Z`KlnIeqhM32y)eS%&||r(GwxRlDUj}&P$`nWmGQo zVe^T3&MPTINV6mJGM)2E1i6YWNEIda37r=%v$vEnBZ5K%t=_Yd-ij?%fpYt*q*LV)8a={-@ z=e&|q5N2bMd7007B|?@sxa@h%D;ggyixaWWpnyx(KG0i;K>?!3+lqZc2Ful$&%UbX zymGFsTsdpcd7q>ZA>Wlc@9%1xFZS3cA^>ugxqW%BdC_Ous^SHp8EC zED9I=eCu4C^LogL!uL)-FrSY<#AeQT+ZHCzc_pPF3|$chTHAlNfA>KnFLKe%#uXWl z;}0@KtoBKU|4~Gi6e1`uxO;91h{AR9!P_#{s?`Dt5qsA1crO_;>|sI_u7`~FO^78a zEce#K)`!sxf~*~^)V2j5FvR*A1MQf!lgdkEdvxH)Ne(GS4w?F z1h`}ianDR=ZvVKI1cl|g{-fnQwM8y!@QxE+t7XSIucXX~e4D7}yt0KX_wY>*L=K>y z^GXD{YC9PFkV3>=ryhu0#=o`ou6*78^P2Zb1i3gK=W|~20IoqI4qf4+)@`?*^GXD{I39hT zjs0+WICky~p+~J^vAwlhL^A2y$us#~z(!`InZ(`BxTM{+gXX zCxr<4uGIOBb`Ie6w*TsV`o1&DBA5HIhydz2FL^kp5FsC&wp-76C4yY^^R09HUwS`( zh{aL;I}J8Rjc5Jd??87C=a7zwFBA}=XCeexD`rs3>-GNZ#karv%-Qb+ zCqnIr8V*2{;Tqg-huhdB!x7Dvwh`=+A;TUb_UQ=po8pyd--G~#<@z{Bt*l1+}I&=HS ztt2Qc*YzJQw{If1yifZsGRuW!$nx{M07Q^NTWY_Lo6_glC#;%ijmP}H!KHSl=+kyL z&hOZ_gjjcS)pjT&tli7nJ4gx<@+#~>!YTt3^998Bev-XrRBL;=#QeOFvdy#>1HRiLgZn8aOziwK5 zy1f+R&al@O!qm z@5Ak!mtr5cA9B&pH+A&CBKGNDrD*d}O$_p9&3J-veYx~imzM-%T=3l{iB|7PXxKDPn`2U;Vp@fZgL%`u6e1i zV$F+O>5tntUvRf!QcAgIV`J56y4x@j^1*}4o@1792gfYVppeU~eV`kJh(RHO^0x9m zLk7y#n9sgC)AGB&YjO3@X+28guJ3gwm&Sk2YVtn%#+u#@NFhSLD|N2>ee4|M=Hl*s zqAYT8ZlBM%XPiKUM>S!)^^AKW$VETz`iK>*<@m!#UUWJ675Qwx*VPOn289TF9>2Sg zHm56>@vxCSyXa=)>bb1t_`?hl8Lxo&%$byepu7OAX9U}^ck(N@Wi&*guw3>?$gqDc zPGnhy>*1q)0JJO)C_sGZu=Q^Af*@&KBK86e;3YYY; zQ%2KNP+0CRovS&v=7q8f*TY8pyv^BiP=Ij#$C{Ti29cqco<|GqIr95=p77t79cSD@ znGl&tRgNLgxTg%3d+|+Qf%T7i#yt__s_pnb%NXdM_|LVxk0Gw{77}sSsjt8~PQ*Tb zw_zeG7y3|pIgi=C)Ro`apOk_yJ&jeT>5O|Kq|L!a%}RMAlBsr;`q%FRy@ePQmP>il zIWHT}-4a>uS!X^ReO1r6C!%uYNSoKZl0w8SM;{KI*E8;kAXgcW(;0VpfLQa&at~eM zqt z<+0|K#UZMOwMYB%d9xD9=Q<}sJ~(Z+o^ek^;ewx6-^L%!Q4hDcy=NMYYdq_Bu4b$q(-A=-LeKI05YXm9 z>#N9kd272o(@o6|ri`Q%1m#s3EDKz2F_B5_khN-6C_t1R2^se9gkZld45s=gu{PmczOvD38|w+q+!3S@(d1DdYlroAL|N3c`Y?VkGCY#$>rO=M z(zzic_UVYi^)Re7q!6_n6d+vxy(D=B=RZ^w8mqu zf7t!-EA1cD9r23D0zt0Y4!a+Ib&JJ5SJ??rQizaW$#opvA*_4ib&oI+l?#2i75ju; z6@=-0tU8tNxEFnpYqpZHf<;TD#pw5xA@h(<+NumGESK`icibt1K2DBrGqGVMF=q!6L_A#K;b zFS5~hM)ZvlA_^DBo{G5Ei*wx<)Wvy@7CxRs1f^wrzS$yGgh4zt*_WR z%SLM~(s>}r)$DB*?NHBJu6m<9wZ|n+DO_glDPu+ig$T;4-*Kl5JqKE2KKn{{M%f<4 zjqaf*qH^V|y&d~R%ZZThN}XF?w0+a!M{Eqrmjr@b?#H69l%uv>^?~x#q!7`3@UY!} zx5$C+93Y}_!OyF2<4=!ddd{+W?RYlJFRK}A$2ek8TDhL_^tbTHA$JLe@>wl1UaDba zBh~AXZPWRvYcKi0E8|}0q!a|@g@}Hyb0XLdSxL(1ZSXI@lfrT}=A##;`+ZPW;nFCG zHLrTV4=6xrY>r+~rPjS>J@4ba=v@BX+7W9A&fNa?NG4VRh*0b^^d#PO1DHNaS>%#F zcFJg)3JMX{Z$*ZS=&{czt8gisFj3?v|R#NglL+9X3$!10GCdL;)k@|dcRL13Kz%Yj@YMrXK;Cp66*%r zu}`N=h^$q;-zU8#%T=3l{iELRlL&HEpE&1z!dns{-Q+q>z28TD6>DDPfff};IjV4(<);h{5F&y?1m$h#eTH19dU%lV*K2KBhx+H}N`L5J?z27Gh8VS@q0tqUu&P$E*NVynZFFV$}K$#GkNv(OGl)-W@zUdKI|ETx-B!XPE9kGI?^>b2)ICbg~SjVaN z`N&4ORIVIp^O{#uh`8nGh0u9qiu`_`M3AeD$LW3_d4O2+%5o1~;p5S5 zx8CoQh{DD3IIVfXw}VUQwD!8@1p1nCS0XAG{PA?ZPf`lPY%Ert=KFmTAxj)w_FQK*MKXTI9rGQyWbFgp zoFWl}0z{El_WQI^)aO)|t1+K_Rqyx7T2-!`wdebNl0t-hSL$55=cGly-zO2|Ds%h7 zb6%tnAs?K!Yi9vg`o@~h0uWKS;OATC_P=bdH4BfNrDn46tlxL8m^4ICh|qKV9zxa; z`$WdeYuNLCE%u3wS3rbt4LXI0Qo{f=8AKGWW-*ftuN5h52YV!B*uN3`^s)-qg(IT} zK#zT*3&!d|wj!(~THZ9+ZOQc?EjO<)vN+_T&Sm+zZa_q#Kim5aSw?>0;d5zv+|B87sdj0P$2L%X?^XP?EC+jEu@z^Ia@y^wC zV3r@be&_YS4FO6)n7pEo^)7^BpWte}-q#bVj6wlI`Uv#jfGAwbCcv&b%&lZlfN=c> zf{{#-4h_okTdj7id4Vz^PPgWjEo8YKqgbt)jC!|WBFI(SG3R|^{euXPQ9?$&+fbv( z`=oNQceS@9?>0;d5z_2fb(-!rOa!@#El7JM?-Mp!xXeOR#*7FG5tO%`_X!yu`*{C& zj1qlS&w1s@sa(p{cpuJdUP&RsW0a6l&v_++TxC2?cN@wBxO5^EKcwx}yA2ajxHukn z#6H{p++&njH`tDSItAqxc}rdM%K3xks!h56QSUZP1i7kD)I6(`TbgT0Aws&zb)0(6 zOMMk0;d5%OKB^Ln>oBFI(d_VO)LQi$-VCTw@l-qZfT z?z8ym9{YsO3m5!+>s;Jacu}r%oqW`I-aCGgjlo!H5GKxf6$%iGJy(Q*)|$`vmPd~@ zp^I)du2}6k{%Aw&TJu^!DG16_rSxYl8APZiEib08k)C|awhTv*0)*N(&?>+GQIwHo zRj!Lh`+{5lYCca25w{+;-i=;ptd4U;-0Ks8*dqMA1`~0Yu?aukV%t zNxykDKh_b*XTZr~~3!)u`0)*>7T3)|t0gHnM?>OPVFFU?z0m_8POsdXC>5SAj zYL^~r!g3Ga^eC))nQl zAXgcWZPtu)kfMYqBbU%=?V6bbLCTECH80DH;%>u~LA2VG>mT)Q!$gp)`otRhq_-qO zy2*8%y5^OL%9Z|j#MJ$6!=x01+1OZhn(j7Cge-Az*>j!M)WiNAcg%O>GHV~`Hl&Cc z6e1|E#6D#nM7bLC*;n;$!>kp#IBU=M`{aC1gnU=(yxwh?2y&IVy{vhWLWF#9+OFkA zSC$t&P+pXX!UaF?bB+J4)uoGaoy)i)f7yQTs}Anr3L+>#XqJf8fgxk9c~HF=885G4 z&vKb=YIZPWxCWi8ASf?{G#Ny+npjSEJz}58s&$AXnk@y_)bc=w4Er}?A4imavj`{J z2SAT~fjp#=%8W3b`;0TkK4H~FYdq%q zhwW!r*?xv&SF|;+tQEOxJG6ooYhI)fA-|IAIQ4Er#XjCAbQ*LQ}?!7!;OEdGhU8^MVYNtNAMXs;+q@qHY+ zVxQu6G5&r9$V}qrTE>3>D$TG(8Jm_ z&jx~&EyOC;yyn;^<_x0MrdUGqvr<)WvqYhFny z2(z)V>NMSLm15vo7kDY5?O;epx5Y}(Q7HX|n7PvH`qJ04L2zgL|aQ%l} zF_I}32Mx;dbKQW5LYWY`=A{v3=USOTO6DI_@YCGnI$AA(z=(%9s&@LPV+6 zoc9?rP_D-)(N}fNE3Lh9DOcltIInpng$R#PLPlNlN(8w$9_PCa^WyO4G?B=28CQ^?E@`9K@18J zl(&`l88T3=#(efwz1uKnPI7td6SJDUPu^{)NX98d$akgA?cD%(8zzEWWo|EPUZfD= zQBBzHr_EEp#ommb(_^2|dEtVeZ=E|EV7V9H^f;`4)VmE6L9W`4ddA%l*LVwwxa-v8u#OY4kKb*Wh{}aN zobLBYNx*!Pk_$*T)Wb@ zGl?Kq8IRN5hVlTh=9T3hy28h!+itzvFcF1|<8eCY1>X)Xq0`#yIWJHqguH~;s-E*o z87x=5kn11yZo@>7tNO%x#$7Fsb6#1lbd&2iJrCEuoyoGuB|YUgs_tbOgOj!k`z^8( zPzu6qcdR;uRO~aJ z^}A&`+q#h;YsYC;1BD1Z6VXvVt3{5?TiaKA0ggz1_cNon~c#ZV8TS>IMSz<5O^&c%) z>?3|(V}Zp%gR=ZwHz1-=W`yb7efu2ygjEx*@tEr$^=`wg6}f6V>fMGKwcbJ^^gp;}D_N_D+ZqcjkrpEh9q6WPA_j%! zQr>j8VOl%O)qItGb%pJJJY+5Z!iasmcgdwuJM3*yB%^i6h<$=Wgl6j0x%u|ZTkO`8 zU$DCkSr)mB0}*)+HSquFcF1|<8iU5vSo4FnlL;L$9Y2!YbT;mP;QYI zXY~)-emKY=T5Zbpk9xOZ&N$?%KC#|ysFu68Btp8$bsT*^LGh2ip}?}pRXz0_`-G=1 z2(#T>kK*^dSe7g?xSBs+!MEdX!<_F5msxwDH9UA5Vp52py!md!l%X*gzouKk)NCHHcU!EP+pf2-}6cY z+aW7S8NChtZbML5E_-CT^E=;t;*lS`b{hdM9|e&e{EPp5_T8k?gRRH=2Z zS z5#34#1qj!FAQ;I=&qKOBhaJoE+wYOnAJI~wOo&|bs&^Zv45B?ov0615^=`vNkgK+1 z&ilmr2N52lgp7K(p+=GSN#$bi*1HXpQV^!|vFbG4ZI}p;eR@r1D=Ar=w34(XS!l{I ztrx_gu-sCsIqwrPSgyw?(N}-*-TMb;+V^FD=U$%o2?V(`Hix|}b`#siat*7q?VfE? zi0~LCWc0aqb=S!IxIV~L#^ZFip*+AgLh(b|ZoS(u5rvE6aYyX4?aw_%vEQ5RZpS{I zf^v(z>6};2A1qhBkn11yZo@>7tNO$_?-SmV2xTxD*b?l#Ogfe4Rk!glN3hKVR#@blig zxq|hiT<1FZHTit}Nj3&!r9l`X289TF9>2SgHm580IXp6rkG zh=uZs3?d5G$&0sTtQD6mq_A9TdCRJ4r!@Xdh{E-x(LMm$d=3f_w;s0M?Y+j7 z<#!tz;u>!u5vNXl4c2k$-G+&%T3ara4RWX9FNnQ7d#obgidR(YhIvC2#s^E zRbBH+87xPj?$8r6A14V%=!I z+b|Kb#KC3Hbyia(<98ckz5|!6eW06DBw|p2DDujFpEip6oXT=F=CiNr-G*7K%9XSB ze79jzh>-6}ohyqfE&APti6B>*+sipGQizZbPTQ?_8_FlT{S+?v`PRApFPm%4!pAz7 zagAsF&ee>yLpmZTMCdtw4BO$~7wRR9uxSllH2SAT~B9qFV_Hm9{S&j5Zef6Y~iFdBP+9TPU{_Mpxnq*he^D^Mb`egR=Zw zHz1-=X2i&(&aqEeHPIT6x&Be_Hq2U)tF}X)A(^Bs?Oa!@#W~GX@=H+)Ari~UZv$vEnBZ5K%<;`~+rVNe8Kx@9rzN+WE z5>dHwq;1DOVTnX&-c6m?b6!~%xypE)?l#oy>>4CO@k82fz1uJmg^S~H%KN~#gR7y3 zwb#6lBU+3zBWyhGj(x%-vs|?)*FWmrhFL3eRi9YTd8y^@Es2nBavi6h^GZbJqNlFs zypmE7W@E8#G~aEQ2wCFbvgf*!BX25Hl+nFDxMb}Etr68$$^14%P=F}%$~mt#inu)ifVk7UN0mm-VEk(%|aJSW?j*A8*SptN#3!k)+Pz5Koxr^P;=JyV+^e<|IJ{M>Z6 zVN!_jsHV&7GU9H-L=-Nwn3U1m(9d~+!ggrPM=wlw8v;?dGzua+SnoCj1qhAv=!I6N zb+1{^`*^=QSJ#2sv3orVl!7pMMIR{x2+#YtjHZvBG75#|?$Wt6#q&O+zJ*KK1lW}~ zyvII+0)*>75R7D`=g~rY4z0=Z+wVKpyg-={r(5$%87$Xh6suK}QSUZP1i5NE=Dbg= ze-Pm@O30{p8)_7JpHwdPZoS(uDMU!KW7TQ8+b|L2Dz+f)mAp^ryl|PlrHmO76e1{Z zJMR-RJofSa@faogs-E-8kyE*ptMNXZ&v_+<2#--hMm^`12y&J2INfb158%>?Q2da# zTkkeZMB(Ci+!6b1`*V*`?DrjOUfuVJf^v(zY0ax6{=vD&S+3fY>mT)Q!$gp)`b1?6 zvqzY-zc)nP~7P-pYUe0-uLWD;(VY~Hi!;CBn7yNwd+_8eScl>Cs@SJ?gc-HTAH6zx%3I&M8 zo-4v6t=l}fJaw!IU39Z?^~}`X@uwOhvYcKo{jHfZDMU!d)_Ro70HSc6JhCmLAr?|l zZs`$Kr~gsjC(Ei_M@RdDTmLGHlN2IuJ#4+(d!ZrL?eC6=l?LaEH7}DLYe>%QK(AG& z5K;6b-gN^=hT72)fMGW;~MW1 za+N+@zTH-^F0mD?H`5ADiE@X-H}f!;>!Dwp!+ z*e7MkjstzxnMcuAb=P=qH?7_9(L95HcU!En2n89r*h7VzFn3$xa3{Std_A)&T4fo zd1|8D03l*$xsRufG23{bOg_PN&B`q9Vwp@t>Jb`U`>pHU|(afDe(w44ane;_PF z-`2eRZbL;G(LZU49;4Xr@m@O+g#w-H_ssj$`+ZUd(Hf7RdsE1$_xmJ*T(uo@>=QWv zBIH*#*M*Eg`29W_Mc#69)!zLM^NC+)vCm7|ZrtqMg0OKDnU|&Pb!J)8W^fhFHltNM z>iS3^RERe3gAw^FE2FT#8q`59hp3Qi#yJn>w#~ zpG1(0<8i*~&V`6SJBuad6plopBh+3<|hp?E@`UAnyYT5Jlcr>=QCruEu=!)r0K>=-C!6{h&O9 zNe=|MIBT~xVchSN^EnanU8(bWzfU5_Rp$1R_aTLd>Z$AfJ{egQF8KM@xg+nh9DjPg z8=U;w@vPr#7ANvPr0fBq=ZY{%YoE_A84=_~Hyc-EJdR&7MaW(^ivU0&g7Tbq$N-{n zo&4L|GQ3ux6a;!?$dDMzm!K?g?JZ9q?W>4F0pixf*1ORQf~*~E=8jpjEwjdRbQ(M)pU`sY` z26_uIC@h!qVoz$1eJ~DC?pbF(9et&5hTHzymEW_S2y$_x&G-A{7$oABqfdv<|B0Qc z*1ZF7ww=o?i(F+qPJ5l@0V3~{|w5JLZJZ!OCrSMkR> z3vi(C%j(;*q!1ySj@-$j{cs1mYg^y?C8BU~mS`?cu}|BdC<|Zpbq;db?N(IF^VwJRexIyW<;q!mzTYP)M96og&g=a?i69r}cH8A-BUX2~ zKhMtHkwS!gaN4fj0kQg@S6LMPu!^QT`1-%T=b9GD3>%A9(rxu{Vs^$LmY3 z+KxH)i5vhC@++CksAt?Yid;tJ%06uGwepFpzqDF;B(noynvL8^&HE6c@i@3>3o@({ z`-INh2o75^+a2gF#GtTT%G-*4h76Re`6~PBPVB!XPkC(f}?cuOLro6Kd{T}vC?xupA+SQfde zr`9}c^X*1+Eh$9EdNL>TIE$(6KE2HgmGLtB8NQud_B>_@S$m0O28CQ^?I~kM3KXT(g)3Li+RIYUxF>}O`L5J?J>#ATa&c~7rZestClDbYoVNQ> z^KO6dd-f0h$i^VcA{YI9QwQ=stMR_Pocufae0*gyXS{6-lX)Ldh_L61FwnZqgUh8O zFY?%%jjPA-d&e)$I9MY3AFaeCg@{ta!7dp@kZbScv27Xah9HIQu$D&#Aw=k3lR-q` zT8;Kq#Ik?_#I1*|4|nE$goynx&gD92vU?t-${>Y^#pD%ztR2_e5oLj^^pv{f-iUC<9nzt}J5TuU%Z@YdpiGE-n^3%!u5vNZ59pp0V8TUj~F7)Aa#yu%SNarK- zveYx~i6GaOm5kVjmPjuBo-$191rd~jD7E4@Es6}3d-jBW+o}%Vy5swJgq+wx5AxkceB3uAp<%AkMgFS>!6?G4dt-jJrI5>zs%~SNN!P z+pT$@L=-NL$0_dvPX;cb)7op^2b2k+aqhLMXWUZ;%T=2)2kAdkNkrv>Ki0Q?5AL!o&fCpO=&6a2 z^+fKZeedo->ySUx-X^jvay5I4>`rrWk;Q2i-YMkL?ga#z z{e0zdl;wRilf}EU&z$~V(wNr{am2_c5Yc7{AOtX!@;;Z22w8247+!iBaqx7`D=9>j z8hVAsexF2;OBRzd9MX3Pk-~PcN0vLk$L=<~HSRV%~&Tt+?TrBUQ9uUzQE_CBaQvfgVo2BY7Jkj_WuWjg1T2y$&%Nr_~_O2{R9 zOBqtOvUggQA*CQnt>)Ng$UwQ8ud=V+|ML9h3?e+L3EQoCpF|Wcj>m;roZ{QTC3IRl5rr}# z+DL07>RO8ze$e*&JjUL(DT8RWDRTfd@6)B*j6<&K6X)0`yd@FRP3AIsEV{YSYQ?fD z7yR*J-@DV7Pd2YNE0N!gEDjN}p2(dn%e}4D<{dWYX>|z*ay5I~I_Ks4uX2temn=VJ z$h$H22}(hfTFtRf%y%qTV?O(;p7Y9DRj!=17v24db6!ayLcS|?Ue9?Yf?Q>8FZ+E+ zAwoVlZMUBD%E+Q{!OyF2GmEo#{Fx&PUrv7Ac-HUrjXv@|g#v`o6=7o5n$P!^%SK-0 zu{Rr6kIwdvUuKBD{;5j!Kgt>;g$UL#xVsD>3fIZYw`HtbltBvGQF>$unGu!inWKFG zv`8i?MBIAVdbjsNLs*UUN3qW{M_$Cadd5Sw?QgHn>wg;p6e5bATH(78UN7$ZL6hqE>|hgzG=@KH671_A`KsI=|zDTjH{{-=|QZbN!xg6Ws5^ z77~5&WSD$LWQwxfLsz(` zc5AOE!xBNRGJ@MY8|S=4iJT0%gwFAynK=-o%!tesStb=H!%_y(>V?c2)RSR}AXoLG zb(JjrD-qI7W7&Qiy2dvB-${iipC+8czGEb9QD8shiykV`%$PK?dpicbm= z@{egHzh-YMdI$L}dt+f)k}mzs6$TpB!G);}0V0Z17w|yx8`6-DWaaR^h^2 z;`;EvH4i@1W3`rB`nvJ#W5wTn8tAZ!d~-bddOvTt;*KHT=n zBtqH@uA*6~qQqChMH`a`AHNHs)t?bx4N9>}8_l%DA%kVHCamF@2m21}w06}hdGn6NM#eKG)j8TU%x#DMV;)Pb;a}s6>#9BX~Z2CZFNbiSWoNti7H-O9Z*f z2yXF}bmG~MoDIk&bdC?r%z+?fMr1aso<2(%M5|4inW(4F5<#x&Md$b`{3{XCO=ei? z=`)itPM?u0J@|b3EGea2v$4nr&9@FELY6qVWcei<#rP_?nzeT>je_`Hn(%B?#8*Kf zLh`B%##ezTT&&?%d=+I$Mxf!F*mVDMZLWrj_&zeak1ZEOM3j zVfiJCmaeu8;SD{$3Y`;CXM-=8Z~uM!2H|G-UB5l4aA7WSeMB~DIsTk{V>$V(@vPr# zHj0R#>;a+Y_}yjL-)oNIyYq3U@xn3J$tkdB3fjb6e3*zyYg4$(sR6d-+96< zaoNgWkuoFl{hawL${_mUo1TTtL_M#T|4rmrJKx`^mwwj`QWtOdR{FNga!Ij(U#0HTaFz;)>_?d;dB@V_rL?BRYkM_DqBThBCzRY>OaWhPSrgPj0#yca?kb z?e9Kw_8Z2Dpu7Qa87Ql8HH+!;0^$fz3IaV60R3yV0;2TW@|@AWiqKe#mJ{LQ9JN|I z&SRhWE`W3OuTn_%CcaRSQhKdAr6AM}>SM@g?TE6-r9O<`Q^bg5x^y6R>fDfBgT1WE z_3YDrn&Veh#+MPVQ8Om=GZ5Ck!X#_{7!?;M%fvuV>%zj zT9K=^qkfNGqt;tUg#1c=Z$fz`n{V6MaF$iMvJbaopRlWfFrCNuE!s-MFPUx_ytn+7)ccY&T`dJct++mP>ise|4aJ^uC84;{fGqzRJF`J*fx!Udk_aAXo9nTd_}gY9eGk`Q409*g422Klj!M&bD0K zFP(Eg+vA1#j$HP8%8=tFVo->nyz*_1A_L`W%x7QK@6l(iDp$_h^I83*5Fy`{I`6sg z&5vkz+mZ-!ac*Cx@6pRAy3UDcK6u!!eY1G=A8n7~Z z?s7Nli8TwcuN~uvpb(+w_}zIOWr)^t&qk?+k;{^vB0o2u)lUi$lovAMtbQU2msv^5 z=xylV=159GphxDj`iUt0)@$Ft|o)${mj2Ui*# z&?B;-6oknu`WP}ao&%wF3@+(ow+vE%*r{`?na4g+R^?JQp|`2GLI1dw1ceCKe;^pi zkW0^D$Fls^rmb}~Qf5T18*p8XGKlsV#cI`L)U*0I4#-v8G3R|^#e@itQ9?#NtFKYy zeNwsDyY+kYNht`^Y^*fRXY~`Ikvh0&3r%&>iLZ0gu3$@MZv(xB7!;OEd0Tm(uq)Yd zpgl&3zN%;SvsUEN+!glL_N3yheo~0=7$s!Xv-*i3R~e7fo^5#m*B}v!AJTT~p6x^w zE{w-rvCp>YnXHkgNK{IqwtRk_hQ0*Kz7u zef5?5U2=K65}sNyb)MBvPfdhuEY^*drJmJKMB$QmEvsbA;tUG8%-U0i1_%*@LPV+6 zoc9?rP_D*&_EkNrpEGCWQoIs=BjU|5#3jWfiU~NBe?X z|7t!51&9wFwmytrXsnKNMC@sHF3*cM**n*xNFhR+E&5o83?d4b`f#U=rjMYo++8|1 zF^YXqR^fWyY1h0!0mAhkYhKD2#C}ofd9=`;bIr?tUv`|;2W3KJCRI5G`4i7Gq>MXH zB>Li;o{RO5a}6PX^52v%L9NJD+hM+4Ct2H$6jF#db?UiT$FUs{<14O2R4(-4aW-F7S2m9WHmRzE33+;a3v=v?1qRXqB{HX9^@TxC2iW>*`ukAA=5%R%lyLM;P zO7W=fjbd4a3w~aG8-FxMU1{&jef7n-#Tg)V*AqoYE(jy_m{*Blt>W+R}t{m+HpvOLu zNoBb{Hc>09k^WfAt*pqmJD2OA)pi4YI3Q}(DMU1R)W_N(y&X{&^(=kF@4bBe)AbP) zB6jI~8&SBPH`)ggt>vHq;rfr3EA|o2&+5bCpg~!Ft{V_hC^KSYQs>wwteR+z$6Wuo z(#D|9zdl;0;!$^U)pqDUK)o618;7J2A-|IAIJ)az=U=~Qb1e~-3w^j1`-EK;gz0>& zI_bMhSo1IHb=e3_CY>h z-(4~pVbzr@N7{T(QBsJ|yqh|IpUt(pKj9g6Cm=^HxypFd{kuA~bxe0BkV1swhqPVW z&#$K!NXA3h3P4Lz*A=6xK|Vw@RazGQdo6TX(^s!h56VfQ9%bbo^G zPM{wom$xr`qU|r)yw_r%H;$;!DMUy&xsGEe6gK)_=Q&wc<)Wvq_Y@_C2wBfqby|MU z+VHE2M|EyuNd&o?z4f`vJ)FKr|I2O7OL2*}qi~tErwn0;2nrFDw=8#m-~O?8StRp9 z)k>o%q@!Go`RuEYSUi2o+VPhUsEEpyv-WoE6SEo-@?EL(y5^N-k<0y9=-lp2Sn2)* z-JL)R5zPk=+tsZqx<5g8ClFD%;OAW*{&$aL`kI%=43Q(%`-kUb8}FKkL22c7gguYn zo!Pvc&*y5nXU|l_$VN&}BR^;N`&@g;2l{u(NGS-)>oQ`^3uS>zR+2J$8~jUVqyXV# zv$tuwrwC=qGep0&Q4ra|n?7*(`hWbN{C;X5ADse(#^&e+RchU9)?%N?#5z$yM7i=Y3-Rg9wjNLWbq^ zSMRd;=j}GvvaHI*-qriy`^-DMy4_Qhl!7pw$GXwH=9LKPe{juKQu01S=irjP4Yc%K z5Q73lk++ri2^lQcW0dHtdQXv!+HSj*OSzhEJ&Weryr(EBM0ku6GPEiqE&hv<_wlmG zRmS6@cXRX9$Idn@A%zIV4{5u$pJ8MB8IEZ`0}+Lb<8epqv+d74MzP;xO?V@vXw|Y% zP;QYot$C#%BwB6C^^eb5J6>k@2;Zdp!mZr!oaFNMg%_RkKH)8ikZy7vMY)~apKm&Ot~`UrU0Gtmd0q2L1i8xGKHX29aRLz@)r9SS z(Y)JFS+w++9{Yrq6fXGrWqE+<;?9eI@tv>z+v0R4n*ftNniC;%Xl3~#sg&` zKl$2LD^gglo*UxFe$Ehf=fLKBtmSt;=)BSn*6>X){^Sim_OhdWoZH&O=HS))2QRhv zK~jkLrWbzlhQE82AzI6yWFBt$s*k4DnKnsYxN? z=u>aI;dlQyWW2~C*I&1`yxc}D5#;)=t8TyHC3lC6w_2<3HpDNRFCk?{+Qr|5Z^2Y}G0ecYWw71D)-d`-)uZ_2|Qt@kWzDu4Vn?QSLS(dbd!3 zSk_M*=vu3a0N47fPJ>w14@k=TzT>%+)P(G=RU(%4xdZ(-)e2neGf#t9Sl{*E8eCs$ ztrD@UA3D%~Q?0_;cBqPVidn{7=e{Gy!W8<77 zl@|W9e{toF>3x3OX0_W4@f!1Rq!964AHDL%^gcgj@tgg>d9isoBFMG*<`>+UUexv> zw{Mfb$PlCu@ux3(!Hwxff7|A$+w9KpAGcZ&L9T!J`WM_7Gtsg<)N%m7XP){ut>vT; zv8+3yd1|xU)yaqc;yX2Jg@~Dq=!$q`&mmv;Un+uJt)wxlNydX;b@ZKo`_DQeD6EM+ z=d32gTfgzOSt}rdOEPj+`K5bd&Z|=Q2 zC_t#+-u$l((dOE&^ObbYvdAS{xcG@7qw9Pnos&X@^#9<;hm8O5>iuKqSESnHqhc(?YT%!p6jb5U=H#?-mi!>>5|er+BMgho_6Yea1$UfB^r zAwnZK&^~G@BN5;-kFkxA4Ed5lG0z##Us|o?YXh;E*B;NUT9zFgEst7}OT9aOZwR%+ zYlX7R4@SACM-&PW^1Fe~zLJcJ0GIjsicmZL(H7##gG)1NMPxfrmdz!>Rb-cz7s~%n z*?E9TStS3zfdyR;BcN~!Mvzm2sJkGr?~6Mef{K6vB`7FSkRYeX0qRIp!Hi-=&qGnn zfgrH&yY67ZgqS@s->H~A6b00O)!T1%e`}bz-~Q)$Sl(xOFY z(4sSSVFK&R*CnE*Y!|H+5`2Xtw67I=yDAH`_{vEW+`Bv;DB&wI(NZP-k6L+xuLgy- zwW75di6^SEK#RZk#BnsQH=>#0REl$s1Cd}%@O7}v7{**h*Sp`*%y3+Kg)9;z_}bUc zK4o-9tN#`K-b8v8E(B`v9e|rF%{sbnA4x=8n&D7_1Yg7ZS#&qLn^;J*+)$d~kU%Yc z$MP2^%^tg-sT;TKY8Qwd_rld-o2vnhK^Dz>|G?( zQwkHDxOC+q6*;>e2g*V%9NDDwtk^(rKri9h$6r%hZT_1LQGx{bw0kC-s9H)BN~>1A zs|Xr@Wy6}t8xMR6j3b*WC;w$b^agx7h~8t&VZZKj%mc&kO?nq4NZ|8JWBNU?=gQCT z_&gbNBv1=`UDpaFNbs?LzUvu1GoTj6zt`sxJZr%>HS)ZT=SO+Im&}Rjvn)-Z1PPu| zC4!3+sKwWeh2tD0ipc&@#D*rkR>PftbZyeLLdiX2e{{WoB^h)7iAy`}oJJH%kZ5-8 zk2U_y&w}r+Umz3a!E)J;r5B15sKw`V ze@E|`Y={yhIMQ|)4+1rTS{!Nqjvj5G1c^-(=w2<9w@cT4Jhy!CD~(sM4J1$tquH4G zv)*uL9F!oz$KKm-c;$hWcfMJZ%!&DgXyF{=TakDPd4}YqvR_G7Df`94*mpP2 zwAsTDHn6qaCdqZh8fpS1NbtvEqm< z6L|lDHQ|w!`$R|3K{n*OZ5L~FPcFyp)*T5M*sN-~Y^WqaY+i9BVo$rn#SeK!OAxJ717mWqAZq!nKld);0uT0wqXrkI1Z) z=u`Rp(S+72gLYVLOBmxNil7lxXM?Pz=nfJH9zoHnV~)FF-@RWK~GF-#m~HDeywBpR~PL3!MiE@s1*a;4wN9ldpyf5 zk?JS^QOiN12-??qhxsa-^pzsK7C%)lY=d`Zma8JJp}XFp_7y&Ja?3@61lLww=}Y73 z$(<)qi)$q%*(O^=_Z8Pr&N$fXY4H|JY{(cOVSiOXu3nG7;n^7#_;u( zT)kpDkl~e#v|o6U-USH~#d{aaLM=X4HnO&E*$^d2 z;Aj?a2k#LtK87{a1WJ(LUF?1De!Xm2`M>4P3;GAOxFmnB9lNr8<-Y0t2TG9O<6_r7 zUc$8!PsEaTY=>A!f=5=(3|Y(Z4Cm{MTHMo8lD2^oBzR;C$2k(H#osH!)ruuDi}JCX zIVnEmdtEDz50N0jUgBs#_?f;ZP>bgkIhO!HvnWT7oL^Z>&gWc`I-jSQwILED*k0lD zIhKW5+$Je0DL!kB*!fE8%QbXoOK4wOAq%ROBVp$iIXmMu9QKvcQY}xf6UmBhITC#A zuQKS_>q>d{iY-Si>~-A^_C6Vd#E<35l030U?}7x0;=RlMDrKP-AItZ)TW#I!d?gYj za5RgzgQHe_3~QKw4M$O%wiXGVOMLI@YdBA!7Tb`x(X~Pe5_Y~4FG-m!k2y-XR^o|R zQgItd@W_f!Cj^zxA3I-3eNl^hTE4fs_OBfeks!e%TX<$rWq}rdUzljWZg+Q<*|u$W zcNXPb6L%JcYH@sc2@-X>?V-}>iJsj=2Dr>Khu`JM{o-S;I$G}T~Fnboc3fF|!;&F2AlWHZk(h^T#9}2+#Q$%4| z(9=Aca*d)1B>`fG@yJ?^-_iT=;OKJYs-E^%Y<$S5A+dSI?l9*1D%_8=(t_B`zY6zJ ziv%D0>%{z8NgSXS&KO>wd$;|%U0f7x+qR33JIZvEk~G0Na3WDew?7q)b59u5QZ4sZ z^z4H~o$7`~ZTP-Itp+8#`ZkG)EVq0^*{*J!Sq^i58EIYZDmZi1K~Hy&!iic$NSlZHJ6G5)FIq3Z9swr?vi` z(~pPJQoZ}9YyHz&wk~~w1Rw7(i&FJ;@1hotY|@UbZ4Jk{?-TZXALqW;t*#I_9!UJO zVi%~@1J@thQJzyHp|l`wj5z_`W?)1i!NklA2~?yaj~e?glOT&+Vh})+gIO}wRuH-U-zO}lk8X0awOQVT)*Y@l_yY3 zWo#;<-8$pS+P2L&59e%ku?+zE6-pG*txl1MLZS|8LHqJ-pjLHVUv5zX`^o^(proE_ zleU2bYHcX1=XyjFC~4TUUXc;hp6JITpOCYJG5Y$-6F9H%_=}IZT4i}=P!j4NDYxM4 zLufX}T>>oaMt%Ww} zT4Dbn!QLAf66`U)9i*KtL})GFZ&ue6UZM!{W9hfz1be$^ zVNWMSR%~FubIeQs;5ca;C_!TL3ggGdEQag^Bv6aL_jAea>wE?TN|4~=!q*J>glOSB zR-hf}b06#ZcBdh%Z2=<9XhOmmj+=JrT4c}IInhUs*V2(jMAlO5iMzR{QTD8Vge{lO zQSy|^Ti~c=EhkCNWJ0iqrpJtAEtgM#7DbdR$tov*ZG1RM5_eKA(5#zHfTUJfme)#p zSDr0e<>YVLS5D#yW9sEj>mv3%l23RoJvK;;UcD!cRJx-S-#a^d^em&`2-0uac?lA5 z=j|;dPE#5L*jG@`MF?m&)f) zKEcmRQZ4jQtLzByT`V`b_W>Iz#WsLIE%alvarU{L_#fA5+qSN5er><5tDCPHlyrvk z`Mxd2cD(!dY2{3y1c{$kbcOlKH-!9(-o?9lsrndqmBDo3>nkMz0&Uw)vUd2%gf9!V zxK=WE8T0t`(aYsJ5heMAJ16>PP|MK<_nUto3GGt^wp(OmJ0p{Axejs!9oSllgnQQ!G@5c2O$aKV zKbkP0#XTY=SzY_r_LY+WVY+qFHc~8)0IjXtI{F%d5gzl7&PQ46|8LBZ;99A-$f{Ou zY*7n5A1XzCg(J10EOa%*k<|oBkZ9O5g!s_c)ZVX@mKt+?cjvtU2|nH-qOv^ZDB)Vk z)e_g%jVv@odkGTUBhJT)5~#)T;XM)OM4S!S^JR|0xsrCcfjJQ+NHpx(8G83gntdc^ z0twXOW7SvGPyFF`soqD~E2Xb$7avIcw4x)}z`G(W3$<`o(odaHf&?G?dDphVwj-Yq zEsQj$pXHY0NbwBkMy*y}f&})uvq1;iuTTqTK24wmiQ*$@^DOOooAV*%Dg(3koQ-T! zt0Xhi5~yXz39bN0n?KZ7Q0~p$k8)RMNLyX|m;8$I5aqfJi8_YqLRaBPpjPsI{tAVp zRwzNj+ADMohXiV29%)`XAlDId60x><1hgCp?p^7T|3QG(4&%XCHW`oP?3Io=5In;b zwxP;Gt;E}5%+spbx5yF`b&Sq#^LI2T}fkJXgrc^0e9t%TA3ZaB+E98 z@e*6Ey-!F=a`y>bANxsbl}eD{8cM7ry4ga6(!zeT$`(wnmZaa2uz7@qdKX7ZX%!uh zvleV|>-m1#vc;_cOxCv)Y&l94k^QAsD-OL@?d}KbK)H3Z+ltzt=TvEZQLEw3+g+Pn z=Vp1#7mwZUR++Juo7WZK>8(yLa>IG%Pnn-MT zg8NFecx&FHci+9tLPqpY;|lQYN7WS^AW7uMhOyp>~nE0 zpiHN|3#>9lE%fQMn`{S!=nXvnE<=c)ayoA(8=brjFF~T|wcDXqr(>2kl!aR8J-SvX zL4uE6{yreuuTTqp8UXSVeikOJ<>!7b-wSH139gm&i6ZF9t>k4DC-|wO)2h|8B}LHl zOGkqdzV?A3V?i58EIYZD;+^uzZF_kxVS>O-||8zo5alXM@0xNaK>r3HNm zmCEZYB<$1rynHx9b?>4Uj%;EhYc27UBHt(M`7-{s8xJJx6KJVbnn?Fm7m_ zuwC<$v;!qb@UidR4{3(`wX5BkBA*Z~jAq+rX*s{)k#XiXd@d$1ZUE5{r3iX=TZ+Bo0YjWcVxn4ns@*c5{P=azekBFLUZR{~J^ z{Luuz4R>0#@^(c~FF4v3?`-(lhu@!z7LScGdR;$z0> zIQN9of33(uFl!kglJ(j`<`M?n^J9CE9?`_1e5Vsy`C56zITz}oHFsT{5bc7(yCSOB4P8^ zB%*vnbnl`T*U&|9(qv27>^A8W_I#&RtMNd>W}!)~^iEU$Y@oDMMCqNT{G5mcAN$_b zJ56aqv@n`|PuV!%-HkKn^17J7NCQO2AQGHsU5gk*E%n~e8(|y%jiM@-@~n&5@C4^p zix%fVyEci5tc~-%+&HtAj6d6!*c5>Ox3v<9BFLUZS3+cyzj*}L%4yZg+mYa2aI`Jn zno8zGsTFGR*tj++0{etBzI~iSALhlmmmtA;;o@WYaqbDFRjb}b!seb!MEQp3@jxxE zp^IP!vXxqCHwd`ff2q-^^y%``?y}<{a$^oaCb43AknbrJ}@5o>eZK}w079b+g6Qz*YDqr z1RocECX-Ky7T3`Ev9vsEXE-n6UU0Jk*cO2Q*R@gv^|YFOsC@ot!k|{I;#?6l{>p|m zkw1%q7JH>@Q&Js^@O8VFu;;t}sa36z*u0`KjE9bMf1XfUDx!3p`#BK_K9&eh_PK+# zmYNVPjOMhPlK=R+y_xgyt=pRUm{8vC89Ra!2a4$S=i0;|YSDhkQj)h|y#ypc)T!RL zs0~k`R)doLe4D@s$GMkmDBI8Vf>E{7aqev((Xi)!FdjP2J)yK<$A73);=6ulennP<@1NV#J59f)oLzL1dYG4VNK-EC7{J# z>DrW3$08i(Uc#R5`lnX4LgJ?t&0swAb-SObm6nPqeckTQ21xL+L~ycB7U7(`HZh1=wA;9pm^9=u|)9y zCPa&C==@latc`Oo;a+etQL9=hf_hrTAeGM__7dL?9uKDl@o#nQUp+G*!Q<~}Ks13` z?3J!fOk^#_*X>@yp6~jnR<%Onrxh(=JanA<8BS@bh|+QH&jv{Fu|#lwoNGd~Fq&chOh)~Z&D==K*+vk@wv zKkV(kRtB{&(yX#0AO?Zhx~+AQ5yYrPt@i6$yYUATR4bOqI5Xj%kx;Gtn0v;~3?fkk z)li>?+Srh=+l}|k<;xEUv8~hZjh*M>1i;c z`^tb8_BsGG9vjM9xsk$A`)Nh%9lbrvEk~k3Nh{|WNNXD?L4s>oc&0`|Y1Phmv0Uo6 z!Zy%%xpzg2$4Q+H(#BBlLXUDg#CN&2;?s#T^%H-zwL!|#(Fl(8(-;_;AK z+m_xrB~XGy!=A132+L8P43vdhJB)c237OT9;A8pT>J}qJ3%w`N%?g42&SxBdu7z32 zDqB!pGa#{f#lcW3eedkcQd%ko^}Vy7OOW7WKOXv>mnK9D&!W(b#7o*bZ`ii2t@A6M z!DWuo1WJ&o)2&_6nZcK(v~b5wFv4?*--}Zb)$NPg@Pq-a1|>)MHnEMYHN@9fZC$Lj zU)L7K9L`-1;A0uh{Oc=Ch!)pS$2m14 zYiH3TTx+?1+>8UelS0GEOYoNv6+t~MbC>NT%V~ng!)f7_0T|J}iv*9qql*%#g(C|9 zwFA9jL)j6&f56}LuP&e`BGItt5ilP5s?U3((yCSOBEiQpcjcm}U3kaGzD$(Z{+=y;`tl*?-+YHaJC;GBb3wy!oXE~yM-U0r;+1bQ{qy0j6eFDCQzaXYE$9sT_m_2 zPK$cC*g48ekl>znG*ruuhm?g{JhIXz0B8hN+J5?@~YUM|(RG+=p(qOLYA;wT}h^93%dk+Dnk&bw!#;3{kDH zEY#Xz%(F4?GX83uY=tbCoTJ1Wkg)5@q*i!M zjb))0e=pHYtFAC#6eLLSvF}~HrpB^R3(um^jKoWNIB(dxt%vg~y=SIp`0VU=z(m4y zJFe)=;0dJ#zq{rw*z*Vcb{>{n-Lr@d{M9!DS`A8ixi)DVDA`cf%k_dPDKE>y*9wV- zJ$u1;=<6#_D6Lxkh8q%mEPkxpfxoGTT3kc%V@G7|Eb1lP3vR}#Rjm|3J*{RqDxW`m zj)Gr!2d&!eVag-u%BAsl$F}&?hAIoR*ehL|lImED&x2mleq9gOKdPjnHjwyfMGqJc z9p`>0Sk%I}$&Yg%A4u?Vu{hU+XmJhI+@6(|^Y7ruFM8r{{_t<*d_JwvDmwl}Ci&e@ z{tYIflXW`zD<{bgt&qlFnS$SQ+JSJjLJ9r?6xPtTK-z%>YGG{?U2g;0p$Y%Hrp^XY z@~dxl1t7O6UM9Q4)aFuG!A6SZ&n3J9)N0vvosM!@7W%Zd z!8vKtTF$?7F~Rw81!E9*u2ux)_!W*pBsjy=X>l%25gQ;uf^rod4GrNdOCUgt^C4ZE z6oC@X#*|)AB`E?WNZ3r!LSv4E(o$JS-bmVxbj*=Rjth=?Vgrd(%VwBDoU@rM&sQk1 z`J$;-t!kx+BzF{SQ2G4P?XdZxV#DV~T3!2>36Nm9N$x1vNU=Nuv}_(J5LvN-5}Pmj z|5Ga@lI+hS*`K0StBAsK zZH8%Kzw&1_)WT>^yD9mP2zX?>BfnV^No!mvbm8335*ZQRdoKE z?}s?Gm#%RPZw#eLUi{Mq_q-IFZD{4vk64J2&7=#Dg0iU=$h z37b1wsIQPvTHL>JP-)+8VItH~Gb0m`N&w{nWF;`j;H%YD1KRTk2uodKY65wRSkGIUAgZ zDBi%CdE!^<3&b3I`4Aa76?$5QTg(K_Qk+riZ z=ONnG+I&%IxzCMs1RbQ~kr4~DA-6b zO`w*|FfBx&H*hwlcs}}DeyzM;Az?E?3y+5> zkxGzAj*CQ;FAKG7PLV_u8Od5hl38OVHc!SLC*xGGRwzLt@wfb1ksZF?<-8?ZuFXP9 zYf`J0D0Li6Y1sl#R4%d2XUn-(cYJnI?!ni~ zk}I-t)BEIBy<~H!cdXT*R~oNy?MQ7P!N-NqgIE@7VIM*>^7;yiQoao@L4vcMgf32?7H9QHn;enl zc5pt7TnV$5T;pO^k0a=STkf-WkYIcA%M}ShnPriWuX>&5AA^szX**IB=}fb=48|M@rKR!!>OSSioC%3qB>1@S znCBCs#Wj=&cFoB0n4^SyL1G?Das(aN-j!M@f_hr!m4u-3`J)NW@p4+V%5+i$jlZL9 z@y>?NbYi~}E%r*+rldL+<9kjoVb6E{Q>$7b!I@Rk)5e?xzh8?PjYoGq1>il`IdN`?vXI3)Pk z`;~12|J5;wS{Thv0RCUwPz3d~ia{!$Kbqk2a9XvROOW94ceE|u+3+(Q zYOzEvieviv8X z;JhWL1@Uin?ccl@1cEb!3XdSp0I0=TFEakx21{g|nUL|X-7KmIs-eu<+J-6%wQA*8 z+*eXA_p}`6+wgvcTIkc7P?1A9MXp>pcWFYm0|?4Bax@@z1YP8S7WR4qWGzMn)kHjl zYv{(gke3i;vv<6Qw{qkBzsFp>fpdK1n6sXoJzJsVug!ESs8y&|#Ax4DdY(%B9?&Vm3U%IYpwySv{^zY$R(f*&HvK0k{|ZnENxT)fEEIwMcMgl^=6`ALYwZ zTIy_|udjSxA;HJR##|Gkg(K_Qk>&Y{Gl8VF+&|I_waau;1ogC=yVwYo&mW!>eWnwS zhtsOnRR$6~{*JcAI~%@tQH#COwMh}^4crUj`CQxo+Y^!C%qr>W{Hs1+meRr=G5V^{ z_Z1R+?ET6&ME5Rg;mCS@9uLkbk=Al%g~SABDim%xN|50EB8e_-0|})?Z;=bz;5Y70 zg5^@KNnsm`04>gEkv8dCp@eg0q!(04fN<~nS|P!?KgGt}6H1HUpSw4sdd$592|g}1 z=9&;KuAxM;Yev?_xtDM+xR_A2a!eAn-i9Kmr&SD6`TVhc$S3LU|c3?jQ<^+b}@rxB8yZ5rtZ> zoOn`hM!iDs=uv_MXGXMdQ;5Kta7K!>18H9;?kkia!Fd^l`w9uv;;ato>BL6XTC!P4 z-V;x7p2%~I^J%D-jwl{M@m9e1jo&NeTBR~&nH9+dqmd?C0H)kRy?LSfm%2=n!p(3@pqA`{K_*r&XM4m z&(REIEu{(6!nxAw3V{+NIIpv?4J1&Dk7cgZHc)~D?=M`~1``SUg!`QtnrNPrf+?a#O2^8h#}z}wi(ALrRX0<`G2 zObh!i|5mh<(6P5s>W}kmAOTwRyU4C2Xb6uWNa)zxDDlU6Hjn@<`i=EsHb6pJVuQ1+ ze&ce?lLm>^&h`iCiWDeB#Avwe8B|Q*8I1mEaZPP z?wwhV1Rp!C?1WNVq?(ES;6nrmMhlyt04@@LpGNq&}o>0Fme*fNj%aK5>I@w{lfn9b>Z6JY?d}06- ziH)~s&WgV2aZ!B9TSqNNf{&dRjmM9diVY+TNb-pvm`H4-BN$&vHjvMQmoR~8+M7JH>1kJNV)LP_!nKOWRiA-8^Q+-(^WeC)I+y2QtfL4u=J zB>9AROyaWQiCL5F?|he!g|^=p@?9m#BfRfEO5=Uc>{-$9nr_Q>EZ2JCEo<4f_%0Gk z0yX6CT`w5+TlU7*G#*GOt?cQ3oD^X|l26EJ8be+Z(Oi=H6_iD^)5@L!zN-n4?&Vzg`-e?V9uFj-Ss=oqOM1i zV>?djY(Ow;rII{CMl~8Sja7kCVncf4>94DETf(=oks-p@#1Z zXcU7z;`AN|$`yNj58q%5UHSAa5OXo9aSMUqdrS;BA|@E%79 zrkxgD$;yn8T*&|dl02gDT*7w{((imMJ!+2&%_S(wC*0VWE_B^<)n&7yiEFBpdmJoR z?D3t2#J^DlO4tSx;+4kuJC>QrJ&u&cv}p02g^xibP?AqbbQ$CCSU75ZS$yoYXgvH} zf&|~Ch$Nqon0F&c*P=X^c!H0e7LBHFN9rXh0g^nz)e!D+W+wMIt}H57w5(UkT;lI> zcrM{MNF{lM^t6kph+;6g#}R^QrjMeU;|Pxq<#6V(bONUT46LT=LZ z(hS$om|Jp_;>)YM2AN*7qCID(?HE10dY5Y^=0bZktWno03q zL^L~XR)msa<0j;Oyot1k#*&Qbzj07}?0*jn9{pj9vVp|d5fgH&ZlGFq8cjA%`(RLf z$mYX>ZQp1Dwf;Ue?dgQ*@mjZd#aB&&BikGjqXdcbPo9w5Z9dho^LVl`^QCU_>7O?V zb~#cLN^4}=BMI^Cia6SR=(xD+C##RSsq=)~m>E>o%af|HM-^>uUTWe$ozOJsUotR8 z2@*Iq##}z{u=s;pN`gl9yM{<8Emf=b*VT_7I_IQ{4)q4c1|&$JkD2t7KD`41wT?S6 zZ8^2im@mF)9X)W#j;G#Yw9{PM!ff`2~MRS~H5{82-5pS7c1 zG0NGmzN#}K{;lCt!Q+eODBt~8kD<9+%Bdz}22`V08dLG@@c6yoRt61@nH!-5iMzWD z&Fyg{(H9LT8}B}SQhd-}OM-q=wkZO&&?}7@v*@Jw`Je6$F8*U%gc2llJN~iq=y=i2 z*9Q%^w2YBJE%Y8^KA%<^UsZ2N@akQCl_w&B{btPU-zUf4UOuF3&24ico(-}OEU7dT z22|tBpyT|M_2yPvZQ&a~j7D%G;K|a$DadqFh-J zD;yum_v_hrkx-I6BC(M~)Q7XCM&{2am0wEnfds}KpH~ta$zAG-39ma1Y0T12r^Y?&ZVe{fGA}|265D=1Gk5E6wBK5eOqGmBl zkihY$=hU5A#Y@gC3;W-4RfGg;4SH^1u2-G%jM>gtG9{B*#l7d3g{R#*FG2|t=*JWv zBg>*!CSI_n@z>MhRrM$4Uixlv@+4)@7ZY-Q%kNH(-)lTEcVe5nE6rUz9z$nNjn@9_ z!`1aVPEj$4G{(O%O`n|;z4ze}Yu0U^tY!uzw2c`(8^_(|G_6`YxvwIWmYNg4xw?Kl zuFrRCM*P)YGsp~wMCV{)Zu>#hrek@`?^;7#qcPu$+U z>Yn49s+k&z{RU0UP2Z1f{Ef%_sJZ9IAHCnB>c)?jsIviT;hD&o6X#8iul;p!)sK74 zRc9O|b{jP@_k1%Nk7+#S{Gquw;CYub5-!-iQxZ`n=bfyMk3NyUPp(Utxay0^;li$S zBi8!mYLd`(!tskftC3^=e&Y=KKDh!oz5g!DAJ{fIT>9vogb)c5eEb^|Be~_r^`B6- z@7rgE*^=!$5TeC4MojIL$(He%lRuaJaaK5r&YUR0a`{*j-_NcLho09e&L>2Rzn?aO zYIQP?`F|enzkH`}E5p%0woC|-V7Yw!EfbxXIACG-^6j5B3itb|?+%1$u?^k34Tdxh zFJEK{kzl!eEZ=jxjrk}YK`cvY!N^*I$2^-i=1B0d_<}L#_G}x?KkvS(o5xLyF}5?O zjn7T_WI<*2#NpK#E5;1CV_7usw|ddpdyb1yg2W4x$LDT;p6GuLt)}M;jqAkqy0?r@ zX*WO-sD-g&%y%=I$ICW$i$?vNiBW1&2aJvOn${pj2@+S`H$Hdjz0{5|{m91BjpO5WFHeu|`)+oG1ZwFR+^fUH zc;UK>qeX{b6rlu(++*W&Ywo6Y)agk!t~utJuDvEr4H~za62J2GM>Su4)G>)#95ozG zW9~fbl#0H`v>W+bo)=@> zJ>Gk4?&#UGE6ou>HO2~Mq&)Onbit2vq6wdz5~Bo($>)#FbsaamGW&5y>fKN7Z4@7U z>w>7!^o$}<3uA@u?)tTl|2Sbu^iWl+7$r!&dFj~P_Tf~+n~owI7cJ}&&;Hkw(ajs{ zD+0B2%YXf$XFQ_M@@U>mbz+nt(PiG)+|5I%9Z$3)8(VG|5+8lp)6vvZ?ud{;E$nq; z-uV8Uxcr=4w76uB8V@9L3&-ZnS=5e~4<;LL9o!)}x@Cu8HqE;mK7X;M=1%+6pl;W< zYu@W+uVkD4=dGGoFQDV(TzmgL?ZT(&-=KTvL=Vq>tEOZzN$6aA$x$!XeEqAvKVNk7 zTQ&1T&0E*u)njZlKbUEN=-8T13uf9LpU`AG9{%A?K0!_VKQ2-I4; z_^p~LH!+465~#KO>9=bB zm_zMI&YU02DhQ#(%Mxun4xuLa-y>$Tv<+xsd4wRG>^ zUHV$^75)3IUcVS6NNl?9#hT^o$VM_AuO8YV__lS2pe>Cc5~zhEOZS}B=fr%fyo=O(^IC0+k(Y|QZ`J>$tg zuZsS(piYbuB+&Eeitp(zaqAw-qKB_)tO(RPv(xC@${)s5X1CO*-ko+}yZGL4()4IZ zwVKqdPsQO+9u{nFGClsR!_zgN)wD_O6i2ssrl#|tw#o74?Q3gppGkX1Kgnmca~@q^ z@wZ0x!og<@j6ZmPZOwqCBsq6{^(XsP)lB#|(d0{-xOCzt6_Bl;XO6sN2ST*4wsdw*&*x3(e2x+ zb%{=9h6|oMAh>@^uW&|_rg1(YTG)ri+F;nBApvcq_Y785cy#_aa$wrKXUdC>z8XfHv}c<9Pexjix?DzoeAP|F{kIW~U! zs{5l8R`-vB(W7$JM+~Vn1D}jB9$y|ZD))R#`u@qa6j7UMM#Ymy-5>2b=<*09NMNKH zbKip}$Jf7ef0RA=Yek^ebtjF=bz>Vlzd<&RIU|fuUw(H~bw-mIB}ic0&=uM3e~Hg| z=l1Bjt?d+nTECTz%B^otHm>-HZ0vX2r_pm?Wup`K92}zr3EfwFp0_DFV#Q_A>4y$f z1Zw@c*{Iyg4B06Cl5Frt?jS$fuc}f!oR7s{hyLY-ZgOmi57Il9j|N;@Et2nN@BOqK z^O#FXmXJFZlprzn;~OD9n3208Bv6aL7kk#m$LU=W))#At?en$bduNm&fwnDi<(rMd zhNhn)P>W0Q-p&jXB0++W<$G(R7NS*V5cm@#*Maz=dk>=x1M&FaP|LE_oVN9KNclx+O@JhE|MgURv7=QWCQOU_p_ z9BSe0YRtczfp9^@nh7yi^S^dM&_P>l5EsHj%;-9a9`E-zRiOl>3n|3n&&I; zKe?Tp&nw}4Ug^*0AOC$pbj7hB1T}O%fB*fpm2y7sH2%d(xi+M;HV^|>E{PW8wgf*_ zCFgS|LE?++Uaa(2eM47`soGSww&HYqK6eCaVQr0R_u&4~aaUFbH7%#8b|A6-^A{`S z4uGE4HY<(q?b18^;4AX>HES#7d_MiC7c1pTzwfhaEB*OA7+D%0Hm`U1_RF&(lpt|? z_ZKVumHt1T{VaO5^WovJeVWEdpceKaKlj-d9emg^;h&cO5}^bMx+1UiSNh$*d^gI} zJ2*V$=0ntYpceMDF>U&M7(G(&(KRRa9vMG6bY!meQ^!`Cq1VLd?SJo(e!t;X_V&!W z=)H$}uGxO**cc^9U_2T#edi0~?R{FW?iVhIejtxaY%J;?qxV(MNWXt;GTHd~%_;GK zU9VkJ`pJX{B}kwj)1C10%J|Loy}KTGc&iu*)WY@|)9Lqt@sjHHRf7&FQ7uOT* z(H?)X_nb(emYz!)l9@m&n93LB2RmRJ@m6l)J z&Ut$xK|*_bF#@&H;~F#O8nQ8D@P|>)V}tT92fCRdksyKbZ;8DtcO+0NJ+3kD^IWp$ z(*2`@FRu)Kq?vl~pWmzObP>G`<9CfP25M}~@ee*wHSGEWf+y)o>i0u7R?3r9r0MBr zrGJvT^4341o!52`e}5@?lIkQ#XdBD-zA=gq`Z##SK1p>1YL&FuSm~dnHk(A=erxaW zkBV6lM(XI_->;M>sTf_x3~OB)*PPfpe5u#m2qj2V@3gVfKS}+^=3k-qc?ZHw9mvSJp9Qa~Ng9I*p(AR>?t|ig?zhY8Bd3(aNT3$a^JhHN zy~Z5FSA8uWsf=4)`dHWOA+2JRAfY4bFgkyX8}wA?nRNa@0=3ffM~&&rSFd;VS{L1L z>5E-=+k32>krN3Ly07>;T<)XjjbcXLBK2JKStTC(C)-TO9VETMas<-+y(akXj^AJ@ zNuE7TJoihRa4_XYA;Gm0E&krW1^DC9#mCgAH*s@mZbvOXmZ$Za;CAr)!E^2VL01+M zeC%y7v7dj>sR+?x8ynrb)K;gBUB>S@N89(DPJ-p~vAh>C=F`cge{!);!pJ@X?AutxM<$%K_ZJXZZ=sbQ)Q8;FUds{YRXs2-M~2@*O6*OdG_82XO^ z;Y&TPj^=!EdS<6t^fv5^0o4Pa8<>%Nj~>+nGd{m$)E#>UM~}Q9T>JiPet+)9eEYio znKwVDH*u8dq&@MsTlWkWF8o{AGJ^g^$DSm8IwHRku`3?{Z*p9A!GS$qvj&rW0z-xOrga zEtlyubI)5V?!4o`U>?~(2@+_J{A${;pz)R829q;`6oFc=JTfrjGo3QK4-X#b@?9{w zbWn^EB(UEo!}LFo1ba;C6kbW0PDr4Z_QZ7^9}QZ++bN9hZWf~i2^@dQjaqec@IiP$ zSaD$|MW7Z&fie3Ze|NC#jM3rSKh9V2fdu-oF@5Q&^G8q43m&JZ&ithL(F4cUm=haT z^OMx-AI8*Vf2&`eJ|nHkuIH!D1ABZLwRk2QyxV4Qj1nYp#xUmMGrx?EyyUXrxG4h_ zfm(WIxPShr`1CuL219yXE^n7=%xj;<{2WH+V1AxF<*hL_W)Z(Dn*Y?;`1P$zg3Gs^ z9-#yYoR8@#>hnQ7dDT6^`(2tO?~0@>)WSB=8^!NVj*tD%J;CU@-$p1w0_S7utIu1< zH{Eo5Flc4_^x>E?Q=%jE61L9e9Coh zN4d@@L1N5^2^pW+zjn~k;ayeN1?Nx}5)!C&&H+O+yB$jJAd@VlVJnXgFDbn~XimA# zC_!T4$rCa@vwz9{rQvS3o*B%cEF>gQ>&KmkW_<4Xo!6CyolZR~Xh+vRC_#dRo0!5@#{ZMp?8o6-+6UVL+>ClYWa;~r`fY>Ovj*_-$!;EH@hbL z1?Mv?rgxCb?z%cCqj!)rLT`9ci{J3xK7{JNs$I1vhSPiJ$4_1x96;}#QGx`& zgDyFXYV`(ZCwyFWPF#c^jVOh))mb=Wmbd|B=(q@+MqQ?#`N1bD6F7$ zMG>tlLISmLmPpnWg$L2PqTgs;5lWDlGBq6!SyvRwx*{Y{3wzp_GuL+uKiSkI=-2j; z7$r#1It1qnbjG>juyA);^K)B+t|1brg*{DqOIOzqn+-mx;-9pxNJ*ev?N_(8EDx#{ z&hNShtqel~we$!+NBKT~J0}+`O7nfrdv|_K_H@d>f+)i1qIF(FeviItJ3H90`IH!E z9L~kM;FAS4*;9w-%|1`Hzc+gRsD8ne^UjNL{y-wl%c{vfz*&<6Z*3n}zI{(n_mx(P zKrNgxj5&2$qqxbK8-vp?%&55pi8L>(#izSP>b`gq}PpEv~76Yv29JT_dJ^q zClVw$H?I2b1vRFWvnKDF@OsdwUCHW)X~hW6I6Tf@|M7mMp|$fk{>h4w;IS*`Co4u! zf`s-Gek#%HhsMb|7M94W6eQSo@_n*aX7cS*gJ+taRL&XkD9I=MS{Z&SaeSw?<@{s< z32YO`ie#}yd<>s`-l}2r^aCYG;M`?Qv)?9%eQzC7b~L@sKmxUJ zMy0d!+vDQ_l@|w(e=n1Cl&T@g>gdowDEEHD)@`yZ3aS7(bu6IN0gH zi;|3Ak)ZdXS5l7fQ$6BQZHEQhcH1Y(Di#8@IHUQOgUH75oZWWkr~TqJUC#|3o6;c3 zTowru7+uEv^1X?t&S@PSvF`vypcZFl_iRJ$yN`3D2EWlfK6amqpys(8g0A2uIxM%9fUEKy_LaMZ+%tb9O!qjT-z$>Evrb*~C3 z_Z1~b(3ofZ+Kk}w%J7yukFC1>xt1{!N=wDyd6RmF{f2d_>VINW6;ViZ3MOX!8k2e_ zG!7SjS5h^6MzZeC#WQN@mVa<*{qU>GlB!dW8>nUmBxuYtem%~rr{@IyUO8gT@Si3t z0=2N$jk)!lvf%h(7pys!*8HFZiGg2C$jJJiWCWvO*L~EbF3oVfYG>_tixY3)wRY1V zSdtv`nxEwOU0y#}I`#Z`&!J~jJp5)dg1pwU#!MMd&Drr1kG#5uiEM_~f86?y$??X| zx>xL5e{Ql?MkGk+s6FQ4%6RqCV=H>SWLHiKp|og~P*STN9E0O8>K*?$qEp3ne@#Zv zNs!P{`{qfF;{$#!skr}AyK+*>LM`3$L#EY_H}op0IO_O;$=aoapguuDN9_fx=R`Aq zIHGIUpY8f6Ay5l@-I(U1%A&{4zo2Wwbk&xO2NF7Jo4-3g+^6#5=%{yRM;H?|kB!gB zss!|7W8OJtVmLcOB1(`rWWo51U;i=gClh{ndFyCw(*cS=E%amBr|1oOuf2CgRAuKx7dc2g zKY4t{uVZPtvQ2PC?{mtYpk3v~K(E(c?OwWv@$|1PNZl zoz!qLUo*_1)#UHfYVs<-nmn1|P>XFO#MA*q(0YSV)*HOE@3@St|EO6wHX~~cI?o%M z@oO5^4*5NJqs{E-1AG6Gku@LaOLUi!@vAw;9DZ*wzFog)_PFH!!%2`puQcZDJKKky z-@Pa5{Csl%;Rw`v{|Jvt*MA^^TG;E9rMGo>DC==hf&|WX#$0+~`>64I zeX91Nd(MTl7fQ+621%syt`QH8EzOz7CMSDmTrj;fmrbJ9B%gF2Q}9=e4~$1+(mgro zw+-x`9OuoTa^Ig+&AT7$F`tfmjnA|3D(%UU>)ABwL-)?Sw}eLBtvZ9AejtHb*gncNc&a=a63<^VFx|ODT8;$HU6k|s^rZOOsB6?@fZbJP z;%!uSTCs{T!TV2azKOn1R+;WbJGacL?iyA0o|Wt~Ard4ox@dnN+J|MqkB3Fe>3Ip3 zg<8Cu#F`suJd&AVFzv%K`M-xn^}pSc>`WmNBrxXb8366W^3J9vQCr%F1}g}J zpnX^-{HIB@C+)+65+rc8qbGNB4~zG{xg@%1XS+v=j5BIsPt!U`yGKeD?~$S;;A7ga z=y^%>+%5Chq|Zy7H=vdt!OIqH4eqA(AJ5aX*P9!U&d90_dJ^JhB0c+DPQ*RwiV-AG zYjCI08NVu}ORIKa|LzY(-%V^4qXY?@G3eRS(_O+t)0HnspwBn? zsKq;0e9^9b&h+GS?U%GW%pQ9!i4LVVCMZDyBOk zP*ij9xr#t7ZR3l+qoe*SS6977cU~w#qVw&;at-fpnKR@)#_WCU=qPw#b=4;FDS(foWuX@OH07kO z+ZNpS#Js5ULwYX32!8O&Q5nDHr}=H42G7#UmlJ5^3rdjKUN$P@*UIcOa#Jv4`DM|r ze;KF<)N0ynRK~A-Ib;5)u(!11*tTDp)H|Dq8*s$l1OQJbLPFHb` z#7jd)W&BE{eV+@$FLU=qm(tr;EDN=;P4vdS`zhfIpWYKSdHw4MB}iO*(x{AIiA3v) z!n4zLMM$6)_JT1l*ZX&L$3F(dZ&QBB+%HbgmCWjxGusAK^R6L1>y+or?gOiN&ynYU zF3Xwkc`j*r$DYy4!!L+;{XEGp;awwg=Hda>zpv|`d*kztx$Kuoeo5~A8T9>?OuTsO zp3$kd{w=O|Rgz!gBuJe0T>sqr|03IOG4a8MdeQjp^tRpRmpB5oC@&*7d}^m$Hkp0S z9rjbzDdUfiFMBA-FL4qi)&DmG{1PWY;)=)n=P17l<~5X50J{Cqd$cd-~@nza%BztG=b`;o!iidAgHM^+FmcDhsuEznnK#)AuiO zt#;e%)~cCz92i|mHc)~D+M{Rsmkx^_x$4`fL#5qGN6JDi-Y;kH2V~_`S z!m4kMX8rYmxXFZ0$=*9cpcX~}?YGqD?x^>`(ec7h=BxNX0{xh-sq0M+KfI+;^kH;9 zXVAI%W7TydGqOGgBbeTQOr0G5wr#Iy$cQl!N|0E4`N)i4!E^CdgTq~SZ4q7b&n=2T zEsS~EIdbC};pO}7AJyBN{1@g7BpO~YGUHbwwLR^~@PPxHNB-%+sR-24Gj&Ca7lM^v>=J$R&gd8=NIZPx z$c(J{GW^K~TPMc{($lqcXNqLL;<%H!i@)E_^Hs81_V|&d%lH3$a=fjF-I+opNbs?r z;SN1*Y#HTp#=K_@mW5jUy`QhRRF@&CP%=h&!46nOw_?lObTo9oI3ChN{bh57KlHCV|myK=MrJS<7kw7i< ze0r%*WQWKCD%Y5+tyF$ts~xRtX`2TIl)o{OY82!O4GraZTMOV`G#cq5GHd@>QyFcdbrVDX{9X;Mn@G+dyqCp0z3jP!vhHhMx`2+8^I*@r9;oPZ#R1Wg^wgPm zplN)%Jr^O(yT2-Tkj16t*7Oj=58U7XB2`AUP|De5I_I$K?ynSM_?#@Y&(4P2RwlwT} zS!ulArOCQGN1#?$+K1)Z_o*GDIihxbr!?&IMrquUGUHK#g!aU`4PFcG+4Z$(3+=;# z1ZwdPD=XKLjbtu4|M}N~kDq@n>b2PJ^&-BD{;G){tvUpYTXl$d-5pAhz`2Wd*r0u0 z?rhy5YL`c#7Vq`4_D-r*auxo^$sYy_et)FvkQ3b*C-L2MMoreuVB8pUQ_pol%ZGb* z{jSwm6;Vi}^KQBl>8;WW!@nNey35(*yXbN0`6^jyfj&*UC%rKx9QxojT~}>ORSJEFG8Re)|TFkKD>YMz}(8{c{+2V1PSd|&6<^l>yPOj_uXpudiiBNwS&$} zIIr;jEZ06m-#^K7$;-n^!=-b3$9H~X_j(Zt5;(`uQ?+%U1&b>VkMG^f?)4%BYVnRP z(uc-OJZoFiUPOX~o_*f<=-uF7+YgE_`iI@?MF`Zwo~BHWvwse*tkWo% ze)gHkb-S#5!I+@D@Qh!N^Pko)1Z#fYIoSQn(Y(6GNs!Qf)#92C;j^<_1g-WxS`nyq z65adwbw!W;+A@5*WZz&`y)Z@z66nVigJpxmmshn2rdR(GA%R*e?Q@@Webl5+&j_EH z*CN=wPu&a9cz8l$~cNRMmB0++W z<$KBmd~sV)_lbGIvGfd?pK{6?6MoYqt9jBV#pw#3`WKE3AGqQEVCwy+C(mRga?&?3 zNftat8hLs=Dtu_n{Xx~(%T){_!B25z4Gq2L9DH&(_J#X{Gf((N5vYYT2JJ0!Mi}0{ z{O({S?Hh#>B(Qz7qxGiN;XfDN9(?m;dqtoY&Xu&ARrgPW!E3X@h_-{(oQQ<(tLgo| z3_4A}EO>6(Kt-SyKY5WEoN`!p?NfEkLx)AZ=zRWBho>vQsIhYiozE-bd|oMMRAYi= z>#N!~sTYT*+r3`o{K4Zap3i%|05ScOszZO;D?aCOyVr|Ikl?im z7bHXrYfE_<70;~cIcaLti1uzn36{&pe)h>c-Yx37`=q!nozHo%7dfA^miR00&m!kw zdV0RPTlDMHN%53#?Orb;L4uEcL>=Z`jFm|4QU+>dT~(P zi1uzn2@-tlXNIpoX&N2ht6Ti+op!GmDGRmuSjL7jAn46#Yg%K{$?k^8Z%mRX;`f}g z5{2KA%9<8q#;rLg>_Eh_o#*fhH%FirdcHAbB|XCrX{}5Ny{|kiW0}{ekB3Sr0XjKcc-}uq@tNMzrYO zkoS5??^1uiws}16y5{lU?Ea!of&}jYzZTs?_nhVT+Pz++EYzaAN$A~&>%SItYw%k1Z`w}= zB}nj&F8;n2M-U0rQX|W&AVOIM!C6SM3W76_BwIbrNJ>{)l>cc-uxan!!QU=DFXp^1 zS&4#vmF8llYfQ2a{T3Yg-#Ni~v@0-5kU&2+rt02C;U~8)2zH}gfssJ1G#4vfW752T z`*3NWCBdsJTE!?q0wayqE-ma4wtWA|U;*t4j09@wmVf#~&+v~v%Y!MjD= zd790~{^|LwGf$~nbyT}(KYEhNJJ86JRHS(a8hQFjxoS-_QR%!9@t%w94m2V`Lfh!w zhy`uO-HdXkC~By>B@ zIlWmlVnw&OwCN#=KrJpw-iy$+?#NA5JB@1;x9;30Aw-f-_z^s`XWQV{@%L5SK>O)) z#;>e`zKVcc|^^&~1 z%O^yOzxTdN^~%nq_k*(6i%76sK9=uoI~re78DB%Yq+wa8#otfiw|yh{o^$8LXO+{+ zt>pb6N|4}V@oCz1s8O)|k?$MDZ+@NpLWL^}wYVhj?Od<_N7s3P*L?kd{A1KgmR}^KTlJ52%I)ui|BFysG7ROW z^XJ{_m{q$E4Xfup$D&R_V0+ZtU`INM)MD+8P=j_;$s=arrtI`h{BZ-UhV`k?t0$Q-gg!<0P*^ch;Z;iJ}iWI14_k>D^P*H>NNv z|8x@{b|F+FP)pvapmx?7M!p|zn-?3?KF<7c_H7GFg2al$9h~$!mv>Lm&FDDOYV@Bw znC`4Wzfeow!l3q!(hGSl1I%8VcDNhRejk(|L9b{z>2)se_m4ik9y?}l%ECYL-dUse z6rq;9nMUmcqHkWAo;Z&DmxV`o@2pW0BrrUBS7!D$v*(!ud@b!MLcdT;-ZP{20nxi; z0pFX!?JR!K&vR#uk|2TkMxCyIF4li}VR1afb7zerP^$^uo}~5x(OJu`xmeue!eaF@ z&z&_&f&`X7eI=_`o=xpgN5s(UT<8~S$=jOLZaP}m4ld6cPOBramjNoomy1XZa=)5}FqEiFO$F zDIp|i7ralBkx)G!je~UFc@3O*_W1>Ut?U!+^x00X?wF&(+O7f1EGNXQ#2d?zrBFIs=dPFUl4u6V6;9?l4C++L%c9`^;!sl<%bb zeNch~mJPL!iGeJ9L00}Yr{_Ky)jBmTEmq$9WZd#T85}>5z&hqxf6&ZYIeOknxO=V z6^6@s=ZQ+k&0mw<*DE^B(gzbY0<~KG5bf+$RfTapdXGEK*}?32V-k_G8t~&oohjgpteT{Obz}W5gl~a(9$m(>W=vfURbjNCGe(c7vB=bo;PG4WvxdmpT0*ssvp zzAL8KkT%)e*|LPz;~;@OAFYah$s%gyUg&TwZKn~ah5ZVh)LVR+m)$wX{52|0>&cM7 zT&I~#rptU?-r1(VTPIKp`xV1*otw=MHoIi*JQBxHf&}I|o#EX#oBI{GV&06?3Dm-V zh4um5yy(vI!eD<7jbkW5LNAY5y=J&mI~HKp>{c3qTGE}~U(v{vl$&>C1v|VlyKauQ zRIRoNZw;5ftD0|*Wg4L*NJzK(-6o8?_lC2r;gd|1NVjUWTSnydxjn=kFF_JZX~~$N zTMy$N5!)yX^lQtA=?xWuVgLWJLV_}9m!kDp>3*eay^~jlN{22AzFFk~%)G!e;IZ zW9XNRmC};GtNLab2fkgjyXoEntW|+%n@|!Yq`Q}|_mN?YNodF(CYFDPP+B(O>#6h7 zexkz7hVK~CVUj7w*Qn~H=^f{VOu9Rtztqr(SZL3j?B9pT(clFUMea4;A=*r`$66&p z!sBk&&}h1lh;>AC8{2=!zimBX*d^4!6GpG|?G6~Bo-pj0nmyvIC!!A#FNnxE15ktv zqx<viX8kXESi^>CgYV4h*+fHABV?+$R zJzSKU(SOJ9T|DXNeBP5n>90zY3|r-hCsxjE-F6J7+(k)7B0c37j&>9)N1oYnx%w-O zz%DRaK4({P`* z-F6JQXGU(j?eeI#CXt_95V|wgODMl2O*a)DFqZ3cc)GQ2Rw5t2>XV(K?z^#4grx1# z+$dx9HN|RvnN~YxUy?B$N=r|9n=caiz>SS}1_yfx6<_pMy2(AX`*IJ`QM9~{$X zXPh?-B$SpURF2SBnNqjS)8AHNtr7y*!M~y{HOCo!H`-Ej!?*%2D}7Z&b2wAY;jovH zZZ&2gZ5SQP?{cK9NHCw(9bxw+s!znei^gCpeKoOlOsu2qjV5O0Lx~!JTG^_*tonJ> zOuzfw?;R;MvzwJ@RfG~Gk{iS#!-B9tKUY_Q8pU)|NM?KB(yne3QsC29m}jo3)(Xsp6G7~a7g)pU;|gjPi; zL1JyZ%d*>`y(-F2E27^ERtfW`RS^=X)oYWNu+tG*F47!#H=cbtB}E$tWqGL4l2!m# z`f8%m!g}Vz7V#{3%}k9zExpVqU-V-Mc_LWEFEdS)AVKRLD}7bu|66v}XjTL(UFl1W zKrOu{#wN62q2v5mt`1+Cngsl%RhX5&x*JkFl4Yu$gO$xaOCwN=X3Lhc2hg0l)*v={ zTBNz|<5?zZ-KplyQ5pesV*QVU+3L6T%r_-Im#aIUUr1yR_0skj)w*XKn_jb)S+LX# zjX*8xA3bGmuZsL0TsL>8RAR}8ifgSFbD?oXIy3596~*nT$g)4WX+}OM&QO8`#+J@h zI|7;G`VF(|w*eY~T5}>?ma?PJ*}f{x*@a}oT)L|mLkSXkI_5R4&q_oTG1;E78i87g zZM`YCS4B(rcXf=|R)vkERT1_+SjVtmp>M+HCY!acnQVP{37b$eBqXrsGmIlu7CPFV z%fhUja`1(?AOv>P562;Brw~A~zOfX%V$MG>+Z@_XCr}If6~kEY(qR3sU34T4iDM{1LNAYX zJqoa%(K8&qr?t`u)WV*K?iR^$n{QfHNp$)=K&^zGM(P3Ewh*?J=8VfccDUwq$(?Hp zjcOrfYw>1raiT%Q3ww?8nMD$svB>%7-+ReTvq`z~Ry3W*DZb17E!pA8X-Ffae;U~!shXiV6t?qJ~c|1PRIpHPWyDQer z&hycTgAyd<>NWlc3M01+!(rs($;pNJP8xBLK&`P8UC!ydiJ;gT28}qJMjW>saZrMU zT%XUTcbGisIPtNQzxO!Vy@Ey@Bv5PkMwgRD9B&x6ogMh|CVSjTG~%EH34LBdHaPxC zo64z$X~aPSwd5>A&9&$?4`(D_b}L@|H8;gBK~-upr%!L9n9w>w+MHUglIf5(vcHej z<0qQMi)^cAY6NQOWj^n?pSV*vLi9a8)3zrzitkZDcdaD4yOpzqW;m@ z=QARx=94iyXpneBwz%=t>=DQ3*R5*a9HqR{iT92U7S0>>_<;}X5y$5j61Zld+pNg4 z-6DT2UWhE)=of0q8M$48_S)dR``3AUvc>g3Qe11bm_O1!Q)?}y6O`h(qWHPP4#3*=;cwo&=uaon$7dmh=YEi7WONK z(db`8EWUEl-JI-jC_zFmk6k?qh`~)}xW~|lg9K_}Ph_tLO|^oQGhx*)Nw-=F$uUZ; zmh5$usn$^_K|;FKn#x`enrb~LC2B<{-D*9kkAt-4G}W3DB}hoOT8rxG$VezHN!V)x zd#2y|i$qhcAf-gbSGrXUF@5$b)tpDGRJqzlNk$@l{Son`3M#``&eC$KuSdB$#&adrQ+14l|P?C|bX?xyImLjGsML1W-nZ9%@tC4NRVai4(CCV-)-F8fy(&WQsU@Sr z&?V`F3{MZE_0uY%zuPk!C<$swpVTPfiB-bg;o|)mkJVYtcci6Rxh1XUL>?lMhyq?h zNsy2>Yenl}$kZx{w6`m_jFs}qLyYu>ff6L7tzXgUv6AV~iF7UbdpdD={G#9*ynvXV z&trAQyy|&@#&EI-Nx8shULh-IMnY-H-}RIup(N<ssl#o}RlhudqCj&`a>IC6(B&+_(9&i2?RX7-lk-nj6Zsx|%=I{zS4GSaoXg zze?J>6MQ`!wl10n`DnwS6_F`dMsigo`*XX;p>+oK^K#XfzM7yFkttV3a#e%`YPFi? zvi_EHczeY{Dv)YUMSCY;bFi zX5}B#st6@W&}_+4GaSR{^EBBpq?VIQI~)?I75xL%tEwuD$*uM{W`uX(AJM7^B}mB9 zRCSt8rIe@=mXB6O(hi3NYDu^1iRcxKoAK;xS{W5xnqv36YAlldpc)ON%_)5~aVR{V zow-<#_aHkQmNRPUWnQg71WP;VC)S*@cPIF20}@^fn|D>TVO|8weJ{KCwV1s-!AGE$ zUK3{~_^~JBT8OVAJ$5)>9rf7ZY=5QQFMW0QsAdjUrbMJ@;jg@|7Z2gDYP=mTi|oso~ZmnLb_G^x9tpObFwqkCp!cBg<8_B z`V|_T$5o=&Rj>11M~iE%7V}5iXVgl@FjhRgX?ECCQB?ZXV~0}`Brt5l2)}Z}eBcNa zQ@nOKMWB|~&g5N9%$-L^w<|XnWp@`-)gr1IE&5M{_X=T)aRz>I+YDu^1gXspd zO;y;1I4@wpp#%75=oXPM{X{D|Gto{6)u;{|s?#u*W*6dNL&R@_5^BhGToz0wQ3h zy*t6z_o0?_r}tNKlv=@?@?wQXiAL^dYkz}sPGkA-wACRIKDYe+hkWInNgvDmedOPA zB8qwmB|(DT5ckm@;#&wq5vV0^CQ)H~2o)>&9=VcGOfR*!~SXhwgmSIFJ`SY41U$KMk6)naH zlpyhE1zHb&=xP6SqUw3F`StqAeD1}>4tLSt3{o)V`WA&C= z=915{@Etc21WJ(5!??gx99=hm!VhiN3Do-W$7rjo?0ss>-sj5YX^tshHQ-qfCJK}w zk?TaXmEYTs(LS=HE6r+6YVb*I259M6(8guu|CHi>YLJ#DvPSg@VI`L4M;r;%T0r$JGMZxL?oDC57u|`C>`;skZvKd)1PROqgEnq|!k%6Gh@Uu} zMIeD%qv?yH%-y6<<%!%2H~X^#C$hSG4@=crEw)so>1OUO9oem)#<}Y)rPCbHI+2i8 zBRh;B`RYR3h=#1izGCh*y~+zDP)mtL>bXO}syce=(?~)@qT!lBIiCZkA_b{3h^&4}&xUwXg-#m$FSY z*{H4Gxch|#36vnAmq*7s1=zu1o7__)TWJJpVGE`&yj`oLeqN|4KUQp%%w4DI$#6`h z{>qu&U+rz4JN0O4Q-1jUQ354MNO$_2VS!_NYL*9i#ojluS{T&MovNK9O>gRjly?8y z*IyhOrOz3V2;Lvq#gT49lMGKT5f#pwU;<`B5on;L|p7trH z5vV2Gyo^u?Y^~ofT^91R(8`{LyiS)`C^khh2n&^I?0;7dY$D>&_x%}>^;x66xNJi;6Uen`F zdfYLM-b6YSFTR`HCpBl;wHkq16rSyqC$D-X^|r&TfE`8yzi5GyjD(#Fc1@(Z z%Vl24x{HK#E3HQ3yK!BzV}2@*Z%i@QzRa|UXIb{Mh^B7s`cZKuN~;=2@J*{2pT z`{!<{wGXWMJ89%Rvy19(p?E66OWCurmv1UC_j`H7y)G{6dB@Vu`dO3Hz9x&{hY8f? z15?tzp&fL27m)kUF+?o;>9l!&V+U5X+icz`nZCqyC%^hlNjp5(Wwq-^bn7V^Z5U}Q z2D7vrW6b&8Tk4!%TBS4s zwdRmLaZ+ib^UE1>RFedD`ciiDZm`Kwg2XK5vO4vkbkvcvzA+)g*@G~DGjc$@MxfRy zvc0Aar!Wr58CkI}MzWyO8y&~ze8y4hFs%nh(l_&@OFh$c;uyuM`v&3IGC7u`1PQ94 zmMlR}`*;}<&p!V?#W6sv(FoMSUcxYXE($cS{5FVf-7ueH8C*KxvUU$6e<`Q$?R8n7 zPawA=h0^hIbW^iSXgnLzajHh37M4HVUoxPQd1G-CR^?i8ff6K|Z+BVymr@ux$59xQ z9yTyLtPN*h^(dkdsHNAd?P=dsh%`WTwAu7SMBPoo*^+U{`Z)aid z-fc7jwKhy}St$pI$T@gj#?Gj;GBM1i^4Q@Z11vaCR4296DU?Uie+Wpwp}y_v^NDxkigi|9Bz4bb~f`B zGwDI7Mxd77&f{xmWqtjMnQ@mt5hy`IPsgFPXUrP|Cp-R3=%o>;g<~+;$kxzhAQO7t+kicHaFiua8VGlF;v7#lJMxYk9dBd1IJBrOX zdfDu>;}}N?5}50T5m_plH5`4(ys`C=MxYk9e|qgEdrMY7=L~aFo9qH5NMNqhEzNnO z*rHK0%!FlGH3GG;moN-AGLpG#A9n0oTUek33GC`wl0)iii>J8R;#7> z>(ET|_ph=ElpsMh)Y;iL4(6FMQrua)(NT5EXB-LC(otbbo_;NG$#mFM!4oHx| zTsMqqF%9^Wu*R(7jp7=CS~Q9}(?{pE-K+5IL$b2dN81RLAc1w-Fm^Qv;ctF5Sl+sA zH3GG06m_PL&WD~=}+fz1G~nuy8(bvcKm})Ckn-m`rD-ymM`8 zQT20+b@f}aW0eMRlpujM#-6uxHE%}(wGPd7In^AVY-Fibd97~;vvu{RaFif{b=ok_ zeS6hxd$Bufx9<-(t_`A|xvVZvK62Loy6}FSqtZ=N4U)~UtHaoW-q+nILE>ob80*I@ zrJZT*3hyTy@_uG6{(#QnEIz3bsD*Q1Ivc*Q78|;~7P~j{KR5b|G2DH~Wu3AwWx;r);@Ip{N6COW@@teR~el^ zttLBMR^yb9yeT*6FS!@JKk&;Gjx%peZR6pwzF9xnsn`4On|Nph8@exvqeQxU(|4$( zLn#^71`V(N7Lt8Y6dQZAkiamIknZ%pM8;}%o=7&JQL%RjrG;~NsZU>pN@rnruEfc{ z#OD|KE8WeHQ4BwmGyNPLUxidUnw|Nr{PZ0{Y2h56zJJ`xwXbyjKy%l?(X#jPts2l@ z=}uoe%UJ#UlWEpT8TAgKv~boh^*uyw58>5$TjjJTR>jX|XIYni`VOJAu+R4pC8*42P?@6y{grN2 zV<=WJnf5Ku6v-~TioHW9EgZWHg(cv0{V%)dqZF@ z8xFagf_iE>mKa9og5AZXv>Rs0W{)%iwXkH#W|=q9Oe{amv2ghak?V!0fBkD)iT!f? zkTs^&+7I^Me(SPMuK38AZ%YXZyj$$ETz$0Yu#Ws=qmX zXkRv<$O?|*5{^Fd_vL?*CCnyrf1GIk+POFD8nn(Plmv+q6f5(lBK}G2WVRdLij~`v zQ=ng{C4Ud1FqY+&v3k)V#2mLSkd@6<&nA=v3A1pFRe6s}d5^P!Y{%n3_UoOs9AkpH zfHciTuLQFDHv-wC9P2nrkT`jsb{kR{o|M0C^V00l;iVb+N3cKwwe(ocZ2Qub|FMsP z1xk?6OR&I^iH@-|MwzANjj&U$%30=5yZxTjqEB=y*LOkYXTt+o$)WYMFp$u5_hFe} zQ~tN3FfeqfrNYz07}L8qyI3*N^v|_Ut5;Z;Fimv-RgP%3J$q;K^B?>KN|3nVt%;s8 z|7UF=i>Gp5Pi2k-YGG`tr>0wUKI&4-EO)w|mJTGa-O%eQ#=g{+=SrEwj*S-EM65OX zH(LGBc!%Tbh{Lhgi9PiD1Ua66^w*2jfGUAz7T0Kj5+rb>rWZphpL3sx$i$|#rkl*c zFVtGHE7ppq6NgDF$5I%79K7a^ip$I%&1ff3f`oLdF_B*GJyMMKoD$Cd>lyG4p|sj= zh_z~rq`7EOX-R$2w=SP;MzHoB3kZ~;ztXM7M8kM|y*ht+D4vZ-oXIm1N~_nJSj$P4 z^t5qbP#B}?MDQ<<4`$_BjOHjof2CWEiDb(tyxYAXD!_E)7%g@MwzgKU_ml^gP1`)J zt)|oH_tCOEY8<%l&eW)?dHLH!ff6Jz*A1i0XS4atLYK`2>*6#5wMzXNYrQv+%44c5 zkKYQ<<>SA*6K%fK(%yq*^Es#U}oDjjP=lzl+fm(M?##(1vQF(kS%Olg@ej@B;3wGqnOpX#H zu$<^N_EV+I*L0cXJZc})`m}bgV4m`5KCHF9VwG*>O1;+39!=?YyM1h1nPC3dX{Y0Z zkP!kUNK6U#&`HA+DOU4eXJI#j7C5ZQ^v)0Xg<44kT05uLRqZ1rCZ2t_JlOo{hnc+o zi&(nr-czgZWb*i1zk5oW>-Sh^+X|{Cj`=g5or;YxE6hpZC_&=Tvsm9M+%Uo(nykj) z$!7bOB?N|!vBIzoqwv-$Y-&hHN2!rv0wqYa&E<(<+UFA}?}A1FZr^N?1;11qs}EpM3hb{E$O)S^1= zOm81a(<`wRoo<_D6YcillOTb)PTz4xM6jOk=U`h)+U>(fpw_LEvCj1NaqD>tcIKHM z%YJtzM+p*Gdko`Qi*R@C6Qj)Yr$-1mD^?@2bgPlG*9S4q?Wt;B68{YoDL>_BudZz5 zIMc&<;o`h~ zz&X6UXM2EfB~&$ksCnC7!uYzGMBwpR>cvtF_m2lpwL_l*<{nQN^le z%NTLBaYge*!(0Lh)cVC6hGzzFBH*l=4*dDQtQJKGOES5O4vU538IZBYgx0FKn4rn}!G^Pz!UN=813e zi`OMB^I$W*JdnV;K&^IUYu%x|WSePq3V*j+_6+uVKw2}UyAjbwr^5Sj4o~(mAW)K#kaSuOxw_j? zw+(xc`}aCO1m+P)NVn3$IlNAwBqJf|8~J4zpFgd_vi@E&sDV37AR*mKOHa8xS=@I) ziJ;~pOj~VdBxD|bxJ$0KF?Z1~=~h~DO{H?(u>bl5j5g1f^puAxso1QszLl4Br`KJH z9DZ*w+xG2hE+xuxBmGrw`MYY5o-mM55+tNs{q7;AEpE+zDx6oKU#KO2SMBj#LP?O2 zZuPr|IN+$tawdk^VJHb|$uRVkBcUWnNVodk6NbuN^b575Tje_4w=}RRzqBWTz20=n zjVlvLtK8LR$TdgQ;d zmi&$waewnh59q(isdDpL*DG@R;P2+ zB#yc0bz8<$+Od_%CY%PX!f2NT5h>4m*LlD7B#x5*L0D=1Bw^9(!#!_ZtRr6_M#Ag1 zwY;%%de%{|E_D>)bI;T{^87!JlK(+io^;4Jk%ykh9Wni0<$M4bx@YzoV z#Q9t&f{W7YjwnF_^Uba$rm7{l2E>)HbgSCqxnV=qL@7~a?j%C|@ww7*Z=y88IGplr~^M+nU zM9Kdk?AB!%)Wb2=!{KTa>0gp#?OC6vPo!Rysa_N%+eXDYRlkcq(TkqVd$0=2&YQ*Z z{^3Rm5Jedrfz$=}sX?Oj4ikdSWmyN6J7IP?p( zZN#_3}l$P{KxoOvA{=p)9^J#S=7u%~Mr(8kE zl@Quaq>V$ZUebw{M4%)iA;a)kSZGxw)T#&xw4KQHxmvy0t0EtPl8l55!((9?ShuQZ zwYy}{#c^S_g+=*=>wakukSmt@+vOT(eZ8upNS6{pC&q*clw>4i7@lvC%}b8v5f>wa z=Fu7l3A8ilx%>YSs3qO$>!_vqr#af^P2@k&mr*&RH}-qhWYVp)1BVaRjT(}Dwp3vX&8z>rcZt z)2BCk{vqAFoNXOP2@>+l)>Dd=XC=IdzLFhy(}^FXuVhG|7Op?(-HeriY`80gmwKm(?883;#ZUjPwZGk|xXZ7kDi@G8jG1=>8U2fuC)aY6AR)hh z*1xIJQMtuSlm2PQ@1qy#zz(YxwUUO>=+i zEpt`QxZ2jkxaACF<|nmyk6%3B2UQqI=(+p2Y_Pe#L@-}TUq&%>tXFy%x3eai-Fx*G z{XbauPQ6lf3Daa4zklD+%=sWnY+aPg{)((}5o@1x*QT22v1N2A8)AOBB2bhoSnnM| zX<=;XWouT;+|n>mJhIb(MkG0Y*+e=cqh}7ll%=1|{ za$KL`N-w!*td(vNjyzV3-)=RKofIoMu4QrUEZym2)P?Z%d_s>dY}xA#ym!@DOWC|} zjf+0f-MCQ$MfN+z%-R$Nt^qNITLya4X;Fg*Qkj=PnGt8-p6maLp8LBa|ntAWq5J?(f_5gF2qRW7rEyt$oB}ibd)85*Np?u4xzO3`qE$`GsRr@eabjJO=3VbwKw%d_q8zop@r8|A@bGBh# zzL_lBrMiW@LntlG1>LfZ67*NP)8{_-M>P}gXUfLLv{=uv-C>QvI!1RD$A^n-zh`5w zqc(7qAc1wkFcP!8FQQ6V<~b^JBv1=;oz8z4?~7X>T4o@9F+m9uSQlu=*09!`YKmP; zkU%Y&a@7;j`utQW{^IYwsY~cf^^88Pt(A<%aIfXYUO|%kTD{g*ucq|-T)A`LrmQ{bU{6=5kQM@SCI)cY6PT?p)0&OQW>-*Id{-dUod@P)13qKwo}b*9o^4|*8@=Gn=iBuHQ$(%z2&mBg&ZH~7L- z&rS|Spq6*{g_V|F+OK|{R!Q9Hc$*g(<=e?&OOVjZgLZKUxtjxaa@YiFd2O;*{jRc> z&@K)kcXPl_4qJi*)*iCrRNEJpa=H|s?Aht$q@7N7`;hC*uxB3k@WZjr<9o<$w~txH z{|zf$F_4#~olYo0Lb@Z4QSJ_xB^ViX&Jo-qlXy%!oiY+iYw@mF=OB9H(9=Fnq+WB} ziOno-&1ol4g8oW(+EO9{JE{8^UZS4XRxS&zhv`a|rUP8y-K-s>}xl@Rl=2uT6Pzz&AFE54% zvI#9}nU`qCFG`TW)=ab4Iit9H??m^jFGpzBD6}Wtdh2p3+W_5YJ-n|NF{MBMCEp5r z$5tBIdZeXDTJEH^McVz)K1V0-Pxj{x2K5!mC03|?GPYJ2ons)|v~4Mp;VF9noxJx; zJ04P)p1K#}Eopcs5>Ek_9wWI=K&dl0=--RdR( z#`%(0eGx2>KrKC1j>wl>{=X(m5lWEIOE4{9n!6cU2e(n*j^!-f%Hn}O8AinxwRk(S zmrVB9OMH2Pgr2*!f1b<#IBHQCI)xTU&_cX};404UE?4mNS(5-5|4J6U7 zEm4T}cwvr8T9t?VUG+-u5=w%EbgSPz1k2P~oHP7w3%!z{mJCDnO79X%f`oLd-#tXg zqbees6=sK_B&a3B&{K|tk{}`7>UU2VDtFN@)RJzM)3mdu@Myk+zJC-bh=~i0O zMkd4XSe=nTNk&4_p7DHgXjM^eN6DZfqr+?~r}7JJZ+gnk{TJ64I@-WKK)BJRe6E7TO{7Y1^i}FYORQOA6++zIINeT}YL_sLAV>@$Evg*L_Gx z>u~KY^wnv$+~c)*T8t=0`@BX}e4%zB*#v6oEBdj8`iuT^_V8nIzCB*{iUkR2(ffTn zg)vWtu`@PC1Xsu_j_i1D@1{}`ujS4%))wBchY?jRuXq|2BmPU@<7J0|gtQLRc}{N_ z6@I22nX_WVma)D)UN(VRa@Sk>N|^R{akIU)`G^oEuJQ1ZsJA?|E0-vfY;bafE2N#dDfmt>RG&MI;Xc*S|Z`zC}>kOC+t_bZ+8!=6xUZ87_(*ox;&Cc@};01frXy*yqYr*mP&+ z+&3Y$^F)f>bpBlWr6fqmQ|8L9;fWQUcNX%zGZLsJf7c22b9Rwq`KLCaBuL0p<|=)L z@j;n;A&-h@5nFD=X#{G?FqB1y_M;xpwXa54AiqUt!%>ovNY5*olIBGC4f32OSAIzw ziPDm1(Usei@8e?$Dvn|xdHD1m;-v*;?dl2BpO z&YBCa_J;qEUHGs0)IQ^`BuL0p<|+?8v3f;$b(r!B{X#AIyGA7aS2$9P3o2$4N`eHY z&oGXEaDQ(OD)Vtv=I9q{$=_A&p%wkJe4(!nj}TR=RLfgtP~!HczXG<9S%CDKVmFr5753TDlb{bJQO5y)ym9 z(E7iq-8**ggT$-avGV-6x4(KuJ6NaFPS!=#C!)l=qPP1*J&fJ4F^o|!I&u4REes@1 zC&W5c?@G5*&Wd5>s9)@!q!Xy+-81F24%YdtA1hyP58wF3JvVAeJB%7Lbb@l0sSyVy zNJy)Zni<%m8f)tv)sR3f?+!6&D9K2q&r9lOYRx8; z`Lm9k^&uhMN(NOSb{w&VH0+B;<_j-JShNNVn3GH9vjU zhi3thKrQJ`pO;W?;+utIE0QZn)duD7YUXVBJ{qAUNJzK(-9xBZIQoTJ@^>|JewR=Z zB&1vY?jh8i8vQ~o`MW-+MnXxDkZ$$6Ck!CzA#M0kGyW*exW2t$XKb;q;C^T7#~C{;Wi6S zY6NQG2uClU?5ri4&95c)4EWED{(A4uuw#hU7J6HDMJ-WkeJ$}S;XgM@kdQZ4q_5Av z{9~9n**cl8D||^KP|JJIh_^41#AzZnWFSxr?PX+*YH`YZc)L7*O!xK4dl~JKe&x`# zjhXiN`eI4O=r=4eO6L=c|+`pOO@E^ z@CJNOn|d07TEppPBk5C8Q+ZSRg2@rA&Ck=^|2($u>+?yF_>t~R9ZfG=Cq3**#L;Vm z*e{K?yUz`_@9Xmss3mVbwPQQ_QzEYA7{<;mZ|DAU?`-?dWhFu4BHi9f_w`xEBY9un ze|xgCpEsZ9?!pd%sg<{E=378o#@IBBA${kh8`8`TSNVJY*!T7M@&pNa!(;7aq9@3k zJaZP0Vx2yj#y|eRzOTiFze-c? zzLxj(-Ais_4sJD2^lYv#mTU;Yh3s)BOQmk3UEIKNyIC$8;ug|wKK?3WvVQg#_Vy?Vni1>Q;eSJOxwQyxY zZ^gf^W_~g|l*f7Q>+`K;kib5M!kAp!{4i4x_ukj%BT!4;m}R$3+Brf)^Djf#`S+4| zp1)9>s`(9Q5iUgJ>wWxmKEOmHM@v3gHMxYkj z8L3a)6T`0mmPK^QVc*y1vnL{fwUTy=^e)W4{>>@cFR<_H^AV_p)=#Qep}AQZXG>A< z<3Z|fTziy30&5KIb$)%??6<0em=oi>XWJ%FOSkVXoLAL6vSzTDQ*MfVud^CCk-#;z zVNCd}fS8|HfH%n5(!Pt;E-4x(dVS(qH6~RaAp1mlQ>k|}IG8J&xcsJqsFEj-karC} z_4WYXI|1#!MBXBq$J?XY>EJ3II9lSUk2HOiSv6Rky*rvua@qHVd(N&sI7I9ZiuD(!mXt9a>TJFj}(b}HoC)>*!P9Y8%b>~dCRIA`*h;x z@B~rixNz@^i{&Umg2q~>EGN%cJFn zWWIf?qpBr1L&7yK-BnDlW(9}Di@Z@&H3GHt5-jyyC7x|n6S4Z|;sPZ|;9A`J-2wQr$SH4X{1IT*&C79sr6%`Bp6pEeqSTHf19 z?U|E2wN;I~x6 zT}^R{l~Z?^+C3cB7;N)&>X&Z4nE2Wu*3~^`-^Hp%10=9lqP~P|$aAy#iMXsxBTx(5 zJgq-wMTsZYWqx%3F^&=>^z!(uT(syp@DlH^`jAGT7WNV}zsl26uskz(^%nMh;l7>$ z3B5el`$dV*6K3$qYwi2OeFSP@FF|)e42={eJ~-?iyQ#2!6SV4akidSP?vr^Z^={W@A;Z7ULahXARo%@w)-pHSBLJp6@t?hISEWjP-mY?QfTRYuj)1_=T2#^oefx zyHa#*b!er!55V4QkkNXcZUgY{bry23vrMg$AfcyYZS4xYdpVc*qi7!ci=rY> zOZt><1L#~eFF$*&vKZDU#3qyk3Av+rORCDEkOdc^jebfRV%+oW$gXCxJtp*3t0{5RjcHf=Be^k zE2*Uj)RGn!`*+*I(g$9(LP#dwz8D>+*JF@|WZr zfU+*OuvG=#j7A*v3$@T%Pj}Pyfs)JmyNx$YZr z?&q=0SJe9~q`m|tNa(dB|2%*5>X6nvf%+08Pz&oA?P6_C@7>X;BS##R;MWX2uNIG~ z%v@1f`KHRD0wqXbuG7m|<3r7RH0t!BSq9c0tbLd!dJnQj1#=S3GO`uRBT#~bbgQ`p zeTfUqYmT{IS-kE|H-AChMJ>z)x;wgIRxNN??w|XK zMx9esOHhIY)&+XwFrl^iJB>PW#6beJWXjd-gNU2Mh3wlW^qXYAE2DZcT$5)fdw~7> z^zPJ)o;(~cZiF-st6a{08_*{~f_hZ20npokb{O8b0eu8&Nq2hRPHzL+g!gSgp9BdS zS3JMlBTkXeoTBCLjrNx6QBIB@J_!=IP9W>~p#tK;$1LQFT+teVT5>&Tr`#Snz3<&6 z$@lJXy)50f7TFMSHEEB|T#e2sK|&9MMrSU|L%!RG1ZwH4)ZBj;lzEl(q;@OKMur5Y ziEK-wtA?E@)zl30yc%kC&sWY$YCJTJUf8sLlM#uhIcyzOB!3vJ;1N~X@F#8Qq zUrdk)*&l61NIFiw8k)K2@~~l*{n?yzI)Pd;R`n$jBZhPm{|Q^w6n%7 zk_@)r+jc%UTb68y{nAz!a5*=8O}}rJUw$fmMK|z&d(u&6_e5Tn>{Pu*^+Vq+jcxEN7>}r^sW9|30 zed(Cr#^o&dDaHNPAT3Sw(#B9)cP!6ow#{5c%PS)|4yqVSTkx@ayh$4P?*+# zyD5o3?pGF-Y92DT(tFz|K|+t!p1rYRLh#pSDSB@k3DlY&LbmW|iq%iOWvp6u5*HJT znT1`$T`OsqPC%@jNM@5(iH6>R{oDzp_ZN|$t)rwz>^MN{vh$! z=Y{wGzhU?Y)JnWL?|@FIlxq??->kIWjn#6BRnZKwqI~lat3x7u?sxLa7c10~VW{xv zeYF`6d531*L?peOVgz&J5{-^9H>Eh11$52NgtpS$Y~9Vg;qs_a7owN}oGc3v7wVZ5TSjZLXT z`PvyH#i?y^VJJZY(?okFc9s!O4>c0O*LsFwUSTdwxD@RiOs_{6OXaKN?JJZLuf~Uq z;ls{^q6CSO*P@+U+7R((JrO6LM2aqXii*sokL^POwE`bUJNJhY(MX2TX?k-pF{Oma zH^G&PTCoqKotqnzR?Uqk2g4dE)*q57%!roiS&Mh5wwNEs2w^|yeOK$ zzpnFRDiXSu%h}H$B39<^nFX|~|C90j$&kCLbc#D&0{*sp6YcC(kcgPAL_DrCPMi-} z=`NSFp&k;tmdp9qTe``0>n0+yZb=X~tB3RXX{Q`W$eDgrb@JD>kaaERa*pUsZetOn z*P08C5SbH)@Z>$$H3GG?^cigr#)xs7^N37`|8$@P2_qN9>I(|vD;Y+guOmdk&4tCU zn_g%HYGKLJ*}l%D#j3te@yVc<4ow37Vtu3X*px?n>tw#AA&>Exoq?HE$5#)MtcfTluU5B}ibqF^uBn!}-`_38Lc6BMy`x(Rp*U z^YkW9+0YzrW}@`a-FED^-I`l<@mwwmvtHqK1SMZzhdEEv;WMvfOovw~zMnMcJ-#lpqm6>nOiS z3ZsEsM-~3Co%rCpb-c!ipEW|$f_{a1pQdBQH~wc+A3nS1mOVqkU#QQZQAWB0={*kP z^jaZ%i5!p0IE}uaQWy>Ij1u3aEOr+tQO>rirAyKYNvHQdhii`%>z`-lm(I3+hfrEt z42^92Mu_sketc+T9M>i3{_4G5*Gv7ywLKmA6vnIEMVawOq_}asb1F)Z zp#Inz;v3J`RI9-9UvD6eM=c0O0=4E5(OD7$w_UX&p5kcfHth_Gj5aec*i=njY~9MS?MEZ$KgZFH#Bef zck6YHKrO5>wD){{9yb4QjM$p?rvoKO&}_g;pELZsu`p}Cm~NZ;?uAC67M4Hl1nlEv z{#{Fp5(DfxLwX$rf3Y;_=9c3z?C))P!~>c$Xc8c3R%4~lmL?fpS_~w?6H3GG; zG|772a|D|q25}?!tOF%T=w&nVSON>Ac|)h!M;s_YLVmAR^EqlCpN(awzD#oaMY=UY z*K%3uWnQXSb>{5wg3le5TVNZ+wz8&x%Ss>Bn#}0Unjap;$A7zqV{OM;c`wjqt*B39 zl%q3^ADfzvWz&kBOSsf*pu zN|)0JUCRaO>am6s^#pPvnBJv60{6Hg6OOMqj+isZ5zm!-|wY)$H5;(5V zDTu-Wtkcb$BKohw8i86^rw!xF!=u8sovAH?E7y_pT}#b(aXgpbTh!dwFs64I?%w}{*jZINZdGAj0#vs$Yn-6ClGE$0kO%rgHPFpS-K zV_PPC5+r1rc8??CmYfZif7&wa(93ab;_^f_ld+72w0`x>UM%CyY9VJecO>zTBpiDj zj^%sCu_y7#YPMt(sHKOof8u0E&H>}t(Wnypyd#cHpw_Bc(bko*6h?hH*2cUYY7U~& zbHNWC!cc+)rpYi;mXu*%UT(z7_Ujpjd4>6tLi3WL?PSX3oMC9GQmoG8a5f_Rmr#@- zQHtgzWSOvx59Pe%*XNP!PWGZK{_&6dkU%Y3AzKGSiI^D22fM`FxJBwO&&z!W(woLdWNMxdU$!NN-(`YL#6RSTR$@W$nVb1>gsI*M@ z2wlsb8Cb@AX_+{=a0JWLV7$3;-XGF3A?FOX1c^ABmyl(G_72OLOj6Zx?0lA$WHFF` z>4dK3{r!xbUrpYSz!EWhHaU!Ms_CmwXc|Aw5&xV=d5`1 z)im2O;UnZYsI)MB^akhwI%Bdm4|{&VwoLd^j)ZsqU>PH%Wn%U>5iE6GVYcX7+cM!J zPzy`eFldg+%p@l(*zKi5lX&I~w!c{4=o=o8z`+!q@v?tCjt6y1o5}|N4d%YFv|@ z++tfMd=mT`j_r}Y{M2vY*ioP+OG>dV6TUEzkiDz=x=81WmR2=qPOZ-VkFqy`x2gL7 z|Ch`{rbL;ODYJX8o7}xQ$Jjuwc}Ox|85>B5lawf>k|}ePqKJDhADpvq=crUF8JY*5 zNTMX6@+toB_u6ai^;-9yzQ4!c<8%A$$9cb>`@Pq^)_bk@-oK?t&qP3=)(k2S@=PSe zCp->5J#>rH=*$gn?&nQBl)Q7MN8+hZNb9)tOaynLHaO|5lT-0pclAo?nFu6EF_1yCA(;dpXuRS9@69Iu**kcH>E?(0eIjET1x;gnMpkG3QM^tkT;Odqc z?&ll7cWV4y$Rbb+`xPM`Kbq;*JG;|aTjJXoN|2~V^Ahq*Bt$09OYW>Oz-_kqRj2B- zk1YbVuwS7!Z&DXu<91aQD+mRMNA?@AeJ?OsnS8?a>s|LnwiRsns z-fqCxunRUE7wuar5qsOI}Q;$XLztm$pwa2jO83qpeDK_V; zyWReMe#<}!5>L@S#hC}G)i&Z0C-d4au@+HUQPlj%B2bHci>95ot9@VW%P|kSuWsCz zff6LxmuW`l3mc|Hca5Lno-7}=2usWNS*j7|ckDRI*_K_L z<~0svurExHOO%UYJtiVe@9aN4)!P?q<}|wM{R~@Th|1)RBCmm*ozYpGC$qe}zxvP_ zbH^!*KrQ>JS`F#G+oKs74YV}y%Dp1Leduc%!+96T%*fhp&WNt38QG-`t9DuvAlN%> zW__JI*7u(LpuPK3*+MsA?k=P?mJ^Rgw@jYtu5jPG*^&TZ)fiFlgE_IL2PeA^Hu!ZH5~wwV zYP;aM?_X?V%$&)wVN<5KHCA`|4@!{0dQ4u28(eY<)_ZDAO#Xa=m2fI*$gk7&HZp`%d-&@|@k~R2dBv5PKSvr?<6WJ)TnQZhv zINJMR!hYx6mAN}nf&|uM`VQ~x2fSX>7CYMtWwu2EwP@uXPA^Y38u85X>2uS(5-U@j zt*55%MhOzw9% zNV@SOjX>CD>)Y34T1&UjjP{HWSsu zf^F-V79mL6E%N;fDI1Bv_grCw3VtC`h*d-szI{>3Rzrj%r{?A%!PlG)|2vBOT$B!% z)1jV966#5$mP()eJxGW91`#MhLZu08=-lP^i|SnDYkfAKBg6FXz70*FBtM~P^HiJ; z^;QM>yi8Dz$|vFX`0b!wGR_f0aCx8v3AU|iSsq>~Di6+G^_ER}FOGfHIf`%JlsW7D zbK9bn*9;-wE`$U|&dR5Xa4ms!NJ2fKyjD*rV`6OrB}k}rC?dMEvAeWvp|(SRZRL4i$97HF?vO1H@i$- z=cD7dxF|uQR{Wmug2OZ7V%kTp5N{Dt{;ImpbRtlK#Jr88!&@GT#Kn8H$;QIE_1)2F z>(b=~7XPY7?Svo$ncLiJpfAYrFt$}eH}fAyPZI3w%2TPscs z&z|#&O!=0d)OEXhR*ulwsA3)50h3x}eAvm(D3Exn?=wo|4p)ShAc6LL8}qkU%+)rKkZGcHVEX73(qHY} z4-Qn0oye=>?kqhad~8t3gjjjNt#fcfxWwypo#GSvY3Y>SpY7dF2P?}RmzE%b zPe`k~!>R7<)6c~|d$O)|U$l4W(IMe>&o)bl#$2xk60v}Yw}?Oq5{sgDg{!nD;ziD@ z;(ZRj1DXA`KkpvItZmx(FL#<;%woqJn1^p=dQ z?V<#UL$41C?@v5+ngzSg;$at*CgRXO>@9Yj1s1WJ&=vhj%?NeI-!xT{eMQ3!eEtw55b!Lupj&);HF#k>kCSTgOES675EQA6oql z5wo}i|147_nw8SQd$nO*i$E>Rb&6h|Tr=A4kFd9Dj9ni230*ccli66x6PrqTZ#`Al z${)E-b%;`{rCg`8&hvhZy*jt1_hH}bT_jLz_1?Eb zwWc;rh+NLyk!ya8HEB@GyD7VlixMQt&3z|SYgZH1GYnccFxK30ye%P{K&>-gEVN(} z5s!23o;x`(cK&3BS7T)z7bQrLvo*AObz^1YhwbH}58m9t`@DW#i$JZtpX?5;9!)ly zau2t^WR+;8i(#+pgt{(D@)PTx*EUuxPmhgz~r6JR;`|ukCCZyZ7ex(NZ@}vk25`baqfUulVhfrn9y4tH<6g+%}r~ z`g9ky%Ki7QaPt9O;-W&Sb~Z8frG~N3ub#EL;`r$F8~@OtlEq!W^Nu@1kLXJ1#uv(D2jToM^KR&dT= zwK(JPP18M;AhC7y;BdbZ19?7AHdFdz`eXSFb?fvtx*QTi7rz(02Pj>T`B`!o! zf&})#UaWa+l6QB5=c6b=0((?Cxm>7Mn z-lSvnH;R-U_DN0@3Dm+dk$TZDIz~qjvFBh;6#FaeSB_MRhW;+wBoUEs@o3~c9h5 z#dTEaQ4_=as;-Sk9_^opYd9gUEIP@}IXJ`l_Sb7-C_y6r=J;^lT3WG|>_WBui68ED zr;l3W{QX#V6baPA6)Vm3U!374P7Tlas#$gvS3jkmnHY|2q;=br{(1Jw>n9>gJ}^Av z+oIV~lpujmNbA}Q)7^a|g!Ah&ITnFh_6qW(JUK5X^1PRPT@-4kH&aFCd zhqE_*TNFJL=s|dGa8|h8LGm+va+FH&gNygNZ$GovX>)OzMW7b?QD_fx_Py@X^Xr^n zyR43)1PLc=RCsT5s-YvZ$wr-HQ{C8sy3Uwmr!4}t(7Pi<^D+;+t-BX@E>>I|MF|o+ zpB)+An@zR7a%Zw}L*bcj`{EVa*7;;Bs!*)o$2n1yAYrdkmrQEogl0|kPG-Ix#q}AkCW?&B z44a;MMX76?a;K(y+l#nSl>GgEpYWj{X~g-de;(e6ylRCvI1NWk^fvwTiDd(c$4~SP z7nx0~iU0Md_Az)`QTO{_`+2XG`p_a!3s-vd&ddp?or8}L^=|2su^Y7pygMM=rBGTz zTs0uiCjM-BqkDV2jW_D63Ne%*ky~PLcuLV$GEKD8aPKW{JNi;{MtajI5~zi1Ls}K( z4RGIiM|eHg6p5h(i7z`12`^7;rpBnUi$=L#x5Ke5e{7E;fm-&Ob9k>5?!nrTKcksH+vAKJ*Vms~`?c!Vn*Bs~_ zroN=w=GgJ~vSPD|KnW7KdhvICHm591=}jewV_*JJRQISpv8mX?lwOL^5+v+iw92l= z?ySD&cJ-&71|AI>wCxlUo73CzY-!4^okEc}C%5CieZ&17LSk)tJBk3MorZ6(Dzv*X z?KGeS3EqK_#A@D~cymExH?+7?wAQ!&Zic=u+EaNL5*v8m;Ds`^+=o(XL?4>pS?8{l zAi?9K2n`KIO7q@Cz2jBgNfXaTXY{zmB2Y`^dMNS)?;A`wdaYaH_^(m1ysIt`DM5nU zW0j}x35kDr-{61CE4wwy)s2ZCZ?Oo}QY9D?`*|0j+sexBP9iSL(9-lZo zBP5>SorZ~v8o2A;8610cY`XN&*PXeLh#_(hVSnEjLgM~k!!w~VMOJ?4=)uY|;K-#0CfMYJl>!Clq4d9)3A=<#0c z|JH>4RP3SOeQrL?t2)5P=dT zY#WOYrMeIN@|^P(`T9@`?XlnY>h{ej8jzoAI}y(lv4sefAi<-W^DGgQIpvuxD>&_{ zhTK};`X2ffKc&;@ta{Qzzp^4-=N)i)wsi1BYl@@4o`^4cmv?5h54*oSUfYsz->wPv z=|5PT2%>4nBz?crx@JT7+qpJ@T0CEQr)+9i9ASU^#qfTog459bc|>g&B}lO6zU#yk zW#f$^)!kb{zdJ2v+XQOyeC5#B&BJ04`xAFQUCo`D{hL$o$vQ4dkYLY!>Qo|R?sm^? z>E1GFy>sfH>n#Gc?A*PO+R}~ITj#8q=)$0Io>T-%kYLZfrvIHlEi6s?uFTA1u?6qfa@#bc7!C5uzj}#EifRe_ko%9KYbs~< zycFVEa*;j4HJ1JmyZegTZrTe}+d+ba^4zNue137?*au@Ax6*K%KrQyXtonv(<$f-~ zSJ(B4z2DMtf7)5cwIu$IfV{8r+$$S>a%)E4xUqw~zj0lQKrPI5T5a#SCR+Zlup6Zk zL`i!voPw|H;~j>;Gmo8H24S9Y)o z)MCH*%GHgPjfvd`#@e6Da3`;>muO<13m7~dq%&Y&VUW^VoyJ4redWOp$q0i5!g~U&PYOhg9 zTvMtYd$#58Te-hV8(Swa2Nd!AjwZ3&?j4&^=c`~BKuVC{Ib(?`gF}&zd6qG6MS5)2jBhf+W~V_CsKx&F z6U|12#5PXHsA{cZ)vKJ&xRt!;sD<+cn}~Jq9BWqOYA02B==Hsjz!?X9C8pOK(GPZw z%6Ol40q|a^Wsm3Go=b6xZTu0hZ z)y}ndzJ7UObh+}LYYET#HNpO}6P?>p$@b2p(<0=d&n>k$I-flBcrVmq&;6A1G~a!N z{nVeWY3Lj)G;4SL@xD)AOORkc+=8P`L*l7nMEqUrV#amD4)6Z!(!+8WKoh9N`w2`$ zq>Uvh`!crtXHIlEdC%EPen;BcP-Ok&JocVX`F>$2a@%m}q1QP=^OD?t&O1fw#8xX0 zy_O)sE0&bU9t(-)yl-&e+Ez~F>eJDY`EnPvFyDmO(XC_jz?K>AZ1PiM52w~`VR29Y zJgavVOUreNeO~4vx9{ab(tECZWF**={>i@9;mErF^i+jjpBEb#o8+#o|Ge~`YXY@! zl%Ov!b}ZwqAJ)?yUG`V$)7K*l5^6s|J|V4&{;BA_@Jx3%^Typ4fm+z3(he`}O^o@q zr~CKNXq5d7KmXM%9HG>*FZ}#|>Oa=^&%^#vh}hn%y-wG5cV~CxHR3y;Ohce}#*?&k;OSv9@7 zLjwCQT1}9L{#4m}GG>y89`A)(*dGhg@~Rn5xkK%D-+1vs?F$cy1Iy$-o^E%_4^OKl z_R!Bf_N24_%*1HleUr4mT}rSGVhbiu>a=H^(9}!OJ)7>g2-M=;fgRzyLZakPWTSeg zmz@99Zx(y-~1DM5mL)_becT8%ucLQEs?`Jq$8qtl87-g8Ny7Or>b92pU3?;Re!LwV@+ z+6f8ee+Y>QY@^{#_qw-@Tp#-)Gds$DbY!3Ot@m{Eft9yFe zLj8$u?ey1aeZE+F&$T}R2|FFf$WQ&&%8;|{qa5jz$-1Hly}zJ;9(%dRzF1OT;~I|k zycDs52$Ud!t1uxxeqogRareVc)}Ov7Rj*8N1;L)lrD=YzL^0JfI=hE{uj-C?B1L*@ zHGx{VTB4ZINrT*jUlekOd|x~Rwb;Kqt!S%ougqDyIS7pJ`r!@KA^nLT7m?7 zpt}}Iqc@&#EqUvTVs5h!`nx6jyVC2d3DmMzkUQ?H?A%#)x|`E5uKkI!569ID``!=# zNaF`RA)TzLezQ|AG|fHz@|Y+}kg#p65*wViM@)1xFMMJVsKtKx;lP`Q6MF|p^CfcJXulBlLDeh|WA>;UgBLj{;w7aB;HAJ8U344snB|r6s@}6^_ z@>A>DfVBkc82RCdc%2B3{M0Bx!mf$mkVm-m{&?(F_EUo|4BNTwzha^U5xa;$2@>q_ z7K3SC@*(@e*-t%*h}z_JMgq04uM}bz5xa?)OX)xf672EL`r@gOxPyJ+pAgZUh^xs4 z5~zhes*wNI(W(0(l)E^4!FiC{LsGL0Ml^vEB(PS}DwVv>zrULmTTNbPoQ1L1c|+|n zAkOY#focD@?X(Or?MArO1tvv z8S>ncUT5Ikhu0ruJ3aC$uW=%+E@o^_>5*1N5n6%-U+XhdzKuEeX9YHp&{}wA%HNy# zX?(TTw@{g%q5Wk#=@1etJ9s#rW3CIahRVF=nCDYQQ#(fjwbbu%v9*II#9AVvk3X9- z$PiM31YesH<>)-~ z9w&GwsMt!x@f&An4}8!jI6BX~$BAN;N5(^92*1UHiOSPvW%o})Xf3ukc3KS@v&= zFcQ2ky@!5jp}3f?Z44wEef3*+Yi^yB-98DSqsiHZi86m_ z;1p+A&D+!34xFM_Eb?3rwjy<^N3LXqc#Vj=mfwa%u*T6X3fm)n=cnHk`p#(a9rq8M zB4d7Z4~J_iyDzzC;FMV9PPgQ?%SWIV_IC8`%t2FP@7M32o2m#MafAe4oAaXS^i<1J zi>K?SLPBft6Y7{IIuEz2vDdl#xtmMS9^?ndMkaKG(-VhBB(&CBM@J@fdnEr=c4M!_ z=t6B9(HSa=QH}N> zQG!J8|BXtR_^A2Et9n1)dp4s1?Li`eT8&qYN|@NC^kdh0j~xFsWB7|*U6dd}^R9%6 zT{^p>viC>Xx=w$JL_z|!p4>P(VIq+x5fLL|ClM$?qE7stgo$=qx~PFy)_R+2%bIU(?>0ui&*w_WDl)`nV>z$-xQ%GNbt3e zF`_S25HXw1br}F+W8Qr+R&eXi5Z1khuKlkVLy6uIT9&6=KD% z3wdR}uH!a*H8Y{39r#*Dq71vTU&6%vJk+OrY()F8SA0%w7bQs0USYz-6{X#@KX#-> zL$4x52_b=6hhHC*Ffl)yJM51=;577Zr9DWLAn{y{K?xIA6e&{O3wQWEw(?P%K&_^y z?n;=LpJGo}^Rlyli{;TCBubFDyUAS%6IawBv!&Pc{`IlQrRyyMwd~w&nby)fRexQq zGVNfY1PLrBIo=D7`Qa!b%uy^GTJOYl+1Lb1@)Npbsc)Zo%$f3jEpM8?qZrq5K51h< zi|hEGtxLa(n+TqROMh@4yP~#tfFiO`g2WZQzmA(Iq0}XPomyiZ@*~>>YK2CAA2$&^ z&#&v_{NB>>cG8X_N|0Fi%=d8Q;H zM=_A(Crs{+qrJh8XpgWW?FnOQ$x{&ITd`~Q#Z3ec5-34}d=7CFC3IuSADv%fHN9E1 zqlg4*Rhauu+(hu4ZhFF5_rIFnve)alC_!TF-nZi>O6W+NK~Cf5jyJfIO`sO-0>(`Q zPw(3YI^BM!FI%sXJBon>iL+iTZlZ*ov?>_`TXpafjpUAEK%f@+!s8}_r|Il+8Dstl zdzJ5#JBooMKVhPTIL2h#w;S3}j0x{3CiHxVJlhE!kMrf8f&T9@RwgvQj#F}Vsc0M8 zQA7z6H=Z4oFfl);zOCf^yn1f*;+xZ5lpwL9=ir2nH==dz_9jlw)Ui?CQA7z6i6g@j zCK8EammD3tgam4}m^37zmO3{L2XA$qI)jTK@asF)ulP%HY(z=VksYPhChY=4`;8 z?z2`!*h}DwOo*?}KjtjB4y1ofBp6i9Sj@ib$Xq_Q$k~Ty{pR z=%My)Q)x%>p%x<(I_?Hr)aI779t>iBRv&vZHsX(o8Mn}mB1(|J7EDf)Y0t!t%(#^C zI_)STfm+vA9hK1WM)W=5jxWU~)Nkgjqa8(*AYr$t&Zj4P@q1=CztWB(u7nbAj!)>Q z9bC!K$z>wy+&;q@cuj5;B}kMVH8G(hhA6LIoZ-zmK0G6*NVY|w7Or0CZJ|V@WDUF+28D-sJLPxmJzCl7q)ZmI$?kIXXDg}K2yPh4H z(6KAHR;M>}mwDKGsatWU8to{e1PR*t3v3Hf^%%VqkfLkG9Y1XmsD*2F@~YLJ=nZZC zy0h!V;wVaxu+wqw_NiXy6`|MwihSWb(Py@2Oqr0-aWl9gqxTvRF_5Bb?xyG(lpuj? zD%u~U_X;k%{c!9aip{{)1kU=u>NF%_qB-IZclHLJtLim=G9`utYT?>Ph+dNhd8@yq z@1z_mo`G7lKbX*wC^k{C)s0?DieuSEJBlblV&J<25;_WozBf_0n0My={@!BRQA7f@ za1BRq?7hEoY+%{x-i!uvM=_yC8C-u{dcRLX$N$iGk*nPtYZ02}b>B25iV`Gj8zMW6%;dyLxtz*ui1MZR1`Hn0S-mS7#D9bO{VsOTD$AYs?Uye(tA9Evfy ziahk#4zQi02ZdWspEE>?`SXG!Y*YF`J$W zB}jaD-MEB_uAx{NFHA%wdMYGP3wu<#5|*(tZ&R!c&R%dHMEiz84fWT~99{E{A6*kj zkic3=`#7`{*OlT}p7VDUgSpzWN?8dV?P8A~Yin$drG1p;d_y~mC_&=&d7~0K(uU&I z$VM&N?OR1QkU%XQyXYh!?Q`~~$d`4rKZvt?9M930NjnYKZFYvyuH`#Kpaco@u*%&f z?{(Ty?CI|)2E8cukM@Ye?}kg;_IyfTMd+~z3BJ}|Lm|qMpZc?jg?5)GKQ+%X^hqZk zOZ4d!_Bv}nynHK{x1z_nUHn!qlpw)lmn39#&4GIxdlyc1jUL|X`@;2o(H@U0`lJe- z9QdY|_u%=jc8{aCa-jqXl~*ddX40YSy!27=XlHsW7ZRv7KQk*)<-U=$2hDHgy0L3@ z@2B;bqEFFVxln?HDkl|P)9Y9jZ)mA9v9a`4E+kNk+rNpfSxtWG{uC=S+kY!pAVGp# zvx$89k%;l->&8Mvpacn3-(=JceKV|XeeaRh<6;@~RxVyO>i8IL!8-EACO({2$y@ne zdTc$tl?x?Epl!;ly&-Q(Ry3M3R=#N}p<`v#TuYwCYQJ$}g5Js%5>@KceiXfx%cHk) zQ94>nf4hDXe8S&rPfV1%_QjC+lHbZTU{PJ~{^qq~dBbj)G}Uz- zygB4=??*l|lpuljd>gGOu1MR^_d+d9AH}7T_q+^6@O(qwbM}SnI3FJSbo>t!`f2H@ zh6QqZ@-x$csf!#Pz&wxxT_;cgcwFdPa>)kff6LxziXm|I?gH= zt9C=kz50ajZ`ZL4Jj&>}683VN2%esQREQn8A?&{Ezm+SHAi=X56D4%%`u(vXbsM@3 zo|JFp3JBCfYD!vrcz@56fQo!7?s z`yV>rk-&2D=L|Z62XmCKb=mN2K$nd_XV3&n@)Me-)%K-hPOC+=+%6Qu#Xe*mwZn5m z9nGV>+$vV4dYK=b@l9&Gr|2D9C_#e#DEef!5O{T~0KWm@-(fRKaHQgKf$#-l8_d+f9?&$O46nD4w zN9V?dwcK4>>$oUEg8lF&=I8JA1DzLK$35B3CQysLJNmr15Fh?ty5&kHrKlJVa^!|n^TABB?qgpTZykuQ#pd{KUC z8TrEAVI85ub4C*@Q+RhvC)9R*#$V}yFI*C+#a?wCr$b+tpI_Z6apC5S_g2=-%1U5j-eC0%tffO31lRMF}B+T9_k3bWXb%t#shkHWX3iv0qG| z&1e6Wj=^C+wLXzX-~XV9su|Cfic&%+8=)E}PZ=X*QJPRm-2PH_bA6~}- zQIzSq_OZ1pN(d!L@JdFXjik3aK9>?Z^6F2~mgLz+0=3wCuA^>f#d2+{SUZZY8BGLg zu`gW5;Ml}f+xx|Sr3juC%HOW86<9|t_Vw%NA$r$6 zd7bA`9Lu%CqfzApkf&AIv#n!rupguER6kkK-E^{>yI_xe$5t=`Ac1`_y|ZT1JZAt! z@H8fWJ4%qi9+kczS+0|Fn4*M+QIrr$kWedRb+&eP_l_B#Y?>#~k3nfTk3l`#$ z-=Bzmd@;29CVIyf5~!to{p!r!s@U9EwPN=~m(e@6P=W;ZV-x{edW!es{ddOPZRex7 zDq_#Jj={n86}|te=p?Vgp&7Ax^o}i*AiD6Z%!+6BOS zp%!{{{GEn%-HOMysGSDw#X&;tI>^W;e>X$NN8!Ct%k~uUzCqTCknhtutPNesw0)Y}F>^0|SliS3a%$n++>h*RMS6jFiQ9eu6Q_m=QP3-zp)7_I79gg5( zpQV(rUtCA+;GHOHtI&qn>lBaEgW_>ef&}}>O*~HFX+^yjXZpF<75UI2Pz%>>wC_Ce zbZo)nL*4mV8M{%7ee613$tDiBywMv&(N1rvy$QXxM1uDzbgYyRf8BeF_i6WP?zgR) z%Do9qpcbz5glP2E0Pn$fgnM{(5xK{r*Oo}IA6`fHP&_B?{fsebj% zv2=<=T1Y;99G#U~n0Gx~9nge~kZyzb@0*#>@jrfK*xyT+XFrjI&{}Lm z);Af6#5R7VNTi1qVI+9p%!H0(@@@P^HYOz@v=-Yi5mjvCLTFj`1VtDL-j}|397Jt# zd8~-c%KkA4p|yM)e#Dqxg1>g1oqaMOv;^;)nJ`ge{8Yn+tj%tcgwR@S!$hLRDdy*H zibQHdkx014!B&JPpeVMFi2EoK2?!axgao!nS`YS{;*|R2{nn!>N(g&6UJvRB9=k93 zjiQ~(QY2FAd<1G?Zzn_tBK|{>NFhb&T~;Lc8oX-sRKI`r{&xLTNN6owvC3K`UZ-e_ zJ19bdJq7wKFkhP!ZISKzcblO7_dtRKUBj0In0bS2^dKAgh(L=8%SPli>K(??IRJc@ zH{RDirN=gy7*7OBkf3Ww6BG0_^h6?p--pMqKwtGpnZz0XRy=(-UaAKKN|4y{pd#eA z$$duJ5J;d_xku*5liNTE5?dZrL;)K%fm)I6$!&0XXo-Da^?LyuNCelURr-5rH3Dhe4NSSbQ8z@17^35j-*suxE(qD8fQ0DmkTI;@=2yE#6D6W0l zchA?x^B>u+fA{lB6P%-3f&|xHLo@R)M4-ilzLRf5$Lgc!4)1HfNr##B)c5i%93@E5 zHKfV667gG#pC@7QHMJalojJ-=x$gh&1HvaP2@oo$!-8l9Bq2~s)t)3aP=bW2F-dIL zgsiVhOV;BgHdLFC68pZ2D3A^$f@{)JtvQJeTVn1@_Ttn&lB5F()Ka}t5*sK%g7S^~ z#3VLs0<6M2*A%Zu;um*2IG>B@%wQY_PL&(jDnJ+P-n zgXhV{A8nen9!zUz^(0b)#1~|v)?}hjvyCN0RDWez%5ho=BVlW)IpZIkSI-i0WdHK* z4IbSZwV&6dmj`EYp#tTI3->@v@Z%Vl>F$CL|v$LaYBaet)4<%9u+*gp$ zT7ANqiIfYq)mJJf5s^3M`P9(-txdEoaLoIj`78Ir?^HNvb9J39V&670+H>vQbYF=6UhHY7YM!+hF46 z@a&ZL)l(rM*9KC{Hr#O&)kJkKDM8}%7MWqH?P2i^*LHfBg?HwqWho(A41g>aQ_A|(DjvR z?fu|u+0x`2Pk@j%UTtptK-l;C}_ zCjvs+F!w?&d=C#0(gxI5=s8UvOiKCEfdtfie_YYEUG@*mayp=v1but(yRKK7hy)UO zFEd{8@1{<}Q%M^}ViTt3|6hdB!Wv39j#Mq0>U~%w)x)&`&iXq(X~E#^sSd z{i{aA2SivBSV81I+9UBjuRjj+Z0XKlLp%EyPxT(V!X{Abo;f`d|6wAJ3I4}V^-(?> z{Dk^Rtf#dIlpw+DD@{uvuz>_>;fl;AP=W+y=l0|_kg&D#uTpi&Sxc_stcXd^#?T9$8s%e)Pgd2p|+IX%LKt$M2K|{zC~8fnOt7*Xr7i1Zvsos1}d!Tqjc9h9y%yzV9*iG*Wx!bnM{k?_cIt z5N`Kl-Gu0=+lNy$)!jf(#q~-{xUJ}GuKD^-LR=q@x6w9Gf&{k@ZI9Llmul<^7j5h| zT%6${p<1n+$)fEbuUyV6OX9cMfUrGxq+NheZAB7Xr*)ca8z{+7B)5TtYAezP*XiUo zP?DcWZUYIv)>>TiliRQ*Hlb-d@;W61&2iA*K6G=B#GyB+ ztu*KN+|j=Xub&SRffA;*7T(EEIj`!OK#5Jvk89euk(@AE%3mg*Hopzym1iw;-^g}z z&FL^U48irvXsH?#c%7LzMCk}>pOhGa?1c=iZR96Vi?3xZv26HxWh6FHCS1@)LBeQJ zPUrK`a|!ZO4cXko+)LLIdJ-lq8`5W@O3+C15q3J>q*Y`Gdbgpn?t3%A>&&(fyg_q@ zOjWPs+ao&>ffA;*mUSmt==^5K{5EW2en``PElExoEma=id*wG&@>8LNug!fU+s!pw zNk(vuFl8TtQ&&t#SP6ik`buI*Hj*m4o#rMCdwp|+pr0vMLC_%Pt7TR zk>1P6J%hd%dYYNgzth`DZf~%S-x%uWu94&?taL;ukK7XPbx9MEB8gvS(wADETt)qo zeSMmKkF4gm(E9%rA<89;q@1B6Wz97Mk-!ELmR1qClWhYeNJL87HrR}x4tn1oNtJ;&CGUJmlF0k2pmymLVHR7_B88 zu1NeklfDHZbN3t&w!|h*6XDyq)agNQ;G?shJHP3kiUeO9Ew<5A*+7CKX97un;xrMK zjTqU;L4vQfmT#NhbuZJQY)HbE*u?3X^c5vp-yWotkEb=xh>K-%k?@~NYZXrPxw*Nr zfduESmgFaT6XDySe2Vdtt^cikE)slgw74#48#aLwoA`wY--fE~9``rip|+ggj;yuRjIXmS^9P@6Ye z<%4n(!X{8+6Q*pa%w1hegg~NvP=Z;z%2S=zH4zD0ViTq&QW{(?cdqS7@U_vZ5VRX1 zkPyO1@)NqP1cYq0Nbt4R@@?y$LD`UmEwKsH=G9zR_C84XPo?{h^3cN}!MUsZzWjvg z;iyk^OfPB(ri~Vk5;lPnn=m7hs_n9GFBD0mx}^KpRO{OG;HvJr#c5Q_PXt<#c0g;w z9|uvAO6B2?0EI;R;M&&@MjW^oYVoys+I2MIY@xa}N{%?@z7&ZNXcZDEL9Wx63V^UB zHeqsl3iYBBX|+9)MjRygT5B!o(2DA=u2)P@i*l*oO+!h3!qls_ogeg`eq^>Y_e&me z%)R(pYZVgwyB=|nKuLZ=*L)!q5hEKpNbt4R@@?yOjs!~b6Q%|KT{zV{MI+8Ta>U{1 z_3!0Bl|SNeF6eQEPS62?lKh0}uRf)I1Ya91t_!-SMuKaGmgFZ)kE-gf z96$UT=l95dO;q=lHB|T1NC=Qv1lSI0yGJc57YXYLW!p?Hen?B36s+_zjAqwMKdxg4!8$&B;jrniYyu@Vq3bbyz0R6nAyGK2wP=1F z)_tW-*b=$fCueHemPEM&u9*Z8(|E5P<)OKifl51cI_ z;Xjq0Ulk6U_JIVgIRZ(3Lf3q|eIUWtMvLo0vi9NE5-qU_t9?YwOonTso?mh8GuOt3 zY9De&CSG2i zRRP)u610K{B>4$l^XVugJG!qh~nyMfmk3BER3 zVY@{I1g%m6Nq)j=QA|ib91?u3wS3#UXHZY2Ja?QzEwKsH=BY0Uyv}$p|EcsC6@nfP z3HkisT*HWu+xZlmql?^0#m7*m{2}!FGBx{@w zLj>1Si%V16unCkX8VPyr-&>ujmNk*?B_&)F^IgllB7z})D*8XJyGgWUE6~47&45r( zg*N1U@oE2^KrOrzrJQH4{!_`8L)PVeF&*WDTn}c*ia<#cLO!ita9gt{gzo{^uK zscR1swj>E5ZRiyX+dv|?mRc3ahHf87@G3=1k`aFU&?^={9fr^}Yx%Tp=SbKRpGLyB zp;GRdbolquw69ej`YR-Om7;sHWQ0$vGM6@x(AT~e_NX?265k#Y{xv;+g#O1i=>OYO z?yB*FW-r0D`aQ{LfD$BV9%N{`H~rINlyAcymryHJ63J|U1n*0;vwyRJ1Zw%e2e~VE zE&Znhg653oz9~UDnKh12prjz-+raUI=h3>%^)+kpjQrn59F+Jp621)_Kk#1q+SlSc z=@x|quTr!m8DZH_BaR_7ZJtW^4EBh_gqHZUMaVXf2MA1mdYp&|_Kfm9VZ9{wf*a)AopC2u=H1T$(U%mwq@u zZdAjF=WxBoWj;k>ol_Z7=5&{%pz6bn3<2$$uK%qJXfpl)WT2K!OCFviUa~ zNPt!Z(`2_OAgq)ZPUxO5e~Us1-dFveq(vcNv}g`b>CinmwkTVYgecIWkO;1&7TZYP zqKqUN;nxyuAG8vJd->O_<R;{HmuL0Z=Yl4OKW z+bzlvn)bE0G?TX|l=w6f{ZHK_a-8TIHdKQ@JY%S_uV`q=ckZnHL}eT554=>iLRIphVe2LSFOp z>oJN?y_jAJ$>^75y{! z4X#OxPb8TU2MJqZQXc#+ZRoRVY$1@yXIJ+nEt>UHI&|$p0wn>BgtVbgp0N!if@{*^ z6Jn-)Ac2x(gx@~&$umD4=3bg+EuYpS4iYFyM))>V$~}_~|6ZDAEzSiq;vj*NWQ1=+ zpFH!^VeX}AUyDmq_tZ%EHN%%ABYc|gO?6kM!>@6E@2szVe*o8Z-D?98@!LTXLe^0I zR6vj^yq9@)zojLyA#8~ubo%^s;P`>huCG~(Pb8W0un8kcM))?=`74!INch*RMKf~B zD_yUUK#6`5Bzzn8_+jp)XNM3JK01-IFCHqzxPmkO;1&4eWPq!bp-5(niU6B(++{i4-|N z{d=TuqRQNVLSp9uy6%@aartj~owB$WU4I=CJLq?DC_81x_d_>Ig1%%FuF{@T{vs2D z!*xHak`OBnxI>!U6;7W@quMeiW-UCKbLVPD5({b!3hQq;(Kn;Q`kPT?BYgd5Rl*|5 z#B|De*d!m-6l|i#7DPvqo?v|n?T8^Qd|8T*X3`goWB`WYgZHb?5Ncv^Hf~d9$IrmpG-ae zcS71wUm26Fh`*fGZS3UBago;--UlYiFe zM$m{_R{k!;4H^4$&ZOO@+Mtmj!C&DE#x60rS&y8mO~M5TODi&*Y-=0Qo_}SBSD)}} zJ4tA?jEmI=+(MCIJc`O|8WUmsXp>qv?U&TT%EsVeoLI7FXpknRO*;OpcsQ-|UB{#i zPWg$;m*PA|S>sYRDiIw$i|tO zrB&{l65%<6ksyKPL~m)X+&kBqQCHf)krPKt9?#93fo-(>;}J=q1PRVvGuHl|lafAk zm_IK;0=2Bt6z!f}p5h&BEp1p5xUXFvkIrhJ+VZKC0)(Yy)skx-t&%$Ewz85CP)n?u zL3KB%F`~hJms>wDv#soXur6^e(dBQ^Vsot%xuf3sQ`JOM7i+ zDwm)kEG@_d>UUqr$~LvcpDW4|7D`gnv)2TFK8rwP6`b2w(!f0B`u&{{YfB=6__=hB{g z`8i4O_wLR#8xRGD zWbW)=N){kcOXk((m5Nx?^P$v+tFt7*TDvFjj*FN4r~3J_zBVQ6=M|N=B(Tgm9h$&A z^ogx|{}+^?&L2z5s=IghxUfB%=qBqf_sF_dBZ2*x5a;iloKyE(zXb6~nAT}RT8R1C zH|6pl*Ii2j1l#!e@=iZT#EUcM=e+;JzybtnVSN*#)9!oe9c(`+wW!#vdvr(}DLw zEvtr#na@Si=uZ+TL4tGI)Wod3yHb1XxuXDKX+b@vFA!gznWj@N+qQakzBajlHF0gN z6KVaE^jAo5Z8s%&>!NmPnTy-Wr^336T2?C%_PVwo-OFziJbvhU%i+!uORAwGXfefOQiWE;dj1Ixzhl|-4Z-_7}`<^Y*;lpuk*F2vy;pQPUW zRzU)__^EWwr#C2Ho|$WE2}mG+>~!37G@gF?-re%4xC~@}MBk|4G6>p4gs=V9MQhH? zdAYr_1{WX%XklpzadX9Dt@Tq`5+Im1xqC;IDy=6J^*s~$39V(<5`OO7T)#zG-`b%X zqsI?SpAfseK{+-4xIIZa48e8Rv|49rm)yon`27zN*SZ&IS@|Z46q~!FLWcormSM_+ z>y^%3tP8YadFINrsZU=iZJ-1RuE*x7a>qTKHvE>8a{NF7wfMWXdBty6Bj@bl*QQ=q zww$zq5+t~#>3kDn^QsEl>sFXtfIuz#>q9w3b8}aHcb6nA3EbBzCvnA+ywv|K$_vIp z?F&aUcI z!ix{*eD}iPB!uj{q?W3QipVNAGiUVQIjqY9?b7)Xt?AmcI~7V^?pl|MX>9 z9+)Rwmx3=e`*lpEqj9m^wAWNk#N0)~u8D=xho-J5-?Kn@SXzFYS2no!IVb$yNA(#} zf`rv$h^|$Zq&Gi*lT5i)fBb$>rrfHbVl?@c_Nuv$B>_V9!Ro0l{4Xo}mG5qq>Bvt| ze=fD`r>b>d)7H0MY!eWiF2P?c^LuJZs2)z)pgu7zS)XWWS$Soz)#UusZ#n)9SzVjD zAcXA$00|IkUZUFIVCqLkEH2oWpq84|DB}2|Jz95}_PnfDJcrX?FvqsSv~JBp?0%$c zYS$~;%Dl29{=7}*58g?L9(i}=w1rupwxQNIevbO{M3uXriL{)L+jo;Ttb2hL&rvtj zS*r+HV)8%!oH~#Iq2{HE_@-j-9rx^?FKZ%8Xg(l3i zN|3OhYEPtYw&@woQaJ)osQ>fWuYBB)zAv{Ay-S8q>jSuU)`X=+ zHJ{cWs+}*-{!c3X$#$+*zXfVLwt|9dXZ<8h>oi&R3ap*=Qz5}N$j{{Gf_P@ZciC62 z@%;>VFVw=46=L+^^=bb^-%RDXC`ypvc5`;72+N&Dac1eUoQHt~G39;qqHhiplJ;2QJWOrNH;b9P?#{)*|+hE0GL^$dE?lg=0B zw$9lx>PD4UAc6aG8`MuI#I59Uz64%peJ|AF7HsmWU%jVtFDcI*O1Nh@JJZiy?ql?w z=(J(DcJ`w}Ej>yD=~6TkD@TP2~o zIQl<-2W!sK`clHXGL;+p*CgBCrzw3`ssMo!BzPa^^yPa04+6D#*D|>c)Z$%Becyj4 zP=W;Sn3^=Hlt(z_NT61aw|gW;G)b0nlpw+TwK@+?-m(p~lS^;fKOpzgS5~BNq0=?* z{O;VB;$H*89(p6;-FHo3$qF&y@b;XHd23aRGK8f?cdFB>fhv!-y{4pfZ|!@X*@l)N z@$a<+3Do+(Q?By_iB&xy$A8_NS=@b2>n{JTOO*;2QJG zWuKM+-Jk#21ZwearY;*_*Z*(CMJ=w!`o8~8pacnST{=y+4J1%Y?FlETS13V3?cM%A z2-H&h(MbrDAi;akrnW!y#JQX;B@4^(oV9c<;a&EcyXZX=G$J#hYp4)^gjVL{efg#A z;ZTAE@7K4F>hb*9h5J)<`#=JuIUlB>s8~w`pb6C-@d26HWlL@L`x3YpYGFAEF}Cfj>@z!FkpxPR81z#tzH)VAHNRS1xO>jqZ?`N! zpca;<5ZArdX1gvy>V3jGcllb^41V)?^6|rx0Kqw}>zgV(zgS!(P>ajSj348R)lWNF zynY(@40mLn3h8^5oBK{k*WHv>KZguaG~6+DWq*Ii9VJLmE`&^8(E~;NXOm|pLb^5# zANfm2_ay~ui6&5j#J=0Qg*EN#CL>S_Yp4(2sluYPOU1Eh@kETr26 z=7V3%Y-l$`K#23DlzTF=#jH_CCm`kOB!3T(Y`9{&xbkuyy%2_c=N1 z3;J{HyRdE2*SUAc(jLFjUw>E<=ARW7Igg@OcX(VQ_j%PYi{9j?u7?9`S|g%TuYJf0bzzeBG-u6T4w zYM0x5zYndj!@-&?GCXYj8iVOtpF{RCAIfop-B*xU#4vLwv4GBawG7U94G#zFaI&Y@ z%d`p)8y~S&e9XY#+Ol( z_JsM5dj>)G(kW*f!CIDVo0OlWJ>gPjPdJd+#LzH!Sk^>RVYM9)A_7{FJ|V8|P<*@b z$(WSe1k=hNAZFh1R9dIh;Ji1BZyp(x^VW(Jp=?G%364DZX-;qD7bP!OAVGq!wU1PY zM^!TJlc11i$$slGbT{7dZ>}ZTJ$ruU&W7ADW$3eW>q;LjtupeL-6hH45Ke{91hj25>++Tm9|{bfxr zr!;KcQ4+L+5!Smh{OnrGdRh@)7)d*(&J>{p2`)kNRDJ18QG2z!goLGqX%dIwOcD1V zdIy8A_3o=(<_BwJ?YL<6YfWtcf>W;dkc4QyI4_m{WE;eLSz464L46Y+e)2>18{z|Cs&_MxKrQ~=>}F)mzII2AtcLO& z8A_1gwi)D`sIk57_K}NHWUh`Cqx)7t|}Zp|z|U zBXx7sIhoJ*3=GR3^lcGkf1&2AWcHh-gXM?Z3hHuu?^E-(f)aB*grQCyf0mw5AGawD81-#D*eg2ixMO_uXL@HCsI=3L<&3=Xi-iFeK7ab*`}ukNuPMey_%9j7^wU%k4inGb5H2%gudNos+R7a9^v(5Iy!impcECCsba^+NVxO z%UUU~xfKK_K}CspBFy_al1a9VB3&wUOkoUedGyaY9E>N(%=lFNul4DNG-mT=|!tAZkI-XDz63y zglbXB2IQf5_R2;%&W0L6?o$1cr_xpJQ>Wu)X{yue%STMiO?SRkBd3ud!F9o$1T1_! zzT>C+{L`PR=akRR`9`%}-q%h?>XI&L^cR$eP9YL%G*C~)8o#TvQP#cuF+*zE_3BdV zp{dK%`728T1fArfCtR*<)TJ|C`m~`<7%l$&$oaIm*uZ;t53Z`v`egaZG98u#?rZ1O zGCGyXfBvW@+q1N;+PS>OoED;c@ww^Gcl1wxq67)mE2(<5o6g)hb`Ph@S@uM}7WM6> zMMbPR97z1$P7$)FR_)_xjT33t?hST$&At47P-&PG`hfBq@8@J{rN5jq>y2WGF@2JPgVa`xxD%0{WPwbQEKU9G@Vsrjzd z;#riAZ=qfNeBKWlg;l$gvrKgjc_{LGKZ1Oxr_$%pIeo#M1h?^I?Hsk#+}D&xt}YKt z;?Jp*JQbBWjB4<_79r>Js$O0H^}DJ2%(*2fbE9RIrugZ-**lsJ^3S(h5`T1-_f_M( zDvx2mluV;PSsqAOTK+mp5gTcJKImSvKBqaAOfAorO-{=>waTmepPRF-vx-Dg^XLKu z(>f|ih^GI^%F%s$ej?EFXUi(DWRE8QBjfI<_W38@@xFGw5}#bm*`{Jl)XZDn3$@fN zT&2AFmDAJ4m6)E!eF;jCz*!2*Cl$3R#2Ys}m3uVB z_Y}!8&=M{|9c4&;iH;Z(;-wd|QjP`DH6XEwpGi9c1`%%NUPJ_1R)2MddY=YK zdmlsa(*`kk;{RjpTi~pmy8m|<3f+s65G9JzWzK0zbIvp;N-ABZ>(ITVl8_|fNFqY+ zAzi2>QD|n8<~%cVra~cpq&G!+LkOX~x%OXcKhN6xyU(0?|8E~>?9a2-cdxzIW$*p$ zXI~;W9WOi{?9}6Nn|Ox9MSevydj4)u)nvq|aDK3+$k7S4AF}Hcb*R(~T2pj}T~lPV z%Qg^%Zi&pk)IM(%uP?G|iU2|Fm2f%Qy)3_D{(8Hn2y}&rF;<>>i{?c6=l3{h56k6P zw%ja^(FwIzvU3)7==(a(;)r&+wt{ftQA2PRM-UE||K=S;ZR#wJw3diqJ4yVja&rJu z61Iob3DHU&82xU?yZb+8-nOMwh+rAkuNpqIE`NEjM-lTvE`Ba2R@iod?ST|TaQqw3 zS6`}X1!XJOYYQR*xiEt1EbkdJL$U+Zp6`v(?}#Q?D}L1t1P|VCnh`kgLMFU-#&j4 zvODivj()1(mJv^BUGY~vIaPrXa$W*|)3N6>jH^+%u=_1%_}T>uBKX^soLFGX#D0Y( zVR^En-z}BJ&|49d7ZLnzGX41_h(Ip>LT78fW6F79)x&@PKrJrL>>rzYqJL6|Yr%Ue z&k9wW!nFtM zO1|A80=ZBlO1*n&<-)S|AuR(bh;S{KIpxIyIcEY94j0*6{LQzYoD@QKH>Y^;w@o=6 z#F3{Vfa{Kh^VbFEmmmVU(5IE^`@`f6FYkW+2Fc&$mp?{lY0;@e{JmDZ z9ZRcJR%mXhb|62b166C@<`MRRNar!TcCxY-AmZeMm z67tF_E5l$2ffPjWni;7dt!Mb~hV=#EIlAVEaJj6VdoG=u;i^xP;ex2n7+m%Eq3H)9lM!b7l=9T&|Rw2Sp=Yfld&?Yk%bA9=9HdaJWG0 zwC}F^O9fr-@XtuWQ<-jgh0cw-)bC%Z1ve*jDfK|vg@wO-@x5*tkb($aDQ)|6T7ezH z71%O1KrR{$B<(1JYf}3{|I7iTAcE5_Lf%+X5yHjK&G=C(3lT!Wd^s)8eeJ^RprIfa z%g~(s?M44XgisK{X?gA=;QNQ6AQ#K9-#-|G2%#W?)AHPxA?q11FXZCqvRK`xe2VSE@0A~@|Lo(N9T!Mu=*pGyS$r9y;I5W#7A?jz8G zLP0K0+x9B;YlhJ~%^};>RD;c0BVUGn+s1Eq_6ru*!{nqP^0w_z=*`P;(N`c@&qO<_ z;H!*_04^+{!fz}*cQ1MIoW87$a&l6q(KnV>_Iw6Y5=8L#1iLostfCXc(3Thka zA789}uuyh8ITXxSr)6c$l7403_pkL=v6e^3+NeRWPG)VqVVHh;q|aqHD`-dyvNp!a zNfjlsLtS=u@ZSxvynx_u6Lu96n{ZFf%hDi#i>zsDK9**RK7^SfL&1E>=2AkXc=cSm z6?FVXQMh^?i}?mn|M)G`7t^kYS9 z?!xKT-0@cu$(KtjUa5G#-TAI2G2w7I@xk_ZBRFpfPmLfuCk0J&WH!wJ`saWDK#Gg7 zC%KZnoil47FFKh(S_YOakw$M`cQq`yEAT{$!K7G?_tA^hSf23()v=phJIJRhfYl6_ z|6J@*=lOUj6zm3cC{$aMuT%35O%4`pd)NO~l!_2tk*29mvXk{^`u_1c5I$OL zPVH_1w7XC$mf>@8PGU{+^M;K&?zC;YrDz#Gf=g>{j%PYyUJe)4+36Gnu?g|<=k+fNR?5X2yQiCe;<#{RxN&NgvwDJ}xOq^OOw_MCp&uh{0|OVmmj z@1u4FX3wKH9q*{({>hPyAg|VzVlIjazqW)n9;4`+S3$aOUM^x7*n_^S;mMIUuQ+f) z3H7(T_36LeA%g26=ZmhRmE;G4?}J!dy&@sta%pSLex8vQk2(E{eP^m8ADh2aQ)S`AR7g|=SPgmB=JpX;a_2Jq|)CPT& zj#~5{x*4cZqr%&u9~6H@1oySp=G2OssCDuJE?2wMQk(N$9SR^=hVe>uao@7=>|o50 ziV!ZxvTEzFi$m``+bm2yr^h#V47#LkEWUJlG2eXg8pRewAZfMQ; zh8n@T8ph{vJWmL+^Dlg=2Bla2F)+DnAMJ5p#yQ!4bO#9KRnql5OPIS0}H^Z||3iJVUsa?ii8$7sZFgN}i&9yHs96 z#{eA@G<}=+qd~`JlY46fG$_<^bW}uuH9IZur9Bw&sV5J7rW~JX#~ly6f|g zO5XS`L9+ofnNs)_DHBq~aUF)hS*ywECO&8sShd zUp}Xb$6Z>+xBL5sY0RJzSPv{AKWA@`uVWcMG#>qi=n5%_;53aawGNdUo%2b-36C5w zx{|z*i?zTloG+u@jmHbe+}Wig>xx!77)o%SNU7qIkjGdV%Le?O(Q@g*K!&Bbh~OM? zU5~(bgPL0epCO}rIO4(*(zl{-g2G|1=u&anb=yalVl9YYam}sGf7zBO_-y8OQ*)spf=_YLt%SDuKb32TC%)Cm z)Lak_m!sX{f9?#^D8nE`?}*^ESXQav6k1a%Lek2V3K6aHMj0LYyy+0gg?dw}Mx;`>`tcgN z=B;UrQ~VU&|3LS7VF|f65IY$eakd9j)^(>lI0(VLfu!GAF(_Gm3f<;H&kceSaStho zs5-en_fY|2#?wnPp4vSsu*bO|9d6{Ko=D^=bx+OSVfq#LUV;>h@Nb!udzTjeQ9b;` z2let(5iVCfiYU2-@7-sr6<++w4?51}9zDMM%G_SZwRK8m>(1V8OXVQo9z4sRS}Jqj zoz^JcYR78zadGd+h`pr^2K#z{|IohDL;L*n$i}-%Gj9o}u?JER(R1;EQfm*Cfe7TP z+~w2KU6=dbqswDTg%m`fM*JH1f8!n^T&}8QkG8fRMuvYAWHmD{KM`#|NkD+_TE$o0`T+e*up2;!`Q+8KYnPVb!*A4oxjdn+o+ zklRSLC!V#rv`e0NcxCWiL||SM0CB;lw@cUb7jOU9h=%L)+inTG-R6Z{SXwKA>w%?` z+fTWKGrxSIv|L+4(75MP@a|N$6WkLQ_a&twfQ#&(UIzP;r2rzhL6l4A=Poi_1pAVd z#I`Fg;_yAEmCSh9=i)kH+R6?v@zk0lVtdJDt zcG`OANWr0}ev;P5=GY$R>}%(TX46mm6;O73vn|KAwX7>C)dwRQW)#>K z&QK81eAC-GwoP>Ep=@5rg__pVXAD)?z5%SwB2E}BIyZn!VC|Pig#@_qBCo11ta}n{l9+i4|XW%v|bGn%rkhjLpoyT0AljaY4$W|M6hE- zzn@=5bNW97^9=Nc1qjPUZ>jWLW+uvB-jM(B?O|Oir@T;)oXWKO%*+%8s-^$MJ)DhV zdD6>VkT=StEk7e13LqHmz6txd@(AI&=!P*V2zhsQD3~v$tvxvZiV(u(XhauiP4$b@ z=nC?s9Xv9}q12*JE(!JOnhpV6yfe_uUwuFFq3~nREez%v{5=>vha`J5I6b$vKKCW? z650pJ`|dQtv2Cz-NzXu0&5idcMf>hx_QO&f#AqrNePhuxEaz0IT>vvI4#IFb+U@af zB3yHpnZ>bsCmDj^(waFSbpg#1@sGWPy+Lf?a5>ubJ%s-ib3*I<@28xj5e@|qyc@I$?dN7Rt(4tdqkw*C5SELrd5Cso`v}^X z8lqFVG=lTmKs#CEull7rNOv&#X~%c9y5a!>D0-ilk8o?wfXCndGl(dQaJXbYmTpC_ zo&9d1>hPF9A_EE{FdoTn{_f?VR9r*aYpLtOZS96M^$2z^mn#*YStAHPnm77rSs_%e z<_;I?P__DETz-q0g8~HiGNRFOM$=d)y7BszMg`Bm+(;uF3TZ)XLR!CD4uM=O!}f#Q^N;dLItF1Vm@lQR zC(d3R?Kpdc|0Ry|6^g(1!;cA9#=@@S!~A34MG7KVBNAOoU9;@&(6D7UmqR#QdX-HO z&9b{+BiL#-&WGB3oe==li5RE9cI6fz{_wQqL zE9$iR)WV6?oPI@ZJo-)k3$d$osT>L*P&So*`VXOpm!(74cAnRPh&)30XAT542MX%P zsmJ&i=5C0L8xiyd7QrRxhp@<{xVpDTv?|H#TZ7{pbFIy)(y@Lm=0thx1|+ zj&>_m+-s|)-wq4ine9iEL&1D89@XiM&+9niOTTw^5jM^_{_p#Dn?S}{MRN+*W=zzj zaww3m(_*OCx_+Hczo1te94nr_DJQ<1zxMGtEE{#2qkz^R(=dnGkT z1gDSComg?wp;9l;8kkSJAkx&saR8(+FjctKFY+lI4);vOItoijg{PJDlgH5i}GT3)#9PO5) zUZlLp21n?$H|9b#?FAduI{(bK?C8}<2L#){Io)dK%b*|fW{tl14`)-3U6v)@HlL~H2(+D1mm^h%Zh>0Tb7=4l_ zpAVNNY7sHU=EP?-^7(LS5SEL3BGay@>=VlhGFIQNOU2`>rDu-NKI-@qjj63YUU(`L z8a$LHm{CwcM z>?QucxaUv+!DB}8O5x`Jy9kGiMzSWFbACg`w^WI9hs&|~=Ob%v z$a?J!U31ot)STa5Y#YqagSJwA*YT9_rHf7vYHlfr;PjlA>6S6wQulkMG2c0v7Gby? zdoFw(Z=C&*{ZHd&wMU0O9$|qVgT4lccUAW=x ze!I(YAP9b=H(X8&_xRd?sSqJtju!acz?oq&Iw9>I zI{sInD~L3166l|uVX-nS0{z(MPdC1DxUkJv{a;xadhKPI<+Qy4A~4dFnmX{ie5)(+ zUC{~ov1pg)=T=WTDHhlEIOo!P3fAp@D4$z6hXM$eVeGGly>M>94Nd*o4@4lB>%caT>N}u<*I>pCqHpr`1&<>Xzd~e5xR{LJE{6#_X)o@d`Sk| z0};r@v!AN$#6ZTr7dwWRJv&r;yF=l&E65k^q*UtxRl@V$oTs(Rqa}&K;Cqx_XNzlY zmFoFxvOlkA>Yj#D2Q7b+GO^BX)1uMM3)NVHfA0yvSc2O)H`yuZ);kDecH!Ua&0xuEJ$T zhAovv`0`}s^5kc4%^303+@QU(^>DbLwDgtisp{c_W6jF5lzK?MT&FfcJ!;MTcj)K$ ze$`%rHK%;-|MwgBPP6+1Nw;>1X`1JnNIpHzen^>KG8wX$%u9-aty-H zNlN(0J(Jg;-0GfkeuZ4FFVy&ERp?jxu?(ajLa7{U8&!NqhtRdRp08yf!sSAbdH%~g zLml6m;@d-^H?aK!&v5L)zI(%{n!%XC`jzi7;!7+;(u}wLy8JI5y}F#P zl(Gn}ll9%3pM5!>ep**o-;opEX6@M@j($4vJqtw zZUol_3qE|Omw)%|LDZ_criQ%U!$hrPkK1qkcm53@m-luDLF-Fwd~Ezs}xwp>#78%R$8k>J`<0rZvF2&~ST97rHRr3_x8}K?y zi4RVT4S0>GJohaj2&AMU1nnatfeb`&TDbNNT~O@G5Cl?E5rTGQAcE7vg+AsYkdlfJ zbj1ip3m1B&QYqsrUh^M#L*1l!BCn4B=}z&hlu=(&bmDVK%UL%mkw*6@x+5|p!^xLc z0!vQiMr4NKAXGgnm9*d~BQk^FeF4JdmeALh-y86{X=$T)JvHmLF?WPS{Euk!g660DD`cNgX@<+wM$2oOR)%QSHK>ZuB@IiCv5ROp=R%yUd_lr1n+{d{b0kR!`DO4X%NVTJ{{D8D#7)@veT%hRK`1Q zJq(5rNI?XzL$@QD_FweR`0SF?bW4p0nH`_j1u5CvIua1|t%P*6(yOlJGW(^}rK7$m=rZ5`N=7q~rcLDCc~UB;wCdg;azbBy9x7K4M9@4el`7adt!Vx# zALg&1=D-DY;&re3u0}0`X1S6wXT|y2xvb%!-DLxA&2MQ|g#iT+TtbtRy5h;~g8p_r zgUJiIXkL__%Z%4+XCExMeCsjYQX?hU_36*Ik`ArSUp{_3Y-b=X1reOK_V|1CcLj~? zjIhbe;Q~7;HSW%J;d?GHv(8{an=hBvddY3qRSI8ZX11-(k;}2B8aVK~kgW&!5BZYJ zs-eFrb>T%Hzh3pYzdFI80K$!rU!qkC=iGgUwmBk@>#1$mC+%EckG3NVFIl%n+XE?x zxVQGyq@986n?0oC({DVY5qSr%Ps-P@jVDY^$~O;0)9Dwb?`|l2dbw^Bk%9=8VZOJh zlO`@Nc;ew)T@OScms_eL+P57GzFM;0;X7v%zH=I1@Y~%wbXBhI2hrnre{Hb70A>4# z$KJlJ9KzwkNK?#8powV1ah$-+i!ROM?2PM20PZd{Sf_dyCRy#I?)Lm zTi(p4pY{@m0tl|TeA83v=>D8=%_07o1BgH_^f#q?=k?n#zfq=M35XO#&@4B}kne-5 zf4P`%$P4TN6ppCiYbfSqM+~ehhXM$eXLYr5!p|8$Z}r=DL?BmLy%E;3DthHDVg9iU zq#%MdZ7oROwnOl3+vbH_V1K2afR(bk&E0`+Lq2^&6JBrAm6c2^MWCDww& zpDYfIv+Dp%tRa^Zo9erquS08tbxZox5wr4Wu<aw3LWpfBaqc33%c=RXe!s7uVpc#{E-pCJ}*LMGxmC&1y0A?!jT9yMtAeNI?YZjqYT<>+gbb!Ad7YAQx-h ztbkILa));u6Rf6kD4<=(PHIQa_<|>cHNvcSSqsb>l@++Gb+bNMT}G?h&I?wzaoJ@h zDQm&(;2?Rjep{)7w1V!ZUqx>{v&Fm1n6o7kO?y7SPJGCBe!wheCA{ z1j<%w*QPlg*99v~U4$(mKeuaAt2I8auy3%6)uBM0+c2#l7?Atra+VfO|a5*|u^_qRK;i6!DyF-C|xwNvvSSgA@vvv>> z4i{=#6+37gO4{@v@*fP=Q#%wupvNfH;`zCm8^-vnqY;5z9Kp68 z6z2u^1#ylPM4(SA)r?M*`|KV6U5#ak)fg@Dfpt>qFueh`iea$`?Ap3|VJMUrtY~BzhC<^uX(f0xC^;!bdrb0S zkBOxK!hh2j87Fl;KYZ83Dq6cvUNlY=c|1n7yKA~_zdcO90vYcb3Ltn~YW-?#_Y(_V z4))_u$u$(LN4@5r9QrE&W2ro_&Y|Bf(Z6}Yjb*o4C5Q5^nJ+X__SJh@uI@V zUU*wukY^@jUo+1+$R19|PU^XvPwluZI^MiNigppfa{zXC=E?20=Ffy#13@4cr|q6N zdLLXbqgQ@YG+Lyz*aLld#-Ga+^t-Kbyg zFZ`& zvoF*qqZR+VL&?5#{WRw!JIetO$Pfx5rk-_v$-ZQ(;50;w@k=ELHdVU2m#2(0nwsB>= zeae!OgBSWXn9*i_$+{qob~1=Kmx>XS8~V0IG=Db`ts4X-+>?zEkyb`I1ah&i5_pZ#b^5RTp36~gettfWc_RDWFW%fijOMUSDX%^kOKMc_;NzY(pWk~-{E(Z9Gl|% z)xiz3OUgR=>Ap*HONyI9TN3wc6ZepU2-e7u%76%}Pv7o3%r4or$&b$Xlsif?p7hh% z*WX#vH_j;8P$!*V zAp*JToO4}C=5x>+P#ySR+(QZ?4iCGfWa{mJ@Bt|Zk5kj~)CrLBEzQawAUXgt1eb)^~myOY0(#f(X{t zs?|QaVgzz67&I`pI~a_MD|)eI#SVbD;lIPVfN2u=$Zzj>vX;ZRZ#f(8*} zK}2v`xcGf1y$qzJA_VQqKm@0Si{G!(%RovhLeQ=ZL~vTTI6l(LKuRh?&_+g_y&b)p z@BI`H|KEHU5u8rn`e0tjh0*Mn3cp%P4|&DS_M0c?M4V~*bEF`G)9J?ysR-fX=aTkI zH8~iUAO-W~w2W71rTUT=3a<@L`Ato7+RERPtOSf;)#Dwmhm3M--)R!S+IHVwg(=MVS zZx=2`P~O(tk9`|5S5CL}&F+wkY=BOZ?nL2G$(8&^9gtDTttv zLGodhP6i^7i(4i4-9So(6hv^llKzba5y-{q^fK`Mj5Hk+f8|k4dcQ&nBFOV&PJG0r z9*A(bXk40J29J=0l8PuNgXF}W9l4AaF772HC%-&WDue=S&!v9n%L^z%=+SM|!RLF&v6#)OA z?gapEKm^8S#R%l$oFtlE1pBCX19OQVSL`K7K?IjD{kI83AQyUQN~yrF7;U@{J(MAF zALsfmB2c!^TM`faP<}L{Cchko?pEDo`9t~Ko z9EpE)467$`Mp?k?)__NCtWLLO%*KEk&F=48vn^*{CTkBTFV?ir#kNT=!=+e+Z$Xd|6wUW`$qTvI zk4>GRBJNFpc(WkC>094j-~8@;xqS#JsR)tni%5rHv~ZzUrXZkYNJR)*saKyFYT9

    z8HfHDbKXzpx z1rezAiV?^a&)rsm45T2U;(8zgx%jzwrCTbeC!>B){1tnj6ax)?{}%+I4VN?e zuo!o=#3ez5Nn3#5!kIptM@YiO^OxeG03d`zNkIs@Vg#dw3s>p72&5pQ;#HG~K(6XN z=a;1SM5G`BS81A3#W~J-R$jic@;jCJ!bk0+No$DQ=f!QUP!Pds(Sk3dB81_BHrSMk z5^f)b`EokF1+fQkxJX9D2%$I#nByp4DnZ~(i2sh8ZoJEVxM&yk#?M8EuC5#kXd3JH z-w~o+&Pmd4Jsb+y!0C4Zk}^)j{v1Y}ZmF;xQWg5w497agrxmy?AZLY))nT(X~PBWql+LPO-gN35eBUxA_Ebe7A|Zb zT^SA~1tDmqcC^0y4UvHeP74>dkG>4?5~Lsky;7-3>VD%Th(In*i$;7I{$GDTj?70R z*WrWhOVWD@QV`+p`Jr1X3)9_FNxL&+=4MK|o1@XZze|I6HzNF>Svi}N7HJ3)&`ldsc1O0l zV|}B{x-DNb>t3x4i{QIJj20B#I8`V&PGMdS7vK4ErwZ-{v^J#m)UehuSd*$(>2Xft zV{~`T(ib|)${M7kB1~!3N3nTkEe;~EgtSAN-Yn$?$$t4q3+^_dq@rD(6d zjSrwW2)Yx=#CgRxNLntZMOD4?8*Ml>Xnp*X5dJCkZ-*V6l=h1IU0bS2bjr;rIOWDr zXqUPm{N3x)CI+skwd>@icfw2i2)mlq9y;Y_fH~y`D1hKS^+uk$dfM@hx5m5pUo&9u zG;&eRsUAW7)VHHE^9zDF=ki+57)&$twe&5wIO5P}4iw0l1DF?|KVWPCvi%*>U_qlr zL~z=A$))bCx(>o{kqqNK>bbWQ;ppw=R$W8Ee7Us7kJSg{=_ea+w|OBK>rJ%a+Yefw zq-n{hB+}xrt|T2;T>sBs(P$`u;2q%7V*Gc6aIp+Y`v_@E917-3X{#&7RD=*N*XE3n z`<)#M9{ky~S-KSukvXCuPlLVr_#4{Kf^eH5SdB6{a|6suuQN_~A!&BBR6KZq1W z=re>&>+|KM^Gtt^2;}1DCYsgp4M#i5oy87?P9w3NNT(c`)`w12=_seFq#}gNX=Buj z-OkNlHQw*fxji>4v#6yu=Sx!WEGJd6HI$lOf0=GeoLf7nyy&pTVoa1p?TCFDDJ3Qi7ABcUjw9Y=EGkZyNl{_R6}qYmBkgC|GYJxXyz z42#*5Bk3-o0$C}`eUYqOB*PvQC?IME5iKb5KmoB5s8eu0d;Ns^-BdT4&%^NlZ zwU^-1}-}ST4t>%biUnd2wuuemMS3PP!h&gZ%Tz z@cdoolBnh0z@#(eyUQ1a_VW& zBTJ;3vh#E6i8sQ1UJixIZffh)qxr0L1@l|^r?;jeq_(78Dq(Qrm|8>klKn*|xN;0S z6v)@DM~5Z{!`t4qXCaBdGFt4xIy5CLcNUUR5WzCUvc4nYSxACFF4yL%XCb9S@VLu* zd+J$8f^fL>X;$L9e?Jo~90cch+1l!UNn6t`)xI}x&XktHp-`_TdgDIP+I&FvD6<1J z6(L;wT&$_o6*d0~e-X5B4h8b%Sg|%AF{y5NVbF>q!r`KtTi+e}&8mF*=@V#zl`i_M zbNq2P8dJdOLE6@!x1r}+0+phlEx{&|c1+k)GVHE%^| z_ta-}>w^g7@~!EY*7p+sum3#?SK4FR)`Pg?{x7cgC>jdYRuCxL&mC@@GCFa&tPWEU zw020eiwL(K|GC4<|0}p(4Q;?{n9SV_jy<~1{CED+cg;;rrc{XFby8v{x^ddQsmUN5 zE|OtyT{!sV&QR4W%uP*(f(T!p#QAW#rK!;db5oN+AQ#t9S_!4@t<|Dv-`twfb#(`N znI-*Vy}qGczj@acx7yq<)_~K)uPc80?S8Sbbrez2Mx$rBX zQol8;wdqLD?vdO^K0>}=A%b@d$(~`Q`W+e)4Gk-dY%h5`aa-H|$r*i`C*#Y;6*p-~ z`zw1>o%)X|ezAW4iv_Aej~(p zHxc6EjD=aB?e81;_`t0mQV@Z=n&~XPvHxUEKh`SJW!y{$fn0BP?w?$qPo*uskz~9Y zU7vMo$HiSH9=*faw~aeMhvZT{wh*G^WD8<&F74|f1rf7`1TrR0A;g>e zyGF0Q=*g_N&S>EvkZXF(N5s2NAVg_iM)d82t0EunZt9^0(Q31s)9&?^RH`qpBgC>d z8bpr|tQxI-tf_|-MC2bQYtp#}@rNc7;>f8DqJ@#l(cd~Xa}db2>d$`3w);uOja>6; zd&?qCYt)K%-`mAQ3L>@~?w6eZAtAn=M2MyzJ{@^(<{8n!m$?Y!x?^9zWR1@W@!@1b zyn6VXtdpNUCE9RFu1ArYgh(}B=_0ny8y>0GxnA_dWj#HlpdX`$D)rvWA4GZ&Ullna zcbJ1fF03Ej$hgUiw2!Zkyz)SvQ*%VPzI*SzJ0nd>c1Kz@?(HCu3++TFE)J<0?Xv&T z$lB?B9D5+*Ns5nN{m6pvUrW0BT$8BgAdm~ahrHzKnbGKbKW4RV-7ayU zP2i)mhB__7d+h^HtUQ8bj2$o`8h+r!$ja#U1X8dqabMC$3Acn$mM$b zud4<}Gq&x?I(A+)4=ISiI?>nuOWH-_n|5VQek<%CkPBl|sXxDJ5v}*nU6Js&VJ8L= zftpro0^bGo*T{C(vV2Z3DJ#?Y;AZ5Bsv{k>ac`wdf^wgeH_+9`G5ls~iLPkoqm zQsFEIfn4q$_uMloMQU7ETvWPamh;UE&;9tk)4qx2GtlC>oK49hCj%N7U%4V%&z-r;-sE=4g$I2^#{i0cO*pq9fX*5&F;weEgwzv zSfA%11rcY_2}E`1G?MrtMts$_Rdi;?mx;1R8aoK&%08AG>v7S!$?S9H5Mux83!?vu z?N995b%uu&M0DAm8@p)Oxyj-a8S(E+rbZuK)+SIlZ-E8J)=v{J6`nBiqk!$AObZ_6B$$TqSflOPsBPMOCSQd4pa(sHJNSRcK40Z zhF)eOQRAKjQV@Z@KqHy!i;Lt}r(_?J;9R)VA#Xi5pj4;61hH3=b)YAU{sph&q2%HE;Ak zy}X*$79fW6dw<8lRyNLO}#-o$h!3zI9@5n`vH$7j92rUdYAIH{47zsO3}Y{1v?tnYi{iQH_wg5?_zt5esObF(KGcU z6DU5Af(Y&zy3eQ6HfAwm$Z3y8u57(0axujRB9LoQVQ%ck#|W{U+pE_vel!vry*u(8 z^*BgD1osTJ=|qqC1B`g6%a@T>7qyC>@_1thfn218Si2eL#)=!UJ!W6NKeFhh3!-hP z$3Y4r$d9?liDmzDHz6(d~>|u82O; z=kWwm5E1krvEreOSa#sTtevN~iu@R!<>6^~Xd8asa~sus9BcQP{3cmbD_iy22W<5Qjax}DJn1etr&Z%TE$vBDQyJr8SZ9Eo_g)KZhgl-Emp;!P;kNgisKHb|M+ywvJrTdRlbOo3|%0 zFXZCq6a}&P_pIINn|eiF?=&@f=D-CSArwTQos|0Nv`UF9rxs`Jq4>ZPVeo93eVqm- zujx)QbbRDJTR(C8n$1}QC_a#a2yW+XeB6KDp2UO(k4C2T$a4_LHM{=6^p>j4N*3l1?Y=O{V~L9aX%te*f6Z&r*6Z&tJXz;rOD&|K%h;@aL~$ zqwAa(i)TzL#*=i`Rqr2b_!}Yq#q(F!T)MER>c9IYR?++wQV@Zs_|T0Z*ZouU?>}25 zejPj0K_J(L&i!LAhZaPu z#hdq!eX){CwS(uc_N{N=H5*#h%RSQ6Lkc3+AMY2dMJG+gZ|C`|!iEjJ@v+L@;*4ev z0=ZWH*)P_5Kgk%yHCGKbC$6bc%iHvR7Y`|jC_CIQ_TYzv_=M-LHtc;mvE=?Uya&QA z0=Z`G>ldT>tC%Y0`K!nGeN(jj*;Blip40PJvHIT-rMExREMDm%F1v4d;_fc>yx~iF zdPw29K}*aHzX+Y;;Dk1SYpE!*R!o?cIV1HH~A{gRh+eDu^` zWs(ppN%4H8?mA_4moXRD@;ZE|zp*5vjL5mJ7}4~_B)OT}{C50R=CS+McRAdlmZ!G+ z2%#W?XNRqfS{pCwvhA(ziMjq)8Iu=su?+c+M{{Jqo!n)1tb1aI|5e6N5W(L<# zv+*-omoGXead)j*-rFk%#puhiUTKZ1vG03*P^|2!j>-7jT=QLTKAlyq>p6*2>(BC# zf{57*hs8dAi)3$O#Qo=vjr7g@DRI_Gc@6@(HYNte)_Wvl9`^>fUOy&M^yrU?FT3V> zNI}H=Ylp?I`kZ7u$%rwRu8Vy6f0!!8#cjf^~L-IQV{XiyMtmMe?v9@ zmhDluS>4E0OK$RN&wIc@AQyd0j~#o6PV~5)5d){3n$>#P%tX6dGd!lqSs!RkexA{b z5TA2@-gWKkUH<9aK2fRKER7HfBG9rl%6O$9>&>C{y%!qxbr8tKGG>e;8ROU+?EQypCjZq#y$Aq}0^?UuV6P-PQYQ+<6WHxj3h>Gc%L%9y|hwj5(V1({(+)s;{1| z5kf%(YF(*6KB^L#{MS|9>hFI~U|z_@&-cuxdfd-mvaLbA$crPVd2b)MM+h z@P(I)o}1q^QSH!e-c^lv=VabOaregb;=?2M<}?`WN7weOy*Yj3Wb@ZJK8iY?`Q2yDldR$v}CHzTTO$eHuO2HlMocc%sky-MrzCZ%-fv5pJnoesV?P+e&{Xst?kkB!c|4D^gJ`s^|V>ugtIp1bjkBifkE_wy>A{ z{?f#vcbkR-o(J3!yE*1?b%b7bJc2+aU0vC(!i6vcOLES zRr-2PVpfN3Ifs9z@{-5x+fG^!tRkM~SdBfY%_s3uEO&|pk zeYce5EZ9uw^^BOe`B>u5^E!KxUdJ2+ay{O6Th7?;FAi+}NZD73hmN%J3Quh0Aq5d` zJ-+)0x}pxn2j*uGW=V=f2V^ak+2vQn5Lr$+D%^ z=FeCDqD$Y6dy9toHa8SRxH4w-*`9Sx_bT3o%eBo70=YilQ&wtizO_o%$g{WH=)H7k zPJ+4qszshi-)r}8Dk~M6^YcBG>G=a}!OO1Aj(l40MsM&R_iBVt5Rtp3tkl{(@k*P> znuqhedBcx62;^cJ6aKg;sdU>Od-klzDNTENL#sCOkb(%e9zX7H6zO$&wwGMe+(950 z=QQ;zvd1-S^A6j;&D#G}J+Exhl^P+GRD`u)G;cuG%yw-OVQSmoKeVs(&_2ICKQdx( zDYWgSwr#(3dUhmy(T&~%+4m+&tL-h7wtezHdrGBk=hM1u|1lu6xl2#-t5eCZ@Ek9c z$IqqLrtfMEW05QGALq?qwmpFqL{J+HrTVVu=d6ZT*Y`@BU8!YAUdY8c9pe66x9xQn zew6hRR_ z@15sPcM!<+=Ra2`7yeCqE%gZbNQ0BTa~GZFwe8&4Lkc3g7Y|FyTL#VCU7qW`_x|sR z#~yhg@!4e~lZ(RChErRD=z{9QlQT}}5R7*lO={s?@p#DFLI|WF!j*A$*A`ySK_TzH zg%3IiA7yHdmd?$ z_~7qXi%y{tGExwMmQ^ZwlJY)#V`1WtGy6ISKgzp6($95vXaU zE_pE9>$`4$qVqSuClG;L&tEb!*`PhuV;=Vg4(RyON&YdUcEG9oEB}k^mGS-Tz~v?b?lkH+s9Orbv3r($MxdYpvADr&DX0)QB56Du}@C)*U+Lh zf2lq)_T-uLd>g-Wt~~3^$XlJ(W_eX-c}PJ7T2`q=C#vYg*A_;uYTDO9AlK-oBV)DB zCmH?O9_=R_h}=46Zln|094UxE%hGJr*bAa925*Ucebspm0=c$y7#Taz=Hi&rv(7C- zZKH2Iv?J1T_30i`5P_PenTZFpqi?O;b1?_Z(;r79b@su93Ka# zWhahbcw=-yj{na2UmQs zHOk}XG?s`dZS&`A#u9VmY)>Es5pJngto^xY(ZKrA!7Z=UG9)kL;+%dQM=~RipK88mbXOK}7Iw7>nzX%t=?Bo(R8{9lfl6a|eN3EMwfv%ve0c^9*fU zH%sgp*E9P1(1scz6h!d5q3BSLOA<6LiSoDv^Fl6u{`YLE$9T5+$2GeqK7H^;TE#j? zBZQKQu=Y4k_MrCbozyuyFyGzj40 zcdDVQNyfEo!B47oO&pzZV|42NISJ0|_gYjc@;H8jJi3FpR#2Lr@2*VG^%yQWF*|X4 zgBzo@f4o;Cgn|fuH+*O_p=lmPsqbHDlUV(5UX5NvUodCT1rOH;loYnB*rjdQrwvTMQ zyOib=^?o&e=Y+Ps)VA%BOu8!});n5<+ID`gk#>pSIi+oX_1>MOG@lr>?b)l&j@&di zC(@YO_R3v8E!}-NQI<|GMtL*`So*;{#TIoX*jHWqLl*iJV4bYNQ~7 z-zGmXW9l(Y$0inpe~J{*oIWCuYg1xSlD^{vW9rB?V-i%Fih~T$LJEor7 zeO=>&jas6(ZyZ(Nx8JlZsx zb#tbN6x1l@q*Sk-&nM0wG9lXIxA_UAAmX2Q2PHrGhH9=y;iojMo9MOZrf5eRw<7|% z=u1P=_U9Q>PAzIPY-Xf`{~gEdK0|9VLdHZ&owfG$O;!7}k0}2;j-em|?L;Hw=L(8i z_o*MPPGf4!3%U6DZ9KlxW9oh9FDkmJPL=2l{&yThK?K@~KDht%b-m&wIu!@gO9yz`!C%$5OF{ckxTIGKftrQ=V zY(DQf|G7ehLrFn2B?O~sPh8cIcl`;W=$@5#hY`VP;aXTWnq)5yWFP`5sffdb@MT=m z{TA=RyXHiuZYmBTg44oPDb6yM1~L$VlvKoFLijTBNLT-muI|^m8Unha(}4nA@%b!P zS1tl5e7*}HL<>rho;<33^a9eAlNaSHT)gYs>IxAKB?Tc`pj9uI-Qu;pXHH~YNpT1f zoHks%-`(g65xo0dD5;2wb!B$(Q_T+^|0_prB+sA{+7kp)b!8|i2s+crN0-x;Md*{J zG#8i9?D}^Q4uwi0`SNo*1uBrSgml$(?wm-Yq^~Q<%i&^;n3F;fp>-8dQW3xKbJl_r zQ5<(xS7VK?*z-;O9E3w5v}l)~OP$KcpyY*I?DSw%irI)77po`+ff66ESymiE1g8yGoMlLRg$M8P~yhb zu0u&dNOUQ+mvq&C&YZ}MVqaI17o!aqYsADLBDAgoN-Cn_7__zAS{pim52 zU5ztZC?A7XSC)%CU+U)~916vtXqTTGEvQkXs~_&26Dip2$DripaB-v=T_HlpU_ePl zSY6?0iQ9I23N5$un@ZIS{`hLc^x$;ba&5bz=$^qMHW7l+ZcELrvmiJvTz-qXu{8cF zjqRKf8B$UahmLOyWZ-BC5u6q-Zov;8-w?<^1X5BFhX~=nt%iHfCdRT+GBx zxwhRuA^Z3dl#>IroZ&4)%Q^!{lQH(}}iLP?vD?xC+hKt&Ei8R`y2qQ9X z+l7*fC?A8t`yl9w&(f3DXQ-`Timrg7PxZ41sgpYb;BkW0)lgG&zo!;m;V8qQ5L)u( z=SB%hl|Dxq7m9r1tT&ZGYBOWQC?T zP**_VcN|6|Ld%ed@=Jw?AWdBC`Bqnma3~am(zcuDT82av%P^GJrWc#EE)~m=_6iXk zgF;D*&@yH|O)J7~+8<#VzxT;Y?piUeR2^CAne^;yyxV^pnq2kPwWaFUm7Y?FKuTIf z{2D@BcEau6zRhQ78Hg}x;^K1-C#=6ZkbwxKq(zjIQAtfs_UN;&RQUOj^sJnnwd& z#W|jhP9#mWo%P$$n6(EY97;Nb))iSW8rVFJ2$LqRV}0^s;tSg527#2c2=W*gK{bqN zolp%;nsha1-lUkd2b4+~E!bN z3677z6LZuzh<0FV# zEdwbgP5E-9b?dV(kWmo=xlCGQum!aYn&FS>yfh_9lMJ@3lu(x{EdserTIUpaqLzUa zlO`GLp<0KeH{&q^T!cU_ zlcwkN)v{BqX!x^SEdwbgP5F*(zO%Gxy>>Cxmt_D#87|5TxlH=AR2hpud#|+U2U_Dn z6qBZWA0586^u5wn`ne+`j+C?rU8;GTyGKd`T_M7xiK|PYM>=d7$Up>A(jv5sg`H}7 z!+l+;kl+dq^TYYhHuTW_CN$u(jv63$VR&>+uT=Gd;*GWFwq+YwEQZH&x)ahqTd?Xd6Y3EA?2+}l1k>)aK z%8Az8CA&vHYjB&EffSRbd^yq%9rw`{Baq9awT!#Ac8{zIWUwb5KHf5^j<3}Is?!Vo z_}Ed}N0UbUhGZ(!|BlRr~|({~*~e0x4+`T1H8-dtz5m5B4~% z6RM#}`}SZz4(w48g0yS6Oj_%zSLa&ZfxzZSF=>*)@hJAEl>-$ZkjtdCjKFubuGkYr zCnim`Wv>*i8{gFkq@+b?U0u1gd*bClSBNla;^OEMUr-7WNJ)#(GCFm-Jdsh^_uW|6 zeo3*1Nt3QVID<~{=q&cA2!UKCt#x(z`L(_6m-sP=6q6>n5{4iLNM(wi{n zMHG{!e2-i`BxdVT5dyhPT67f^T_MG!sUGj2LFe2VdyuZuB9P0ZwG6UgL~M=}lO`EC zUHj1t3)nm@0=Z0D%ebJ+<&j#I{c#CXWL#p>)Gr0{f^i8Tl;NVj2)RsJ_fbL3qdfLO zib<1wAPXh}n=7Q4G}(jO6+14e2!UKCtz~?6#ck1bV`CAvIlq7Ge~?xo>|5zQdFiCs zzFt*h>I?3dg6G4yEn&oKK7v4&f(Vly!iX;k(Q9l>zfCaZK(DHF4uhZXfd`dNo97EE zL}<$7m>^iTPV47CTydM%bBr&8->`&h;iZ$3BF{Xp7(o<7n6yS5BpI)c(YjJh5&dw! zqBrwg*PIcrq#}rd2$R;@J&D#D?4|GLq*`T0WPSbqRo(~8bM1*~5k$cevPo+M=S}8j z8F4e3Bnpnm&2y5i*#)7Hf(Vn=2%1Ta@{eKW4T5CgTZ(y}icm;Fgh^|}Fv@>E>5I!} zMoZLZm~kn!yXLv>aTxJHDuO78FlpWHa{1{$mZ5beV?!ME;mCma^goTzx{}cZB1~GB zYAUUnm>!hMj9!R>BP8>j>PM$Wq(cw|5hhJqQ0lw9>%3XpJspF_tN--dMCo_U^977J zm<~Y{?88l3mx^RWMFz$*_UGm~$=0Q!tLXevAq5d8t#uX1(Crl?BnGhuFwchsHD?)& zP)I?9No&6fbfpm(&)9#M=U;F=0$sTXq9DSgDGHSO;f;RY;ZN#OidN>r{1wiAndf>= z=1@8WQ4nF$dM+dITNa_Xm63TWY;nwUJyVnxL6lU4w02bUH~K~Y6V$`Z+|Ya?&JLO9 zx>RWqL_vf}>zY%kqPi0Lk2^XOY2iW_xuBf)85&yX^ZQ#2uf+&bEY5H2D3!~O#4+{IG>rY>P=={w+ zOwsA2`bVde_Bmq!0hDrx039F-NCuUxKO^W|CAL(6@Y8-y{e25+8Hk`29 z_K-PtJKwIq58+HYm&xxtIE9oTjfhgEzkm4UXMXx8^Pe1R@WsSDC)t{fY8?C%1XIc* zf-hLa8xKmR=SAgR2H$Jl85Tcxzb;5Ygh@+Z%VKo-%=`sW@J+}(*S#9bKnfyES`b_h zU3*5z*x9@x(U{si*CXUWhKnEyB1}3J;mjf9$eT4HvV93sDx@I7q^X2Tb*wokV{Ue~ z_QbTkn(oPhxY3?iQfE-c=Ps%V?Sjih-bw+R#u* zs3=+qft3b{w0F9@mg9tcUYtsn%hU~+}f5Aw{Jin6tCsGBDqB*pRiaW zad&>7J;}@kV?4sV6K?_H9OX5_`_NiVcB_?_d^X$7_|>NGD_*{G8t0HzA#aNr8P35s zG5+Qda|!3DkR@)Nb~%~z!=NOylrVybIOCjOHZ(oAY^AO$AYv)ZJ`WwPsYn`EH}f2* zHDj!zXS5RD$6IUG_?=r6MT9YALHCA;r7#AMI9yYjs;k22j0o(>(Km*yZzvsAyFvs? zp>F86Y*t-cdCSBvAdJ0=KTe`Ab(pRmg)71P+IUrW9j|S<`h)(m4;(=RW;^GeD1WZ-<@gyn zL@b4t*f{&nbW+o7M2HU}!m_Aj&JT~*7Jqp^S`{KBzhYbwpRJR>$v@aiyw~zcdrxKk zhj%76PrIC6-<5eSjv#{1&@(5xQ9NFs4&45!XwW)dbnez+qYPjfN3y}@_L_>hA7x&P zk(2#HZklpYl=sjWyw+kOBG`iix;I2D6)eWN9ql!xDqR)o91$F2LY#lMy&*k)?`GLK z-7fI`kaW*5C&oR1rw=VGOdr!%5IBMeoSQP|lC>rN!x0V4R)+NlDw)> zG#&|vI6F`1ZcJ88?vR}$d%;Yt+SJqi=$f|XH>NE1XLZn@J0jwIe$UB;O?`^BIRr`} z!^vX8$c~Jc;0PkvDm`;{ZgI!fWLw!Zv0X%nss zKkrSHePEQq=o6pS(!%cMZsQCgz9ND@hkCFuV`DO^ayfs`D6!-i;iZsqI(O{P?xxSK z%#l^ax(zy4|4`d~V*X==^O`y15k!P;v~zRbDQlUjd9WwKXHjI%*}-=9%XH51HE1e$ zDpncJRXuXHw14E=!j|HZfasm|Ap)iFUe&qNAG@@3*cO=s`&5`2;{BCAe>ge&?L2S0 z=Cz23^GE%U3!9E5X6=SRDP-r_S+#zbSv!s(!s;l=QCE_S>4D^8!d8L^l;TtHU2fWW zdqYxQo@E0ZL4=-_-myHMtZ!MjZ&Z=zusasYeaK$$_Jn@M;IXdej*azlRycwPI$e$! zYKhw>j4eEWTavrRXh@&8|SO;abpXsbq=&dtin|18sTo3($#!Y_kkmb zh-IDb`cRv zVf`_HGtM>PA8){Gg*N$(*> zMqL9z;7W|$%e&wKP2cTAjErgnLEuUdVbz47wPML3VkxvltymBtT~0*kXMLlQ>Zl^s zQN1BV3awJ=+E%J-Q*R~mCaL!H{oAIjfByz8{U)|mN0RNG7i10`VLf{UpP_%plfKP^ zdNTLx>C#zo{t(?7d!_R+{};O&MGSnvlC@&(ijbXKW*}>~m@k%pG~*1iDx4ixrFzm% z@gu|;em_{9KP%V=qr)A-K;jJdZ5qP)gDg2{3Z*c{s0YeFbv{PP`*0R_d-N}z8%7>NiBfpgQX40Y9Bx^h}}jtG=8<}9nC4rGZskQPP# zdt``+_dyj)B~>gb@53q<@(;57tV)sho0VnCEg4lTDOD`0k1&D=w)Ws3+V{yJVkx|v zs-_ML^(+N}QdVtAmJv@=Yo}VRg=#gOBaB1{U)>2>E65xozAFgcOy3QdRgj3tVmLn6 zSE&*csje+jUE3Q%ZWl00WCq1X<@F&Q7Rg@WW{gkT-_SWnebJQqqA4Tdk${M!k9JtZ z&y6QilraWKjKi3k^z^q=hlP3>V!N1;t(PG&Dnty~2X|Qf&NBu{oB|bwK)VzA&bgRm#S?+;0PkDzLGiarfPe6*)-8P zB2dbzFhOLq@ZWXOn-z$#T1^ly(v8VegV&*5$@w4`u{#7o{8Zi5d}?F8>;p#-fw7Bz zT9#^qH*Q>%L!gxP9Bdy{*9syY2^k=c!F{u?fgobf2_6;ed_~qZ5JWtJ2)wC&lez|F zqchgm6X7`{vhz$ER7c4itY@jP#5;rKTWu)+KZ&}7Q^)ibeZ(UH5wi@cIa8`Ra|o2O znp5W3MfLfaVOu0JSk*|rhH*u8qmgQnbBCxt|4#iwtwc@{5pg}Z`<}7QHGe(h&&pyVN?}H&w}Os6SvdIFEJ5H1BG?lB WyGHc3*~tf67W~?lL&Q>;&;J8akcPql literal 0 HcmV?d00001 From 1e7d332843b9b1304156557f49744fee2d278758 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 19:03:50 +0100 Subject: [PATCH 114/121] Pin versions or point to Stable branches for Cura 5.6 --- conanfile.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/conanfile.py b/conanfile.py index 1ce2b1d369d..3a53cbf5292 100644 --- a/conanfile.py +++ b/conanfile.py @@ -50,7 +50,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.6.0-alpha" + self.version = "5.6.0-beta.1" @property def _pycharm_targets(self): @@ -297,22 +297,22 @@ def validate(self): def requirements(self): self.requires("boost/1.82.0") self.requires("fmt/9.0.0") - self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") + self.requires("curaengine_grpc_definitions/0.1.0") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/testing") - self.requires("curaengine/(latest)@ultimaker/testing") + self.requires("dulcificum/(latest)@ultimaker/stable") + self.requires("curaengine/(latest)@ultimaker/stable") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") self.requires("curaengine_plugin_gradual_flow/0.1.0") - self.requires("uranium/(latest)@ultimaker/testing") - self.requires("cura_binary_data/(latest)@ultimaker/testing") + self.requires("uranium/(latest)@ultimaker/stable") + self.requires("cura_binary_data/(latest)@ultimaker/stable") self.requires("cpython/3.10.4") if self.options.internal: - self.requires("cura_private_data/(latest)@internal/cura_10561") + self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: - self.requires("fdm_materials/(latest)@ultimaker/testing") + self.requires("fdm_materials/(latest)@ultimaker/stable") def build_requirements(self): if self.options.get_safe("enable_i18n", False): From 2589875e0e73c4c313e48788f508a161670c4622 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 19:31:14 +0100 Subject: [PATCH 115/121] Update po and pot files --- resources/i18n/cs_CZ/cura.po | 58 +- resources/i18n/cs_CZ/fdmprinter.def.json.po | 306 +- resources/i18n/cura.pot | 308 +- resources/i18n/de_DE/cura.po | 1571 ++-- resources/i18n/de_DE/fdmextruder.def.json.po | 208 +- resources/i18n/de_DE/fdmprinter.def.json.po | 8238 ++++++++--------- resources/i18n/es_ES/cura.po | 1572 ++-- resources/i18n/es_ES/fdmextruder.def.json.po | 208 +- resources/i18n/es_ES/fdmprinter.def.json.po | 8268 +++++++++--------- resources/i18n/fdmprinter.def.json.pot | 231 +- resources/i18n/fi_FI/cura.po | 54 +- resources/i18n/fi_FI/fdmprinter.def.json.po | 256 +- resources/i18n/fr_FR/cura.po | 1571 ++-- resources/i18n/fr_FR/fdmextruder.def.json.po | 208 +- resources/i18n/fr_FR/fdmprinter.def.json.po | 8242 ++++++++--------- resources/i18n/hu_HU/cura.po | 54 +- resources/i18n/hu_HU/fdmprinter.def.json.po | 265 +- resources/i18n/it_IT/cura.po | 1574 ++-- resources/i18n/it_IT/fdmextruder.def.json.po | 208 +- resources/i18n/it_IT/fdmprinter.def.json.po | 8242 ++++++++--------- resources/i18n/ja_JP/cura.po | 1565 ++-- resources/i18n/ja_JP/fdmextruder.def.json.po | 208 +- resources/i18n/ja_JP/fdmprinter.def.json.po | 8252 ++++++++--------- resources/i18n/ko_KR/cura.po | 1570 ++-- resources/i18n/ko_KR/fdmextruder.def.json.po | 208 +- resources/i18n/ko_KR/fdmprinter.def.json.po | 8226 ++++++++--------- resources/i18n/nl_NL/cura.po | 1566 ++-- resources/i18n/nl_NL/fdmextruder.def.json.po | 208 +- resources/i18n/nl_NL/fdmprinter.def.json.po | 8238 ++++++++--------- resources/i18n/pl_PL/cura.po | 56 +- resources/i18n/pl_PL/fdmprinter.def.json.po | 264 +- resources/i18n/pt_BR/cura.po | 50 +- resources/i18n/pt_BR/fdmprinter.def.json.po | 228 +- resources/i18n/pt_PT/cura.po | 1573 ++-- resources/i18n/pt_PT/fdmextruder.def.json.po | 208 +- resources/i18n/pt_PT/fdmprinter.def.json.po | 8242 ++++++++--------- resources/i18n/ru_RU/cura.po | 1576 ++-- resources/i18n/ru_RU/fdmextruder.def.json.po | 208 +- resources/i18n/ru_RU/fdmprinter.def.json.po | 8249 ++++++++--------- resources/i18n/tr_TR/cura.po | 1576 ++-- resources/i18n/tr_TR/fdmextruder.def.json.po | 208 +- resources/i18n/tr_TR/fdmprinter.def.json.po | 8242 ++++++++--------- resources/i18n/zh_CN/cura.po | 1572 ++-- resources/i18n/zh_CN/fdmextruder.def.json.po | 316 +- resources/i18n/zh_CN/fdmprinter.def.json.po | 8154 ++++++++--------- resources/i18n/zh_TW/cura.po | 50 +- resources/i18n/zh_TW/fdmprinter.def.json.po | 191 +- 47 files changed, 58100 insertions(+), 54546 deletions(-) diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index f04a0d3b8ed..715af3ea84d 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: 2023-09-03 18:15+0200\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -566,6 +566,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Uspořádat selekci" + msgctxt "@label:button" msgid "Ask a question" msgstr "Položit otázku" @@ -630,6 +634,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Zálohy" +msgctxt "@label" +msgid "Balanced" +msgstr "Vyvážený" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Základna (mm)" @@ -1019,6 +1027,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Nelze přečíst odpověď serveru." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Nelze se připojit k Obchodu." @@ -1263,10 +1275,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Výchozí" -msgctxt "@label" -msgid "Default" -msgstr "Výchozí" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: " @@ -2354,6 +2362,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Spravovat materiály..." @@ -3444,6 +3468,10 @@ msgctxt "description" msgid "Provides support for writing 3MF files." msgstr "Poskytuje podporu pro psaní souborů 3MF." +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." msgstr "Poskytuje podporu pro psaní balíčků formátu UltiMaker." @@ -4328,6 +4356,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Záloha překračuje maximální povolenou velikost soubor." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produktivitou, kvalitou povrchu, mechanickými vlastnostmi a rozměrnou přesností." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Výška základny od podložky v milimetrech." @@ -5561,14 +5593,6 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Nepovedlo se stáhnout {} zásuvných modulů" -msgctxt "@label" -msgid "Balanced" -msgstr "Vyvážený" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produktivitou, kvalitou povrchu, mechanickými vlastnostmi a rozměrnou přesností." - #, python-brace-format #~ msgctxt "info:{0} gets replaced by a number of printers" #~ msgid "... and {0} other" @@ -5577,10 +5601,6 @@ msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produkti #~ msgstr[1] "... a {0} další" #~ msgstr[2] "... a {0} dalších" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Uspořádat selekci" - #~ msgctxt "@tooltip:button" #~ msgid "Become a 3D printing expert with UltiMaker e-learning." #~ msgstr "Staňte se expertem na 3D tisk díky UltiMaker e-learningu." @@ -5589,6 +5609,10 @@ msgstr "Vyvážený profil je navržen tak, aby dosáhl rovnováhy mezi produkti #~ msgid "Cura does not accurately display layers when Wire Printing is enabled." #~ msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy." +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Výchozí" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout." diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 7f25e8b1ba1..3605434a323 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -746,16 +746,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Vzdálenost mezi tištěnými liniemi podpůrné struktury. Toto nastavení se vypočítá podle hustoty podpory." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Vzdálenost od tisku ke spodní části podpěry." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Vzdálenost od horní strany podpory k tisku." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Vzdálenost od horní / dolní nosné struktury k tisku. Tato mezera poskytuje vůli pro odstranění podpěr po vytištění modelu. Tato hodnota je zaokrouhlena nahoru na násobek výšky vrstvy." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1097,6 +1097,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Kompenzace průtoku na vnější linii stěny." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Kompensace toku na nejvíce vnější stěnové lince horní plochy." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Kompensace toku na horní stěnové linky pro všechny stěnové linky kromě nejvnější." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Kompenzace průtoku na horních / dolních řádcích." @@ -1283,6 +1291,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Seskupit vnější stěny" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" @@ -2447,6 +2459,10 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Vzdálenost stírání vnější stěny" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Venkovní stěny různých ostrovů ve stejné vrstvě jsou tisknuty postupně. Když je povoleno, množství změn proudu je omezeno, protože stěny jsou tisknuty po jednom typu najednou, když je zakázáno, počet cest mezi ostrovy se snižuje, protože stěny na stejných ostrovech jsou seskupeny." + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "Zvenku dovnitř" @@ -2500,8 +2516,20 @@ msgid "Prime Tower Acceleration" msgstr "Akcelerace tisku hlavní věže" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Límec hlavní věže" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2519,6 +2547,10 @@ msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Minimální objem hlavní věže" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Velikost hlavní věže" @@ -2536,8 +2568,8 @@ msgid "Prime Tower Y Position" msgstr "Pozice Y hlavní věže" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“." +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3607,6 +3639,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "Zrychlení, s nímž se tiskne horní vrstvy raftu." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Zrychlení, kterým jsou tisknuty vnitřní stěny horní plochy." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Zrychlení, kterým jsou tisknuty nejvíce vnější stěny horní plochy." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Zrychlení, kterým jsou stěny potištěny." @@ -3747,6 +3787,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Vzdálenost mezi liniemi raftů pro horní vrstvy raftů. Rozestup by měl být roven šířce čáry, takže povrch je pevný." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "Vzdálenost od hranic mezi modely, do jaké generovat vzájemně propletené struktury (měřeno v buňkách). Příliš málo buněk způsobí špatnou přilnavost." @@ -3943,6 +3987,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "Výška počáteční vrstvy v mm. Silnější počáteční vrstva usnadňuje přilnavost k montážní desce." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "Výška stupňů schodišťového dna podpory spočívá na modelu. Nízká hodnota ztěžuje odstranění podpory, ale příliš vysoké hodnoty mohou vést k nestabilním podpůrným strukturám. Nastavením na nulu vypnete chování podobné schodišti." @@ -4015,6 +4063,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "Délka materiálu zasunutého během pohybu zasunutí." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "Materiál podložky nainstalované na tiskárně." @@ -4107,6 +4159,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "Maximální okamžitá změna rychlosti, se kterou se tiskne nosná struktura." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnější stěny horní plochy." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnitřní stěny horní plochy." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "Maximální okamžitá změna rychlosti, se kterou se stěny tisknou." @@ -4491,6 +4551,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "Rychlost tisku horních vrstev raftu. Ty by měly být vytištěny trochu pomaleji, aby tryska mohla pomalu vyhlazovat sousední povrchové linie." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Rychlost, kterou jsou tisknuty vnitřní stěny horní plochy." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Rychlost, kterou jsou tisknuty nejvíce vnější stěny horní plochy." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "Rychlost, při které se svislý pohyb Z provádí pro Z Hopy. To je obvykle nižší než rychlost tisku, protože stavba talíře nebo portálového zařízení je obtížnější se pohybovat." @@ -4552,8 +4620,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Teplota, na kterou se má začít ochlazovat těsně před koncem tisku." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Teplota, která se používá pro tisk první vrstvy." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4631,6 +4699,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Šířka paprsků vzájemného propletení." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Šířka hlavní věže." @@ -4699,6 +4771,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Horní šířka odstranění povrchu" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Zrychlení vnitřní stěny horní plochy" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Rychlá změna nejvíce vnější stěny horní plochy" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Rychlost vnitřní stěny horní plochy" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Tok vnitřní stěny horní plochy" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Zrychlení vnější stěny horní plochy" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Tok nejvíce vnější stěnové linky horní plochy" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Rychlá změna nejvíce vnitřní stěny horní plochy" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Rychlost nejvíce vnější stěny horní plochy" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Akcelerace tisku horního povrchu" @@ -5387,125 +5491,6 @@ msgctxt "travel description" msgid "travel" msgstr "cestování" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Seskupit vnější stěny" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Venkovní stěny různých ostrovů ve stejné vrstvě jsou tisknuty postupně. Když je povoleno, množství změn proudu je omezeno, protože stěny jsou tisknuty po jednom typu najednou, když je zakázáno, počet cest mezi ostrovy se snižuje, protože stěny na stejných ostrovech jsou seskupeny." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Tok nejvíce vnější stěnové linky horní plochy" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Kompensace toku na nejvíce vnější stěnové lince horní plochy." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Tok vnitřní stěny horní plochy" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Kompensace toku na horní stěnové linky pro všechny stěnové linky kromě nejvnější." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Rychlost nejvíce vnější stěny horní plochy" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Rychlost, kterou jsou tisknuty nejvíce vnější stěny horní plochy." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Rychlost vnitřní stěny horní plochy" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Rychlost, kterou jsou tisknuty vnitřní stěny horní plochy." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Zrychlení vnější stěny horní plochy" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Zrychlení, kterým jsou tisknuty nejvíce vnější stěny horní plochy." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Zrychlení vnitřní stěny horní plochy" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Zrychlení, kterým jsou tisknuty vnitřní stěny horní plochy." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Rychlá změna nejvíce vnitřní stěny horní plochy" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnitřní stěny horní plochy." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Rychlá změna nejvíce vnější stěny horní plochy" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Maximální okamžitá změna rychlosti, jakou jsou tisknuty nejvíce vnější stěny horní plochy." - - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Postupné změny průtoku povoleny" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximální zrychlení postupných změn průtoku" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximální zrychlení pro postupné změny průtoku" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximální zrychlení průtoku pro první vrstvu" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Velikost kroku diskretizace postupné změny průtoku" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Doba trvání každého kroku v postupné změně průtoku" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Doba trvání resetování průtoku" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" - - - #~ msgctxt "machine_head_with_fans_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps included)." #~ msgstr "2D silueta tiskové hlavy (včetně krytů ventilátoru)." @@ -5602,6 +5587,14 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." #~ msgstr "Vzdálenost mezi tryskou a vodorovnými liniemi dolů. Větší vůle vede k diagonálně dolů směřujícím liniím s menším strmým úhlem, což zase vede k menšímu spojení nahoru s další vrstvou. Platí pouze pro drátový tisk." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Vzdálenost od tisku ke spodní části podpěry." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Vzdálenost od horní / dolní nosné struktury k tisku. Tato mezera poskytuje vůli pro odstranění podpěr po vytištění modelu. Tato hodnota je zaokrouhlena nahoru na násobek výšky vrstvy." + #~ msgctxt "wireframe_up_half_speed description" #~ msgid "" #~ "Distance of an upward move which is extruded with half speed.\n" @@ -5622,6 +5615,14 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing." #~ msgstr "Vzdálenost, se kterou je materiál vytlačování směrem vzhůru tažen spolu s diagonálně směrem dolů vytlačováním. Tato vzdálenost je kompenzována. Platí pouze pro drátový tisk." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Doba trvání každého kroku v postupné změně průtoku" + +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." + #~ msgctxt "material_end_of_filament_purge_length label" #~ msgid "End Of Filament Purge Length" #~ msgstr "Délka proplachování konce filamentu" @@ -5670,6 +5671,10 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing." #~ msgstr "Kompenzace toku: množství vytlačovaného materiálu se vynásobí touto hodnotou. Platí pouze pro drátový tisk." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" + #~ msgctxt "material_guid description" #~ msgid "GUID of the material. This is set automatically. " #~ msgstr "GUID materiálu. Toto je nastaveno automaticky. " @@ -5678,6 +5683,19 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time." #~ msgstr "Vygenerujte stromovou podporu s větvemi, které podporují váš tisk. To může snížit spotřebu materiálu a dobu tisku, ale výrazně prodlužuje dobu slicování." +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Velikost kroku diskretizace postupné změny průtoku" + +# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Postupné změny průtoku povoleny" + +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Maximální zrychlení postupných změn průtoku" + #~ msgctxt "support_tree_branch_distance description" #~ msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove." #~ msgstr "Jak daleko od sebe musí být větve, když se dotýkají modelu. Zmenšení této vzdálenosti způsobí, že se stromová podpora dotkne modelu ve více bodech, což způsobí lepší přesah, ale těžší odstranění podpory." @@ -5698,6 +5716,10 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Infill Mesh Order" #~ msgstr "Pořadí sítě výplně" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Maximální zrychlení průtoku pro první vrstvu" + #~ msgctxt "wireframe_strategy option knot" #~ msgid "Knot" #~ msgstr "Uzel" @@ -5738,6 +5760,10 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Maximum Speed for Flow Equalization" #~ msgstr "Maximální rychlost pro vyrovnávání průtoku" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Maximální zrychlení pro postupné změny průtoku" + #~ msgctxt "speed_equalize_flow_max description" #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow." #~ msgstr "Maximální rychlost tisku při úpravě rychlosti tisku za účelem vyrovnání toku." @@ -5750,6 +5776,10 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls." #~ msgstr "Minimální povolený procentuální průtok pro linii stěny. Kompenzace překrytí stěny snižuje průtok stěny, když leží blízko ke stávající zdi. Stěny, jejichž průtok je menší než tato hodnota, budou nahrazeny pohybem. Při použití tohoto nastavení musíte povolit kompenzaci překrytí stěny a vnější stěnu vytisknout před vnitřními stěnami." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" + #~ msgctxt "fill_perimeter_gaps option nowhere" #~ msgid "Nowhere" #~ msgstr "Nikde" @@ -5770,6 +5800,14 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Prefer Retract" #~ msgstr "Preferovat retrakci" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Límec hlavní věže" + +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Hlavní věže mohou potřebovat zvláštní přilnavost, kterou poskytuje límec, i když to model neumožňuje. V současnosti nelze použít s adhezním typem „Raft“." + #~ msgctxt "wireframe_enabled description" #~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." #~ msgstr "Tiskněte pouze vnější povrch s řídkou strukturou struktury a tiskněte „na vzduchu“. To je realizováno horizontálním tiskem kontur modelu v daných intervalech Z, které jsou spojeny pomocí linií nahoru a diagonálně dolů." @@ -5786,6 +5824,10 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs." #~ msgstr "Když je povoleno, tiskne stěny v pořadí od vnějšku dovnitř. To může pomoci zlepšit rozměrovou přesnost v X a Y při použití plastu s vysokou viskozitou, jako je ABS; může však snížit kvalitu tisku vnějšího povrchu, zejména na převisy." +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Doba trvání resetování průtoku" + #~ 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 "Rozlišení pro výpočet kolizí, aby nedošlo k nárazu do modelu. Nastavením této nižší se vytvoří přesnější stromy, které selhávají méně často, ale dramaticky se zvyšuje doba slicování." @@ -5934,6 +5976,10 @@ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok r #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." #~ msgstr "Rychlost počáteční vrstvy. Doporučuje se nižší hodnota pro zlepšení přilnavosti k montážní desce." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Teplota, která se používá pro tisk první vrstvy." + #~ msgctxt "material_bed_temperature_layer_0 description" #~ msgid "The temperature used for the heated build plate at the first layer." #~ msgstr "Teplota použitá pro vyhřívanou podložku v první vrstvě." diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 6aad1da459e..7d5b5f94d6c 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -3,11 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # +#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -527,6 +528,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -587,6 +592,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "" + msgctxt "@action:label" msgid "Base (mm)" msgstr "" @@ -951,6 +960,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1165,10 +1178,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "" -msgctxt "@label" -msgid "Default" -msgstr "" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "" @@ -2212,6 +2221,18 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "" @@ -3998,6 +4019,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "" @@ -4952,19 +4977,19 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" msgctxt "description" -msgid "Provides support for exporting Cura profiles." +msgid "Extension that allows for user created scripts for post processing" msgstr "" msgctxt "name" -msgid "Cura Profile Writer" +msgid "Post Processing" msgstr "" msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." +msgid "Provides a normal solid mesh view." msgstr "" msgctxt "name" -msgid "Slice info" +msgid "Solid View" msgstr "" msgctxt "description" @@ -4976,521 +5001,522 @@ msgid "Legacy Cura Profile Reader" msgstr "" msgctxt "description" -msgid "Provides support for reading X3D files." +msgid "Provides the X-Ray view." msgstr "" msgctxt "name" -msgid "X3D Reader" +msgid "X-Ray View" msgstr "" msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." +msgid "Provides the preview of sliced layerdata." msgstr "" msgctxt "name" -msgid "UFP Writer" +msgid "Simulation View" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgid "Provides support for reading AMF files." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" +msgid "AMF Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgid "Provides a preview stage in Cura." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" +msgid "Preview Stage" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" +msgid "Ultimaker Digital Library" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgid "Provides a machine actions for updating firmware." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" +msgid "Firmware Updater" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgid "Enables ability to generate printable geometry from 2D image files." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" +msgid "Image Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgid "Backup and restore your configuration." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" +msgid "Cura Backups" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" +msgid "Marketplace" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgid "Provides support for reading X3D files." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" +msgid "X3D Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgid "Provides support for writing 3MF files." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" +msgid "3MF Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgid "Checks for firmware updates." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" +msgid "Firmware Update Checker" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgid "Provides support for reading model files." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" +msgid "Trimesh Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgid "Allows loading and displaying G-code files." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" +msgid "G-code Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" +msgid "UltiMaker machine actions" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgid "Writes g-code to a compressed archive." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" +msgid "Compressed G-code Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" +msgid "Machine Settings Action" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgid "Provides support for importing profiles from g-code files." msgstr "" msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" +msgid "G-code Profile Reader" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgid "Provides the link to the CuraEngine slicing backend." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" +msgid "CuraEngine Backend" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgid "Provides a prepare stage in Cura." msgstr "" msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" +msgid "Prepare Stage" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgid "Provides support for writing Ultimaker Format Packages." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" +msgid "UFP Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgid "Logs certain events so that they can be used by the crash reporter" msgstr "" msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" +msgid "Sentry Logger" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgid "Provides removable drive hotplugging and writing support." msgstr "" msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" +msgid "Removable Drive Output Device Plugin" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgid "Provides the Per Model Settings." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" +msgid "Per Model Settings Tool" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgid "Writes g-code to a file." msgstr "" msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" +msgid "G-code Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgid "Provides support for writing MakerBot Format Packages." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" +msgid "Makerbot Printfile Writer" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." msgstr "" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" +msgid "USB printing" msgstr "" msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgid "Submits anonymous slice info. Can be disabled through preferences." msgstr "" msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" +msgid "Slice info" msgstr "" msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" +msgid "Provides support for exporting Cura profiles." msgstr "" msgctxt "name" -msgid "Post Processing" +msgid "Cura Profile Writer" msgstr "" msgctxt "description" -msgid "Provides the preview of sliced layerdata." +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" msgstr "" msgctxt "name" -msgid "Simulation View" +msgid "CuraEngineGradualFlow" msgstr "" msgctxt "description" -msgid "Provides support for importing Cura profiles." +msgid "Manages network connections to UltiMaker networked printers." msgstr "" msgctxt "name" -msgid "Cura Profile Reader" +msgid "UltiMaker Network Connection" msgstr "" msgctxt "description" -msgid "Provides the Per Model Settings." +msgid "Provides a monitor stage in Cura." msgstr "" msgctxt "name" -msgid "Per Model Settings Tool" +msgid "Monitor Stage" msgstr "" msgctxt "description" -msgid "Provides a preview stage in Cura." +msgid "Provides support for reading 3MF files." msgstr "" msgctxt "name" -msgid "Preview Stage" +msgid "3MF Reader" msgstr "" msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" +msgid "Provides capabilities to read and write XML-based material profiles." msgstr "" msgctxt "name" -msgid "Support Eraser" +msgid "Material Profiles" msgstr "" msgctxt "description" -msgid "Allows loading and displaying G-code files." +msgid "Provides support for reading Ultimaker Format Packages." msgstr "" msgctxt "name" -msgid "G-code Reader" +msgid "UFP Reader" msgstr "" msgctxt "description" -msgid "Backup and restore your configuration." +msgid "Checks models and print configuration for possible printing issues and give suggestions." msgstr "" msgctxt "name" -msgid "Cura Backups" +msgid "Model Checker" msgstr "" msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." +msgid "Provides support for importing Cura profiles." msgstr "" msgctxt "name" -msgid "Removable Drive Output Device Plugin" +msgid "Cura Profile Reader" msgstr "" msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgid "Creates an eraser mesh to block the printing of support in certain places" msgstr "" msgctxt "name" -msgid "CuraEngineGradualFlow" +msgid "Support Eraser" msgstr "" msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." +msgid "Reads g-code from a compressed archive." msgstr "" msgctxt "name" -msgid "Material Profiles" +msgid "Compressed G-code Reader" msgstr "" msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." msgstr "" msgctxt "name" -msgid "UltiMaker machine actions" +msgid "Version Upgrade 4.1 to 4.2" msgstr "" msgctxt "description" -msgid "Provides the X-Ray view." +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." msgstr "" msgctxt "name" -msgid "X-Ray View" +msgid "Version Upgrade 2.2 to 2.4" msgstr "" msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." msgstr "" msgctxt "name" -msgid "UltiMaker Network Connection" +msgid "Version Upgrade 5.3 to 5.4" msgstr "" msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." msgstr "" msgctxt "name" -msgid "Machine Settings Action" +msgid "Version Upgrade 5.4 to 5.5" msgstr "" msgctxt "description" -msgid "Provides support for reading model files." +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." msgstr "" msgctxt "name" -msgid "Trimesh Reader" +msgid "Version Upgrade 4.13 to 5.0" msgstr "" msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." msgstr "" msgctxt "name" -msgid "Marketplace" +msgid "Version Upgrade 2.6 to 2.7" msgstr "" msgctxt "description" -msgid "Provides a monitor stage in Cura." +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." msgstr "" msgctxt "name" -msgid "Monitor Stage" +msgid "Version Upgrade 4.11 to 4.12" msgstr "" msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." msgstr "" msgctxt "name" -msgid "Image Reader" +msgid "Version Upgrade 5.2 to 5.3" msgstr "" msgctxt "description" -msgid "Provides a machine actions for updating firmware." +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." msgstr "" msgctxt "name" -msgid "Firmware Updater" +msgid "Version Upgrade 4.6.2 to 4.7" msgstr "" msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." msgstr "" msgctxt "name" -msgid "CuraEngine Backend" +msgid "Version Upgrade 2.1 to 2.2" msgstr "" msgctxt "description" -msgid "Provides a prepare stage in Cura." +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." msgstr "" msgctxt "name" -msgid "Prepare Stage" +msgid "Version Upgrade 3.0 to 3.1" msgstr "" msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." msgstr "" msgctxt "name" -msgid "Ultimaker Digital Library" +msgid "Version Upgrade 4.3 to 4.4" msgstr "" msgctxt "description" -msgid "Checks for firmware updates." +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." msgstr "" msgctxt "name" -msgid "Firmware Update Checker" +msgid "Version Upgrade 4.9 to 4.10" msgstr "" msgctxt "description" -msgid "Writes g-code to a file." +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." msgstr "" msgctxt "name" -msgid "G-code Writer" +msgid "Version Upgrade 4.5 to 4.6" msgstr "" msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." msgstr "" msgctxt "name" -msgid "Model Checker" +msgid "Version Upgrade 4.2 to 4.3" msgstr "" msgctxt "description" -msgid "Provides support for reading 3MF files." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." msgstr "" msgctxt "name" -msgid "3MF Reader" +msgid "Version Upgrade 4.7 to 4.8" msgstr "" msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." msgstr "" msgctxt "name" -msgid "USB printing" +msgid "Version Upgrade 4.0 to 4.1" msgstr "" msgctxt "description" -msgid "Provides support for reading AMF files." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." msgstr "" msgctxt "name" -msgid "AMF Reader" +msgid "Version Upgrade 3.2 to 3.3" msgstr "" msgctxt "description" -msgid "Provides support for importing profiles from g-code files." +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." msgstr "" msgctxt "name" -msgid "G-code Profile Reader" +msgid "Version Upgrade 3.5 to 4.0" msgstr "" msgctxt "description" -msgid "Provides a normal solid mesh view." +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." msgstr "" msgctxt "name" -msgid "Solid View" +msgid "Version Upgrade 2.5 to 2.6" msgstr "" msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." msgstr "" msgctxt "name" -msgid "Sentry Logger" +msgid "Version Upgrade 4.4 to 4.5" msgstr "" msgctxt "description" -msgid "Reads g-code from a compressed archive." +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." msgstr "" msgctxt "name" -msgid "Compressed G-code Reader" +msgid "Version Upgrade 2.7 to 3.0" msgstr "" msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." msgstr "" msgctxt "name" -msgid "UFP Reader" +msgid "Version Upgrade 3.4 to 3.5" msgstr "" msgctxt "description" -msgid "Provides support for writing 3MF files." +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." msgstr "" msgctxt "name" -msgid "3MF Writer" +msgid "Version Upgrade 4.6.0 to 4.6.2" msgstr "" msgctxt "description" -msgid "Writes g-code to a compressed archive." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." msgstr "" msgctxt "name" -msgid "Compressed G-code Writer" +msgid "Version Upgrade 4.8 to 4.9" msgstr "" -msgctxt "@label" -msgid "Balanced" +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." msgstr "" -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" msgstr "" + diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 64f6f3804bc..b72c60c178f 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -137,8 +138,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Die Anwendung muss neu gestartet werden, damit die Änderungen in Kraft treten." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n- Materialprofile und Plug-ins sichern und synchronisieren\n- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Materialprofile und Plug-ins aus dem Marketplace hinzufügen\n" +"- Materialprofile und Plug-ins sichern und synchronisieren\n" +"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" msgctxt "@heading" msgid "-- incomplete --" @@ -164,6 +171,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-Datei" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-Reader" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-Writer" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Das 3MF-Writer-Plugin ist beschädigt." @@ -184,29 +199,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Nur vom Benutzer geänderte Einstellungen werden im benutzerdefinierten Profil gespeichert.
    Für Materialien, bei denen dies unterstützt ist, übernimmt das neue benutzerdefinierte Profil Eigenschaften von %1." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "

  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-Renderer: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-Anbieter: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-Version: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

    \n

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Ein schwerer Fehler ist in Cura aufgetreten. Senden Sie uns diesen Absturzbericht, um das Problem zu beheben

    \n" +"

    Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

    \n

    Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

    \n

    Backups sind im Konfigurationsordner abgelegt.

    \n

    Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

    \n" +"

    Beim Start ist ein nicht behebbarer Fehler aufgetreten. Er wurde möglicherweise durch einige falsche Konfigurationsdateien verursacht. Wir empfehlen ein Backup und Reset Ihrer Konfiguration.

    \n" +"

    Backups sind im Konfigurationsordner abgelegt.

    \n" +"

    Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

    \n

    {model_names}

    \n

    Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

    \n

    Leitfaden zu Druckqualität anzeigen

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:

    \n" +"

    {model_names}

    \n" +"

    Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.

    \n" +"

    Leitfaden zu Druckqualität anzeigen

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -226,6 +269,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF-Datei" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-Reader" + msgctxt "@label" msgid "Abort" msgstr "Abbrechen" @@ -262,6 +309,10 @@ msgctxt "@button" msgid "Accept" msgstr "Akzeptieren" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." + msgctxt "@label" msgid "Account synced" msgstr "Konto wurde synchronisiert" @@ -354,6 +405,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Drucker manuell hinzufügen" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt" @@ -390,10 +442,23 @@ msgctxt "@button" msgid "Agree" msgstr "Stimme zu" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Dateien (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle unterstützten Typen ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Senden von anonymen Daten erlauben" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Stets nachfragen" @@ -466,6 +531,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Möchten Sie {printer_name} wirklich vorübergehend entfernen?" @@ -474,6 +540,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" @@ -486,6 +557,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Alle Modelle in einem Raster anordnen" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Eine Frage stellen" @@ -534,6 +609,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup und Reset der Konfiguration" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren" @@ -546,6 +625,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Backups" +msgctxt "@label" +msgid "Balanced" +msgstr "Ausgewogen" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" @@ -622,10 +705,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Sie können keine Verbindung zu Ihrem UltiMaker-Drucker herstellen?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Import des Profils aus Datei {0} kann erst durchgeführt werden, wenn ein Drucker hinzugefügt wurde." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen." @@ -634,6 +719,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Kann nicht in UFP-Datei schreiben:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Abbrechen" + msgctxt "@button" msgid "Cancel" msgstr "Abbrechen" @@ -694,8 +783,21 @@ msgctxt "@label" msgid "Checking..." msgstr "Überprüfung läuft ..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Nach Firmware-Updates suchen." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." msgctxt "@action:inmenu menubar:edit" @@ -774,6 +876,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Komprimierte G-Code-Datei" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Reader für komprimierten G-Code" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer für komprimierten G-Code" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Konfigurationsänderungen" @@ -810,6 +920,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Änderung Durchmesser bestätigen" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Entfernen bestätigen" + msgctxt "@action:button" msgid "Connect" msgstr "Verbinden" @@ -842,6 +956,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Über Cloud verbunden" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Wenden Sie sich an die UltiMaker Community." @@ -882,6 +1000,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden." @@ -894,6 +1013,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Die Antwort vom Server konnte nicht interpretiert werden." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Der Marktplatz konnte nicht erreicht werden." @@ -906,6 +1029,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Materialarchiv konnte nicht in {} gespeichert werden:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Konnte nicht als {0} gespeichert werden: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" @@ -914,17 +1043,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Daten konnten nicht in Drucker geladen werden." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\nKeine Berechtigung zum Ausführen des Prozesses." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\n" +"Keine Berechtigung zum Ausführen des Prozesses." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\nBetriebssystem blockiert es (Antivirenprogramm?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\n" +"Betriebssystem blockiert es (Antivirenprogramm?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\nRessource ist vorübergehend nicht verfügbar" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"EnginePlugin konnte nicht gestartet werden: {self._plugin_id}\n" +"Ressource ist vorübergehend nicht verfügbar" msgctxt "@title:window" msgid "Crash Report" @@ -966,6 +1110,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Erstellen Sie Druckprojekte in der digitalen Bibliothek." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Ihr Backup wird erstellt..." @@ -978,10 +1126,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura-Backups" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-Backups" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-Profil" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-Profil-Reader" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-Profil-Writer" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-Projekt 3MF-Datei" @@ -994,13 +1154,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kann nicht starten" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt.\nCura verwendet mit Stolz die folgenden Open Source-Projekte:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt.\n" +"Cura verwendet mit Stolz die folgenden Open Source-Projekte:" msgctxt "@label" msgid "Cura language" @@ -1010,6 +1175,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-Version" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Währung:" @@ -1090,10 +1267,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: " @@ -1266,10 +1439,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Auswerfen" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Wechseldatenträger auswerfen {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen." @@ -1294,6 +1469,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Aktiviert" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." + msgctxt "@title:label" msgid "End G-code" msgstr "Ende G-Code" @@ -1322,6 +1501,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Geben Sie die IP-Adresse Ihres Druckers ein." +msgctxt "@info:title" +msgid "Error" +msgstr "Fehler" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Fehler-Rückverfolgung" @@ -1366,6 +1549,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Export erfolgreich ausgeführt" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil wurde nach {0} exportiert" @@ -1374,6 +1558,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Erweitern Sie UltiMaker Cura durch Plugins und Materialprofile." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" + msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -1410,6 +1598,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Die Erstellung eines Materialarchivs zur Synchronisierung mit Druckern ist fehlgeschlagen." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet." @@ -1418,22 +1607,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Exportieren des Materials nach %1: %2 schlug fehl" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Export des Profils nach {0} fehlgeschlagen: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Export des Profils nach {0} fehlgeschlagen: Fehlermeldung von Writer-Plugin." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Import des Profils aus Datei {0}: {1} fehlgeschlagen" @@ -1466,6 +1660,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Filamentgewicht" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Datei bereits vorhanden" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Datei wurde gespeichert" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Datei {0} enthält kein gültiges Profil." @@ -1498,6 +1701,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Firmware-Aktualisierung" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-Update-Prüfer" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-Aktualisierungsfunktion" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt." @@ -1594,6 +1805,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-Code-Datei" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-Code-Profil-Reader" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-Code-Reader" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-Code-Writer" + msgctxt "@label" msgid "G-code flavor" msgstr "G-Code-Variante" @@ -1626,6 +1849,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Brückenhöhe" +msgctxt "@title:tab" +msgid "General" +msgstr "Allgemein" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." @@ -1658,6 +1885,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Rasterplatzierung" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppe #{group_nr}" @@ -1730,6 +1958,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die Anleitung für Fehlerbehebung für Netzwerkdruck" +msgctxt "name" +msgid "Image Reader" +msgstr "Bild-Reader" + msgctxt "@action:button" msgid "Import" msgstr "Importieren" @@ -1978,6 +2210,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Mehr erfahren" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Mehr erfahren" + msgctxt "@button" msgid "Learn more" msgstr "Mehr erfahren" @@ -2006,6 +2242,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Ansicht von links" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Cura-Vorgängerprofil-Reader" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Lassen Sie es die Entwickler wissen, falls etwas schief läuft." @@ -2086,6 +2326,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokolle" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbindung zum Drucker wurde unterbrochen" @@ -2094,6 +2338,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Geräteeinstellungen" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Beschreibung Geräteeinstellungen" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Maschinen" @@ -2106,6 +2354,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Materialien werden verwaltet..." @@ -2154,6 +2418,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Verwalten Sie hier Ihre UltiMaker Cura Plug-ins und Ihre Materialprofile. Halten Sie Ihre Plug-ins auf dem neuesten Stand und sichern Sie Ihr Setup regelmäßig." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." + msgctxt "@label" msgid "Manufacturer" msgstr "Hersteller" @@ -2166,6 +2438,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marktplatz" +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplatz" + msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2182,6 +2458,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Materialfarbe" +msgctxt "name" +msgid "Material Profiles" +msgstr "Materialprofile" + msgctxt "@label" msgid "Material Type" msgstr "Materialtyp" @@ -2226,6 +2506,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modus" +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-Prüfer" + msgctxt "@info:title" msgid "Model Errors" msgstr "Modellfehler" @@ -2242,6 +2526,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Überwachen" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Überwachungsstufe" + msgctxt "@action:button" msgid "Monitor print" msgstr "Druck überwachen" @@ -2316,6 +2604,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Netzwerkfehler" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Neue %s-stabile Firmware verfügbar" @@ -2328,6 +2617,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Neue UltiMaker-Drucker können mit Digital Factory verbunden und aus der Ferne überwacht werden." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Es können neue Funktionen oder Bug-Fixes für Ihren {machine_name} verfügbar sein! Falls noch nicht geschehen, wird empfohlen, die Firmware auf Ihrem Drucker auf Version {latest_version} zu aktualisieren." @@ -2374,6 +2664,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Keine Kostenschätzung verfügbar" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei {0}" @@ -2482,6 +2773,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Anzahl Extruder" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Sprache des Betriebssystems" @@ -2502,6 +2797,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Nur obere Schichten anzeigen" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen." @@ -2635,7 +2931,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Aus Zwischenablage einfügen" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pausieren" @@ -2660,6 +2955,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Einstellungen pro Objekt" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Werkzeug „Einstellungen pro Objekt“" + msgid "Perspective" msgstr "Ansicht" @@ -2696,8 +2995,15 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Stellen Sie sicher, dass der Drucker verbunden ist:\n– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Stellen Sie sicher, dass der Drucker verbunden ist:\n" +"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n" +"– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +3017,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Geben Sie bitte einen Namen für dieses Profil an." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Bitte lesen und akzeptieren Sie die Plug-in-Lizenz." @@ -2720,8 +3030,16 @@ msgid "Please remove the print" msgstr "Bitte den Ausdruck entfernen" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n- Mit der Druckraumgröße kompatibel sind\n- Einem aktiven Extruder zugewiesen sind\n- Nicht alle als Modifier Meshes eingerichtet sind" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:\n" +"- Mit der Druckraumgröße kompatibel sind\n" +"- Einem aktiven Extruder zugewiesen sind\n" +"- Nicht alle als Modifier Meshes eingerichtet sind" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2771,6 +3089,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nachbearbeitung" +msgctxt "name" +msgid "Post Processing" +msgstr "Nachbearbeitung" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plugin Nachbearbeitung" @@ -2787,6 +3109,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Vorbereiten" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Vorbereitungsstufe" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Vorbereitung läuft..." @@ -2807,6 +3133,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Vorschau" +msgctxt "name" +msgid "Preview Stage" +msgstr "Vorschaustufe" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Einzugsturm" @@ -2935,6 +3265,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Die Druckereinstellungen werden aktualisiert, sodass sie mit den im Projekt gespeicherten Einstellungen übereinstimmen." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Drucker" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Drucker aus Digital Factory hinzugefügt:" @@ -2995,6 +3329,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profileinstellungen" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} hat einen unbekannten Dateityp oder ist beschädigt." @@ -3019,18 +3354,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmiersprache" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projektdatei {0} enthält einen unbekannten Maschinentyp {1}. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projektdatei {0} ist beschädigt: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Projektdatei {0} verwendet Profile, die nicht mit dieser UltiMaker Cura-Version kompatibel sind." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Auf Projektdatei {0} kann plötzlich nicht mehr zugegriffen werden: {1}." @@ -3039,6 +3378,106 @@ msgctxt "@label" msgid "Properties" msgstr "Eigenschaften" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Bietet eine Überwachungsstufe in Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Bietet eine normale, solide Netzansicht." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Bietet eine Vorbereitungsstufe in Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Bietet eine Vorschaustufe in Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Ermöglicht das Exportieren von Cura-Profilen." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Ermöglicht das Importieren von Cura-Profilen." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Ermöglicht das Lesen von 3MF-Dateien." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Ermöglicht das Lesen von AMF-Dateien." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Unterstützt das Lesen von Modelldateien." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Ermöglicht die Einstellungen pro Objekt." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Stellt die Röntgen-Ansicht bereit." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt Version" @@ -3059,6 +3498,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt Version" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel." @@ -3075,6 +3515,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 beenden" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Liest G-Code-Format aus einem komprimierten Archiv." + msgctxt "@button" msgid "Recommended" msgstr "Empfohlen" @@ -3127,6 +3571,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Wechseldatenträger" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Ausgabegerät-Plugin für Wechseldatenträger" + msgctxt "@action:button" msgid "Remove" msgstr "Entfernen" @@ -3143,6 +3591,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Umbenennen" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Profil umbenennen" @@ -3279,14 +3731,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Speichern auf Wechseldatenträger" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Auf Wechseldatenträger speichern {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Wird gespeichert" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Wird auf Wechseldatenträger gespeichert {0}" @@ -3379,6 +3838,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Material an Drucker senden" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry-Protokolleinrichtung" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothek für serielle Kommunikation" @@ -3411,6 +3874,10 @@ msgctxt "@label" msgid "Settings" msgstr "Einstellungen" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Einstellungen" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:" @@ -3571,6 +4038,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Bei der UltiMaker-Plattform anmelden" +msgctxt "name" +msgid "Simulation View" +msgstr "Simulationsansicht" + msgctxt "@tooltip" msgid "Skin" msgstr "Außenhaut" @@ -3599,6 +4070,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Bei Änderung der Einstellungen automatisch schneiden." +msgctxt "name" +msgid "Slice info" +msgstr "Slice-Informationen" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicing fehlgeschlagen" @@ -3615,13 +4090,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Glättung" +msgctxt "name" +msgid "Solid View" +msgstr "Solide Ansicht" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide Ansicht" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n\nKlicken Sie, um diese Einstellungen sichtbar zu machen." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.\n" +"\n" +"Klicken Sie, um diese Einstellungen sichtbar zu machen." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3636,8 +4121,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Einige in %1 definierte Einstellungswerte wurden überschrieben." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n\nKlicken Sie, um den Profilmanager zu öffnen." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n" +"\n" +"Klicken Sie, um den Profilmanager zu öffnen." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +4154,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Cura unterstützen" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Cura unterstützen" @@ -3709,6 +4198,10 @@ msgctxt "@label" msgid "Strength" msgstr "Festigkeit" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material erfolgreich nach %1 exportiert" @@ -3717,6 +4210,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material wurde erfolgreich importiert %1" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." @@ -3737,6 +4231,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Stützstruktur-Blocker" +msgctxt "name" +msgid "Support Eraser" +msgstr "Stützstruktur-Radierer" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Stützstruktur-Füllung" @@ -3843,6 +4341,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Das Backup überschreitet die maximale Dateigröße." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Das ausgewogene Profil ist darauf ausgelegt, einen Kompromiss zwischen Produktivität, Oberflächenqualität, mechanischen Eigenschaften und Maßgenauigkeit zu erzielen." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Die Basishöhe von der Druckplatte in Millimetern." @@ -3899,6 +4401,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen." @@ -3958,8 +4465,22 @@ msgid "The nozzle inserted in this extruder." msgstr "Die in diesem Extruder eingesetzte Düse." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Das Muster des Füllmaterials des Drucks:\n\nFür schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung.\n\nFür funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster.\n\nFür funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"Das Muster des Füllmaterials des Drucks:\n" +"\n" +"Für schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung.\n" +"\n" +"Für funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster.\n" +"\n" +"Für funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4111,6 +4632,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dieses Profil {0} enthält falsche Daten, Importieren nicht möglich." @@ -4124,8 +4646,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Dieses Projekt enthält Materialien oder Plug-ins, die derzeit nicht in Cura installiert sind.
    Installieren Sie die fehlenden Pakete und öffnen Sie das Projekt erneut." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Diese Einstellung hat einen vom Profil abweichenden Wert.\n\nKlicken Sie, um den Wert des Profils wiederherzustellen." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Diese Einstellung hat einen vom Profil abweichenden Wert.\n" +"\n" +"Klicken Sie, um den Wert des Profils wiederherzustellen." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4142,8 +4670,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n\nKlicken Sie, um den berechneten Wert wiederherzustellen." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt.\n" +"\n" +"Klicken Sie, um den berechneten Wert wiederherzustellen." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4169,6 +4703,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Um die Materialprofile automatisch mit all Ihren mit Digital Factory verbundenen Druckern zu synchronisieren, müssen Sie in Cura angemeldet sein." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen" @@ -4181,6 +4716,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}" @@ -4229,6 +4765,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + msgctxt "@button" msgid "Troubleshooting" msgstr "Störungen beheben" @@ -4245,10 +4785,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Typ" +msgctxt "@label" +msgid "Type" +msgstr "Typ" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-Reader" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-Writer" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-Drucken" +msgctxt "name" +msgid "USB printing" +msgstr "USB-Drucken" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker‑Konto" @@ -4265,6 +4821,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-Netzwerkverbindung" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Durch UltiMaker verifiziertes Paket" @@ -4273,6 +4833,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Durch UltiMaker verifiziertes Plug-in" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker-Maschinenabläufe" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker-Drucker" @@ -4285,6 +4849,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitale Bibliothek von UltiMaker" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Das Profil kann nicht hinzugefügt werden." @@ -4293,13 +4861,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Innerhalb der Druckabmessung für alle Objekte konnte keine Position gefunden werden" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Die ausführbare Datei des lokalen EnginePlugin-Servers kann nicht gefunden werden für: {self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}\nZugriff verweigert." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}\n" +"Zugriff verweigert." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4321,10 +4895,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}" @@ -4333,6 +4909,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}" @@ -4381,6 +4958,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Unbekanntes Paket" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}" @@ -4445,13 +5023,117 @@ msgctxt "@button" msgid "Updating..." msgstr "Aktualisierung läuft…" -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Benutzerdefinierte Firmware hochladen" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Druckauftrag wird vorbereitet." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Benutzerdefinierte Firmware hochladen" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Druckauftrag wird vorbereitet." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4477,6 +5159,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Utility-Bibliothek, einschließlich Voronoi-Generierung" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Upgrade von Version 2.1 auf 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Upgrade von Version 2.2 auf 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Upgrade von Version 2.5 auf 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Upgrade von Version 2.6 auf 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Upgrade von Version 2.7 auf 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Upgrade von Version 3.0 auf 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Upgrade von Version 3.2 auf 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Upgrade von Version 3.3 auf 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Upgrade von Version 3.4 auf 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Upgrade von Version 3.5 auf 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Upgrade von Version 4.0 auf 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Upgrade von Version 4.1 auf 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Upgrade von Version 4.11 auf 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Upgrade von Version 4.13 auf 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Upgrade von Version 4.2 auf 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Upgrade von Version 4.3 auf 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Upgrade von Version 4.4 auf 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Upgrade von Version 4.5 auf 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Upgrade von Version 4.6.0 auf 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Upgrade von Version 4.6.2 auf 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Upgrade von Version 4.7 auf 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Upgrade von Version 4.8 auf 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Upgrade von Version 4.9 auf 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Upgrade von Version 5.2 auf 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versions-Upgrade 5.3 auf 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versions-Upgrade 5.4 auf 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Drucker in der Digital Factory anzeigen" @@ -4525,6 +5311,11 @@ msgctxt "@button" msgid "Want more?" msgstr "Möchten Sie mehr?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Warnhinweis" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Warnung: Das Profil wird nicht angezeigt, weil sein Qualitätstyp „{0}“ für die aktuelle Konfiguration nicht verfügbar ist. Wechseln Sie zu einer Material-/Düsenkombination, die mit diesem Qualitätstyp kompatibel ist." @@ -4585,6 +5376,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Breite (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Schreibt G-Code in eine Datei." + msgctxt "@label" msgid "X (Width)" msgstr "X (Breite)" @@ -4597,6 +5396,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen-Ansicht" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgen-Ansicht" @@ -4609,6 +5412,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D-Datei" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-Reader" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Tiefe)" @@ -4626,19 +5433,31 @@ msgid "Yes" msgstr "Ja" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \nMöchten Sie wirklich fortfahren." -msgstr[1] "Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \nMöchten Sie wirklich fortfahren." +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" +"Möchten Sie wirklich fortfahren." +msgstr[1] "" +"Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" +"Möchten Sie wirklich fortfahren." msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren." @@ -4649,7 +5468,10 @@ msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläc msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Sie haben einige Profileinstellungen personalisiert.\nMöchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\nSie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." +msgstr "" +"Sie haben einige Profileinstellungen personalisiert.\n" +"Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n" +"Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4679,9 +5501,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Ihr neuer Drucker wird automatisch in Cura angezeigt." +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -4739,6 +5566,7 @@ msgctxt "@label" msgid "version: %1" msgstr "Version: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wird bis zur nächsten Synchronisierung entfernt." @@ -4747,630 +5575,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." -msgid "Provides support for exporting Cura profiles." -msgstr "Bietet Unterstützung für den Export von Cura-Profilen." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-Profil-Writer" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." - -msgctxt "name" -msgid "Slice info" -msgstr "Slice-Informationen" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Default" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Cura-Vorgängerprofil-Reader" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-Reader" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-Writer" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Upgrade von Version 3.5 auf 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Upgrade von Version 4.1 auf 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Upgrade von Version 4.7 auf 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Upgrade von Version 4.9 auf 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Upgrade von Version 3.2 auf 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Upgrade von Version 2.7 auf 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Upgrade von Version 4.11 auf 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Upgrade von Version 2.6 auf 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Upgrade von Version 4.8 auf 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Upgrade von Version 4.3 auf 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Upgrade von Version 3.3 auf 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Upgrade von Version 4.4 auf 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Upgrade von Version 2.5 auf 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Upgrade von Version 2.1 auf 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Upgrade von Version 4.2 auf 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Upgrade von Version 5.2 auf 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Upgrade von Version 4.0 auf 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Upgrade von Version 2.2 auf 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Upgrade von Version 3.4 auf 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Upgrade von Version 4.13 auf 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versions-Upgrade 5.4 auf 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Upgrade von Version 4.5 auf 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Upgrade von Version 3.0 auf 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Upgrade von Version 4.6.0 auf 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Upgrade von Version 4.6.2 auf 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versions-Upgrade 5.3 auf 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" - -msgctxt "name" -msgid "Post Processing" -msgstr "Nachbearbeitung" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simulationsansicht" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Ermöglicht das Importieren von Cura-Profilen." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-Profil-Reader" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Ermöglicht die Einstellungen pro Objekt." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Werkzeug „Einstellungen pro Objekt“" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Bietet eine Vorschaustufe in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Vorschaustufe" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Stützstruktur-Radierer" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-Code-Reader" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-Backups" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Ausgabegerät-Plugin für Wechseldatenträger" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Materialprofile" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker-Maschinenabläufe" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Stellt die Röntgen-Ansicht bereit." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen-Ansicht" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker-Netzwerkverbindung" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Beschreibung Geräteeinstellungen" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Unterstützt das Lesen von Modelldateien." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplatz" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Bietet eine Überwachungsstufe in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Überwachungsstufe" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." - -msgctxt "name" -msgid "Image Reader" -msgstr "Bild-Reader" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-Aktualisierungsfunktion" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Bietet eine Vorbereitungsstufe in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Vorbereitungsstufe" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitale Bibliothek von UltiMaker" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Nach Firmware-Updates suchen." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-Update-Prüfer" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Schreibt G-Code in eine Datei." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-Code-Writer" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." - -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-Prüfer" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Ermöglicht das Lesen von 3MF-Dateien." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-Reader" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." - -msgctxt "name" -msgid "USB printing" -msgstr "USB-Drucken" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Ermöglicht das Lesen von AMF-Dateien." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-Reader" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-Code-Profil-Reader" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Bietet eine normale, solide Netzansicht." - -msgctxt "name" -msgid "Solid View" -msgstr "Solide Ansicht" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry-Protokolleinrichtung" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Liest G-Code-Format aus einem komprimierten Archiv." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Reader für komprimierten G-Code" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-Reader" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Bietet Unterstützung für das Schreiben von 3MF-Dateien." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-Writer" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer für komprimierten G-Code" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Ermöglicht das Exportieren von Cura-Profilen." - -msgctxt "@info:title" -msgid "Error" -msgstr "Fehler" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Abbrechen" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Einstellungen" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Mehr erfahren" - -msgctxt "@title:tab" -msgid "General" -msgstr "Allgemein" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!" - -msgctxt "@label" -msgid "Type" -msgstr "Typ" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Wird gespeichert" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Datei bereits vorhanden" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Alle unterstützten Typen ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Konnte nicht als {0} gespeichert werden: {1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Warnhinweis" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Drucker" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Datei wurde gespeichert" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Entfernen bestätigen" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Alle Dateien (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Ausgewogen" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Das ausgewogene Profil ist darauf ausgelegt, einen Kompromiss zwischen Produktivität, Oberflächenqualität, mechanischen Eigenschaften und Maßgenauigkeit zu erzielen." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Bietet Unterstützung für den Export von Cura-Profilen." diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index 5dfca5e583a..c8cb488ecfb 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extruder" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Drucklüfter Extruder" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extruder" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Extruder-Ende" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Extruder-Endposition" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Extruder-Endposition X" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extruder-Endposition Y" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Drucklüfter Extruder" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Extruder-Start" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startposition des Extruders" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-Position Extruder-Start" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-Position Extruder-Start" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Düsen-ID" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Versatz Düse" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Die X-Koordinate des Düsenversatzes." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Y-Versatz Düse" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Die Y-Koordinate des Düsenversatzes." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Die X-Koordinate des Düsenversatzes." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Die Y-Koordinate des Düsenversatzes." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 089b58c0c02..31eccbb1124 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5466 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Gerät" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Eine Distanz, die von den Kanten des Modells einzuhalten ist. Die Glättung des gesamten Weges zur Kante des Mesh führt möglicherweise zu einer gezackten Kante Ihres Drucks." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Die Bezeichnung Ihres 3D-Druckermodells." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Ein Faktor, der angibt, wie stark das Filament zwischen dem Feeder und der Düsenkammer komprimiert wird; hilft zu bestimmen, wie weit das Material für einen Filamentwechsel bewegt werden muss." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Anzeige der Gerätevarianten" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen Außenhautschichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Zeigt optional die verschiedenen Varianten dieses Geräts an, die in separaten json-Dateien beschrieben werden." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen/unteren Schichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-Code" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass der Standardwinkel von 0 Grad zu verwenden ist." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Ende G-Code" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Material-GUID" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für die Verwendung. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad für die Linien- und Zickzack-Muster und 45-Grad für alle anderen Muster) verwendet werden." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID des Materials. Dies wird automatisch eingestellt." +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." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Warten auf Aufheizen der Druckplatte" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Druckplattentemperatur erreicht wurde." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird bei diesem möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hiermit wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Warten auf Aufheizen der Düse" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Düsentemperatur erreicht wurde." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Extruder absolute Einzugsposition" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materialtemperaturen einfügen" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maximale Abweichung für Anpassschichten" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Option zum Einfügen von Befehlen für die Düsentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Düsentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Topographische Größe der Anpassschichten" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Temperaturprüfung der Druckplatte einfügen" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Abweichung Schrittgröße für Anpassschichten" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Option zum Einfügen von Befehlen für die Druckplattentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Druckplattentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des Modells." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Gerätebreite" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen.\n" +" Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Gerätetiefe" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Haftungstendenz" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien als Prozentwert der Linienbreite der Außenhautlinien und der inneren Wand. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Prozentwert über 50 % bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Gerätehöhe" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Wert über die Hälfte der Wandbreite bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Passt die Fülldichte des Drucks an." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Druckbettform" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstrukturdächer und -böden wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Die Form der Druckplatte ohne Berücksichtigung nicht druckbarer Bereiche." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Dadurch wird die Dichte der Stützstruktur angepasst, mit der die Spitzen der Äste generiert werden. Ein höherer Wert führt zu besseren Überhängen, allerdings lässt sich die Stützstruktur schwerer entfernen. Verwenden Sie bei sehr hohen Werten ein Stützdach oder stellen Sie sicher, dass die Dichte der Stützstruktur oben ähnlich hoch ist." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechteckig" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstruktur wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptisch" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Druckplattenmaterial" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Das Material der im Drucker eingebauten Druckplatte." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Alle" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Mit beheizter Druckplatte" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Alle gleichzeitig" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Option für vorhandene beheizte Druckplatte." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Abwechselnde Zusatzwände" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Zeigt an, ob das Gerät die Temperatur im Druckraum stabilisieren kann." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Wechselndes Entfernen des Netzes" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Abwechselnde Wandrichtungen" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Immer aktives Tools schreiben" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Mit aktivem Werkzeug schreiben, nach dem temporäre Befehle an das inaktive Werkzeug übermittelt wurden. Erforderlich für Dual-Extruder-Druck mit Smoothie oder anderer Firmware mit modalen Werkzeugbefehlen." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Stets zurückziehen, wenn eine Bewegung für den Beginn einer Außenwand erfolgt." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is-Center-Ursprung" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können zu große Löcher kompensieren; negative Werte können zu kleine Löcher kompensieren." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Definiert, ob die X/Y-Koordinaten der Nullposition des Druckers in der Mitte des druckbaren Bereichs stehen." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Der Abstand, der auf die Polygone in der ersten Schicht angewendet wird. Ein negativer Wert kann ein Zerquetschen der ersten Schicht, auch als „Elefantenfuß“ bezeichnet, ausgleichen." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Anzahl Extruder" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können die Stützbereiche glätten und dadurch eine stabilere Stützstruktur schaffen." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Anzahl der Extruder-Elemente. Ein Extruder-Element ist die Kombination aus Zuführung, Filamentführungsschlauch und Düse." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Umfang des angewandten Versatzes für die Böden der Stützstruktur." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Anzahl der aktivierten Extruder" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Umfang des angewandten Versatzes für die Dächer der Stützstruktur." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Anzahl der aktivierten Extruder-Elemente; wird automatisch in der Software festgelegt" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Umfang des angewandten Versatzes für die Stützstruktur-Schnittstellen-Polygone." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Düsendurchmesser außen" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Wert, um den das Filament eingezogen wird, damit es während des Abwischens nicht austritt." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Der Außendurchmesser der Düsenspitze." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Ein Zusatz zum Radius von der Mitte jedes Würfels, um die Modellbegrenzungen zu überprüfen und um zu entscheiden, ob dieser Würfel unterteilt werden sollte. Höhere Werte führen zu einem dickeren Gehäuse von kleinen Würfeln im Bereich der Modellbegrenzungen." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Düsenlänge" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Anti-Überhang-Netz" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Bereich des Druckkopfes." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Einzugsmaß für Sickerschutz" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Düsenwinkel" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Sickerschutz" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Der Winkel zwischen der horizontalen Planfläche und dem konischen Teil direkt über der Düsenspitze." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Heizzonenlänge" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Erzeugt eine Struktur aus ineinandergreifenden Balken an den Stellen, an denen sich Modelle berühren. Dies verbessert die Haftung zwischen Modellen, insbesondere bei Modellen, die aus verschiedenen Materialien gedruckt werden." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Die Distanz von der Düsenspitze, in der Wärme von der Düse zum Filament geleitet wird." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Gedruckte Teile bei Bewegung umgehen" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Temperatursteuerung der Düse aktivieren" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Stützstrukturen bei Bewegung umgehen" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Für die Temperatursteuerung von Cura. Schalten Sie diese Funktion aus, um die Düsentemperatur außerhalb von Cura zu steuern." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Hinten" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Aufheizgeschwindigkeit" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Hinten links" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby aufheizt." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Hinten rechts" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Abkühlgeschwindigkeit" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits von Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby abkühlt." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beides" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Mindestzeit Standby-Temperatur" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Beide überlappen" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Die Mindestzeit, die ein Extruder inaktiv sein muss, bevor die Düse abkühlt. Nur wenn der Extruder über diese Zeit hinaus nicht verwendet wurde, kann er auf die Standby-Temperatur abkühlen." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Untere Schichten" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-Code-Variante" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Unteres Muster für erste Schicht" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Der Typ des zu generierenden G-Codes." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut unten" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut unten" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Untere Dicke" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Astdichte" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Astdichte" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Winkel des Astdurchmessers" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Einzugsmaß für Bruchvorbereitung" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits von Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatur für Bruchvorbereitung" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Einzugsmaß für das Brechen" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Firmware-Einzug" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Einzugsgeschwindigkeit für das Brechen" -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." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Bruchtemperatur" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruder teilen sich Heizelement" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Stützstruktur in Blöcke aufteilen" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Gibt an, ob die Extruder sich ein Heizelement teilen oder jeweils über ein eigenes verfügen." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Lüfterdrehzahl Brücke" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruder teilen sich eine Düse" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brücke hat mehrere Schichten" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Gibt an, ob die Extruder gemeinsam eine Düse nutzen oder jeweils über eine eigene verfügen. In der Einstellung „true“ ist zu erwarten, dass das GCode-Skript „printer-start“ alle Extruder ordnungsgemäß in einem bekannten und untereinander kompatiblen Anfangszustand anordnet (Rückzugstellung; entweder Null oder mit einem nicht zurückgezogenen Filament); in diesem Fall wird die anfängliche Rückzugstellung für jeden Extruder durch den Parameter „machine_extruders_shared_nozzle_initial_retraction“ beschrieben." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichte Brücke, zweite Außenhaut" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rückzugstellung der gemeinsam genutzten Düse" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Bestimmt, wie weit das Filament jedes Extruders bei Abschluss des GCode-Skripts „printer-start“ von der gemeinsam genutzten Düsenspitze zurückgezogen sein soll; der Wert sollte gleich oder größer sein als die Länge des gemeinsamen Teils der Düsenkanäle." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluss Brücke, zweite Außenhaut" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Unzulässige Bereiche" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Geschwindigkeit Brücke, zweite Außenhaut" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichte der Brücken-Außenhaut" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Unzulässige Bereiche für die Düse" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Brücken-Außenhautfluss" -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." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Brücken-Außenhautgeschwindigkeit" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Gerätekopf und Lüfter Polygon" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Die Form des Druckkopfes. Dies sind die Koordinaten relativ zur Position des Druckkopfs; meist ist dies die Position des ersten Extruders. Die Abmessungen links und vor dem Druckkopf müssen negative Koordinaten sein." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale Dichte der Materialsparfüllung der Brücke" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Brückenhöhe" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Versatz mit Extruder" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Extruder absolute Einzugsposition" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximaldrehzahl X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Die Maximaldrehzahl für den Motor der X-Richtung." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximaldrehzahl Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Die Maximaldrehzahl für den Motor der Y-Richtung." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximaldrehzahl Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximaldrehzahl E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Die Maximalgeschwindigkeit des Filaments." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Beschleunigung X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Die maximale Beschleunigung für den Motor der X-Richtung" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Beschleunigung Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Die maximale Beschleunigung für den Motor der Y-Richtung." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Beschleunigung Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Die maximale Beschleunigung für den Motor der Z-Richtung." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Beschleunigung Filament" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Die maximale Beschleunigung für den Motor des Filaments." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Voreingestellte Beschleunigung" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichte Brücke, dritte Außenhaut" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Voreingestellter X-Y-Ruck" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluss Brücke, dritte Außenhaut" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Voreingestellter Ruck für die Bewegung in der horizontalen Planfläche." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Geschwindigkeit Brücke, dritte Außenhaut" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Voreingestellter Z-Ruck" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting Brückenwand" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Voreingestellter Ruck für den Motor in Z-Richtung." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Brückenwandfluss" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Voreingestellter Filament-Ruck" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Brückenwandgeschwindigkeit" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Voreingestellter Ruck für den Motor des Filaments." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Schritte pro Millimeter (X)" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Abstand zum Brim-Element" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in X-Richtung führen." +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Abstand zur Vermeidung des inneren Brims" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Schritte pro Millimeter (Y)" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Anzahl der Brim-Linien" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Y-Richtung führen." +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim nur an Außenseite" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Schritte pro Millimeter (Z)" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim ersetzt die Stützstruktur" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Z-Richtung führen." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breite des Brim-Elements" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Schritte pro Millimeter (E)" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Druckplattenhaftung für Extruder" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-Endanschlag in positiver Richtung" +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Druckplattenhaftungstyp" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Definiert, ob der Endanschlag der X-Achse in positiver Richtung (hohe X-Koordinate) oder negativer Richtung (niedrige X-Koordinate) liegt." +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Druckplattenmaterial" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-Endanschlag in positiver Richtung" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Druckbettform" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Definiert, ob der Endanschlag der Y-Achse in positiver Richtung (hohe Y-Koordinate) oder negativer Richtung (niedrige Y-Koordinate) liegt." +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatur Druckplatte" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-Endanschlag in positiver Richtung" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatur der Druckplatte für die erste Schicht" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Definiert, ob der Endanschlag der Z-Achse in positiver Richtung (hohe Z-Koordinate) oder negativer Richtung (niedrige Z-Koordinate) liegt." +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatur Druckabmessung" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Mindest-Vorschub" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Objekt zentrieren" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Ändern Sie die Geometrie des gedruckten Modells so, dass eine minimale Stützstruktur benötigt wird. Tiefe Überhänge werden flacher. Überhängende Bereiche fallen herunter und werden damit vertikaler." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Feeder-Raddurchmesser" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Der Durchmesser des Rades für den Transport des Materials in den Feeder." +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-Geschwindigkeit" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-Volumen" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Skalieren der Lüftergeschwindigkeit auf einen Wert zwischen 0 und 1 statt zwischen 0 und 256" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Beim Coasting wird der letzte Teil eines Extrusionswegs durch einen Bewegungsweg ersetzt. Das abgesonderte Material wird zum Druck des letzten Stücks des Extrusionswegs verwendet, um Fadenziehen zu vermindern." -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualität" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-Modus" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)." +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, oder nur Combing innerhalb der Füllung auszuführen." -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Schichtdicke" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Einstellungen Befehlszeile" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Die Dicke jeder Schicht in mm. Bei höheren Werten werden schnellere Drucke mit niedrigerer Auflösung hergestellt, bei niedrigeren Werten langsamere Drucke mit höherer Auflösung." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Dicke der ersten Schicht" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Linienbreite" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Die Breite einer einzelnen Linie. Generell sollte die Breite jeder Linie der Breite der Düse entsprechen. Eine leichte Reduzierung dieses Werts kann jedoch zu besseren Drucken führen." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Breite der Wandlinien" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Die Breite einer einzelnen Wandlinie." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Breite der äußeren Wandlinien" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Die Breite der äußersten Wandlinie. Indem dieser Wert reduziert wird, können höhere Detaillierungsgrade erreicht werden." +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Konzentrisch" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Breite der inneren Wandlinien" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Winkel konische Stützstruktur" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Die Breite einer einzelnen Wandlinie für alle Wandlinien, außer der äußersten." +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Mindestbreite konische Stützstruktur" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Breite der oberen/unteren Linie" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Füllungslinien verbinden" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Die Breite einer einzelnen oberen/unteren Linie." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Füllungspolygone verbinden" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Breite der Fülllinien" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Stützlinien verbinden" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Die Breite einer einzelnen Fülllinie." +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zickzack-Elemente Stützstruktur verbinden" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Skirt-/Brim-Linienbreite" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Polygone oben/unten verbinden" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Verbinden Sie Füllungspfade, wenn sie nebeneinander laufen. Bei Füllungsmustern, die aus mehreren geschlossenen Polygonen bestehen, reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Breite der Stützstrukturlinien" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Die Zickzack-Elemente werden verbunden. Dies erhöht die Stärke der Zickzack-Stützstruktur." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Die Breite einer einzelnen Stützstrukturlinie." +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Die Enden der Stützlinien werden miteinander verbunden. Die Aktivierung dieser Einstellung kann Ihre Stützstruktur stabiler machen und Unterextrusion verhindern, kostet jedoch mehr Material." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Stützstruktur Schnittstelle Linienbreite" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Die Breite einer einzelnen Stützdach- oder Bodenlinie." +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Breite der Stützdachlinie" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Definieren Sie, ob Kanten am Modell-Umriss die Nahtposition beeinflussen. Keine bedeutet, dass Kanten keinen Einfluss auf die Nahtposition haben. Naht verbergen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden Kante auftreten. Naht offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer Außenkante auftreten. Naht verbergen oder offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden oder außenliegenden Kante auftreten. Intelligent verbergen lässt die Naht an innen- oder außenliegenden Kanten auftreten, verwendet aber – falls zweckmäßig – häufiger innenliegende Kanten." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Die Breite einer einzelnen Stützdachlinie." +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Konvertieren Sie jede Fülllinie in diese mehrfachen Linien. Die zusätzlichen Linien überschneiden sich nicht, sondern vermeiden sich vielmehr. Damit wird die Füllung steifer, allerdings erhöhen sich Druckzeit und Materialverbrauch." -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Stützstruktur Boden Linienbreite" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Abkühlgeschwindigkeit" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." +msgctxt "cooling description" +msgid "Cooling" +msgstr "Kühlung" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Linienbreite Einzugsturm" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Kühlung" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Die Linienbreite eines einzelnen Einzugsturms." +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kreuz" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Linienbreite der ersten Schicht" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Quer" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplikator der Linienbreite der ersten Schicht. Eine Erhöhung dieses Werts verbessert möglicherweise die Betthaftung." +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3D-Kreuz" -msgctxt "shell label" -msgid "Walls" -msgstr "Wände" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Größe 3D-Quertasche" -msgctxt "shell description" -msgid "Shell" -msgstr "Gehäuse" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Querfülldichte Bild für Stützstruktur" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extruder für Wand" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Querfülldichte Bild" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Die für das Drucken der Wände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallines Material" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder Außenwand" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Würfel" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Die für das Drucken der Außenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Würfel-Unterbereich" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder Innenwand" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Gehäuse Würfel-Unterbereich" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Die für das Drucken der Innenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Mesh beschneiden" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddicke" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)." -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Die Dicke der Wände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände." +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Voreingestellte Beschleunigung" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Anzahl der Wandlinien" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standardtemperatur Druckplatte" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der Wände. Wenn diese anhand der Wanddicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Voreingestellter Filament-Ruck" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Wandübergangslänge" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Voreingestellte Drucktemperatur" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Wenn beim Übergang zwischen verschiedenen Wänden das Teil dünner wird, wird ein bestimmter Raum zugewiesen, in dem sich die Wandlinien teilen bzw. verbinden." +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Voreingestellter X-Y-Ruck" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Anzahl verteilter Wände" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Voreingestellter Z-Ruck" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Die Anzahl der Wände, gezählt von der Mitte aus, über welche die Variation verteilt werden soll. Niedrigere Werte führen dazu, dass sich die Außenwände in ihrer Stärke nicht verändern." +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Voreingestellter Ruck für die Bewegung in der horizontalen Planfläche." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Schwellenwinkel für Wandübergang" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Voreingestellter Ruck für den Motor in Z-Richtung." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Legt fest, ab welchem Winkel Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden erstellt werden. Eine Keilform mit einem größeren Winkel als in dieser Einstellung erhält keine Übergänge und es werden keine Wände in der Mitte gedruckt, um den verbleibenden Raum zu füllen. Wenn diese Einstellung verringert wird, reduziert dies die Anzahl und Länge dieser Mittelwände, kann jedoch Lücken oder zu starke Extrudierungen hinterlassen." +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Voreingestellter Ruck für den Motor des Filaments." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Wandübergangsfilter Abstand" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüftereinstellungen während des Drucks von Brücken." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt." +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Bestimmt die Reihenfolge, in der die Wände gedruckt werden. Das frühe Drucken der Außenwände hilft bei der Maßgenauigkeit, da Fehler von Innenwänden nicht an die Außenseite weitergegeben werden können. Wenn sie jedoch später gedruckt werden, ist ein Stapeldruck besser möglich, wenn Überhänge gedruckt werden. Bei einer ungleichmäßigen Anzahl an Gesamtinnenwänden wird die „mittlere letzte Linie“ immer zuletzt gedruckt." -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Wandübergangsfilter Rand" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Legt fest, welchen Rang dieses Netz (Mesh) bei mehreren überlappenden Mesh-Füllungen hat. Bereiche, in denen mehrere Mesh-Füllungen überlappen, übernehmen die Einstellungen des Netzes mit dem höchsten Rang. Ist der Rang einer Mesh-Füllung höher, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Rang niedriger oder normal ist." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Vermeiden Sie den Wechsel zwischen getrennten und zusammengeführten Wänden. Dieser Rand erweitert den Bereich der Linienstärken auf [Minimale Wandlinienstärke – Rand, 2 x Minimale Wandlinienstärke + Rand]. Wenn Sie diesen Rand vergrößern, wird die Anzahl der Übergänge reduziert, was die Anzahl der Starts/Stopps und die Anfahrzeit für die Extrusion reduziert. Große Unterschiede der Linienstärken können jedoch zu Unter- oder Überextrusionsproblemen führen." +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Wipe-Abstand der Außenwand" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Entfernung einer Bewegung nach der Außenwand, um die Z-Naht besser zu verbergen." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Einfügung Außenwand" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Vergrößerung des Durchmessers zum Modell" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells." +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Dies bezeichnet den Durchmesser, den jeder Ast haben sollte, wenn er die Druckplatte erreicht. Verbessert die Betthaftung." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Reihenfolge des Wanddrucks optimieren" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Verschiedene Optionen, die die Materialbereitstellung für die Extrusion und die Haftung am Druckbett verbessern. Durch die Brim-Funktion wird ein flacher, einschichtiger Bereich um die Basis des Modells herum hinzugefügt, um Warping zu verhindern. Durch die Raft-Funktion wird ein dickes Gitter mit Dach unter dem Modell hinzugefügt. Das Skirt-Element ist eine Linie, die um das Modell herum gedruckt wird, aber nicht mit dem Modell verbunden ist." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung. Bei Wahl eines Brims als Druckplattenhaftungstyp ist die erste Schicht nicht optimiert." +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Unzulässige Bereiche" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandreihenfolge" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Der Abstand zwischen den gedruckten Fülllinien. Diese Einstellung wird anhand von Fülldichte und Breite der Fülllinien berechnet." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Bestimmt die Reihenfolge, in der die Wände gedruckt werden. Das frühe Drucken der Außenwände hilft bei der Maßgenauigkeit, da Fehler von Innenwänden nicht an die Außenseite weitergegeben werden können. Wenn sie jedoch später gedruckt werden, ist ein Stapeldruck besser möglich, wenn Überhänge gedruckt werden. Bei einer ungleichmäßigen Anzahl an Gesamtinnenwänden wird die „mittlere letzte Linie“ immer zuletzt gedruckt." +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Der Abstand zwischen der ursprünglichen gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Von innen nach außen" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Der Abstand zwischen den gedruckten Stützstrukturbodenlinien. Diese Einstellung wird anhand der Dichte des Stützstrukturboden berechnet, kann aber auch separat eingestellt werden." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Von außen nach innen" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Der Abstand zwischen den gedruckten Stützdachlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet, kann aber auch separat eingestellt werden." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Abwechselnde Zusatzwände" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Es wird eine Zusatzwand für jede zweite Schicht gedruckt. Auf diese Weise gelangt Füllung zwischen diese Zusatzwände, was zu stärkeren Drucken führt." +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Mindestlinienstärke der Wand" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke." +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimale Wandlinienstärke (geradzahlig)" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Der Abstand, der nach jeder Fülllinie zurückgelegt wird, damit die Füllung besser an den Wänden haftet. Diese Option ähnelt Füllung überlappen, aber ohne Extrusion und nur an einem Ende der Fülllinie." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Die Mindestlinienstärke für normale polygonale Wände. Diese Einstellung legt fest, bei welcher Stärke des Modells vom Druck einer einzelnen dünnen Wandlinie auf den Druck zweier Wandlinien umgeschaltet wird. Eine höhere minimale geradzahlige Wandlinienstärke führt zu einer höheren maximalen geradzahligen Wandlinienstärke. Die maximale geradzahlige Wandlinienstärke wird berechnet als Außenwandlinienstärke + 0,5 x minimale geradzahlige Wandlinienstärke." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Entfernung einer Bewegung nach der Außenwand, um die Z-Naht besser zu verbergen." -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimale Wandlinienstärke (ungeradzahlig)" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Der Abstand des Windschutzes zum gedruckten Objekt in den X/Y-Richtungen." -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Die minimale Linienbreite für Polylinienwände mit Lücken in der mittleren Linie. Diese Einstellung legt fest, bei welcher Stärke im Modell ein Übergang vom Druck zweier Wandlinien zum Druck zweier Außenwände und einer einzigen zentralen Wand in der Mitte erfolgt. Eine höhere minimale ungeradzahlige Wandlinienstärke führt zu einer höheren maximalen ungeradzahligen Wandlinienstärke. Die maximale ungerade Wandlinienbreite wird berechnet als 2 x Minimale Wandlinienbreite." +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." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Drucken von dünnen Wänden" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Der Abstand der Stützstruktur zum Überhang in der X- und Y-Richtung." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind." +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Der Abstand der Stützstruktur zum gedruckten Objekt in der X- und Y-Richtung." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mindestgröße des Merkmals" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Mindeststärke dünner Merkmale. Modellmerkmale, die dünner sind als dieser Wert, werden nicht gedruckt, während Merkmale, die dicker als die Mindeststärke sind, auf die Mindestwandlinienstärke verbreitert werden." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimale Wandlinienstärke (dünn)" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Keine Füllungsbereiche generieren, die kleiner als dieser sind (stattdessen Außenhaut verwenden)." -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Breite der Wand, die dünne Merkmale (entsprechend der Mindest-Merkmalgröße) des Modells ersetzen wird. Wenn die Mindeststärke der Wandlinie dünner ist als die Stärke des Merkmals, wird die Wand so dick wie das Merkmal selbst." +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Höhe des Windschutzes" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Erweiterung" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Begrenzung des Windschutzes" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können zu große Löcher kompensieren; negative Werte können zu kleine Löcher kompensieren." +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "X/Y-Abstand des Windschutzes" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Horizontale Erweiterung erste Schicht" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Stütznetz ablegen" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Der Abstand, der auf die Polygone in der ersten Schicht angewendet wird. Ein negativer Wert kann ein Zerquetschen der ersten Schicht, auch als „Elefantenfuß“ bezeichnet, ausgleichen." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Duale Extrusion" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontalloch-Erweiterung" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptisch" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Bei einem Wert größer als Null ist die Horizontalloch-Erweiterung der Versatz, der auf alle Löcher in jeder Schicht angewendet wird. Positive Werte vergrößern die Löcher, negative Werte verringern die Lochgröße. Wenn diese Einstellung aktiviert ist, kann sie mit „Maximaler Durchmesser der Horizontalloch-Erweiterung“ weiter angepasst werden." +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Beschleunigungssteuerung aktivieren" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Maximaler Durchmesser der Horizontalloch-Erweiterung" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Brückeneinstellungen aktivieren" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Bei Werten größer als Null wird die Horizontalloch-Erweiterung schrittweise auf kleine Löcher angewendet (kleine Löcher werden stärker erweitert). Beim Wert Null wird die Horizontalloch-Erweiterung auf alle Löcher angewendet. Löcher, die größer als der maximale Durchmesser der Horizontalloch-Erweiterung sind, werden nicht erweitert." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting aktivieren" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Justierung der Z-Naht" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konische Stützstruktur aktivieren" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Der Startdruckpunkt von jedem Teil einer Schicht. Wenn der Druck der Teile in aufeinanderfolgenden Schichten am gleichen Punkt startet, kann eine vertikale Naht sichtbar werden. Wird dieser neben einer benutzerdefinierten Position ausgerichtet, ist die Naht am einfachsten zu entfernen. Wird er zufällig platziert, fallen die Ungenauigkeiten am Startpunkt weniger auf. Wird der kürzeste Weg eingestellt, ist der Druck schneller." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Windschutz aktivieren" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Benutzerdefiniert" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Fließbewegung aktivieren" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kürzester" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Glätten aktivieren" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Zufall" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Rucksteuerung aktivieren" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Schärfste Kante" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Temperatursteuerung der Düse aktivieren" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position der Z-Naht" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sickerschutz aktivieren" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Die Position in der Nähe der Stelle, an der die einzelnen Teile einer Ebene gedruckt werden sollen." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Einzugstropfen aktivieren" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Hinten links" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Einzugsturm aktivieren" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Hinten" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Kühlung für Drucken aktivieren" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Hinten rechts" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Einzug aktivieren" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Stütz-Brim aktivieren" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Vorne rechts" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Stützboden aktivieren" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Vorne" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Stützstruktur-Schnittstelle aktivieren" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Vorne links" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Stützdach aktivieren" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Beschleunigung für Bewegungen aktivieren" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-Naht X" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ruckfunktion für Bewegungen aktivieren" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Die X-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht." -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-Naht Y" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden." -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Die Y-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Ermöglicht die Justierung der Ruckfunktion des Druckkopfes bei Änderung der Geschwindigkeit in der X- oder Y-Achse. Eine Erhöhung der Ruckfunktion kann die Druckzeit auf Kosten der Druckqualität reduzieren." -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Präferenz Nahtkante" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Ermöglicht die Justierung der Druckkopfbeschleunigung. Eine Erhöhung der Beschleunigungen kann die Druckzeit auf Kosten der Druckqualität reduzieren." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Definieren Sie, ob Kanten am Modell-Umriss die Nahtposition beeinflussen. Keine bedeutet, dass Kanten keinen Einfluss auf die Nahtposition haben. Naht verbergen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden Kante auftreten. Naht offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer Außenkante auftreten. Naht verbergen oder offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden oder außenliegenden Kante auftreten. Intelligent verbergen lässt die Naht an innen- oder außenliegenden Kanten auftreten, verwendet aber – falls zweckmäßig – häufiger innenliegende Kanten." +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Die Druckerlüfter werden während des Druckens aktiviert. Die Lüfter verbessern die Qualität von Schichten mit kurzen Schichtzeiten und von Brückenbildung/Überhängen." -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Keine" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Ende G-Code" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Naht verbergen" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Ausspüldauer am Ende des Filaments" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naht offenlegen" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Ausspülgeschwindigkeit am Ende des Filaments" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Naht verbergen oder offenlegen" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Intelligent verbergen" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Überall" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exklusiv" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Realitvwert der Z-Naht" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimentell" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Bei Aktivierung sind die Z-Naht-Koordinaten relativ zur Mitte der jeweiligen Teile. Bei Deaktivierung definieren die Koordinaten eine absolute Position auf dem Druckbett." +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naht offenlegen" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Oben/Unten" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Extensives Stitching" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Oben/Unten" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden Polygonen abzudecken. Diese Option kann eine lange Verarbeitungszeit in Anspruch nehmen." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Oberfläche Außenhaut Extruder" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Zusätzliche Füllung Wandlinien" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Die für das Drucken der obersten Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Linienanzahl der zusätzlichen Außenhaut" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Oberfläche Außenhaut Schichten" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Die Anzahl der obersten Außenhautschichten. Üblicherweise reicht eine einzige oberste Schicht aus, um höherwertige Oberflächen zu generieren." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Oberfläche Außenhaut Linienbreite" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Die Breite einer einzelnen Linie der oberen Druckbereiche." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Oberfläche Außenhaut Muster" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruder teilen sich Heizelement" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Das Muster der obersten Schichten." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruder teilen sich eine Düse" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Korrekturfaktor für die Geschwindigkeit auf Basis der Extrusionsbreite. Bei 0 % wird die Bewegungsgeschwindigkeit konstant in der Druckgeschwindigkeit gehalten. Bei 100 % wird die Bewegungsgeschwindigkeit so eingestellt, dass der Fluss (in mm³/s) konstant bleibt, d. h. Linien mit der Hälfte der normalen Linienstärke werden doppelt so schnell gedruckt und Linien mit der doppelten Linienstärke werden halb so schnell gedruckt. Ein Wert größer als 100 % kann dazu beitragen, den höheren Druck zu kompensieren, der zum Extrudieren breiter Linien erforderlich ist." -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Lüfterdrehzahl" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Gleichmäßige Reihenfolge oben" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Lüfterdrehzahl überschreiben" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Teile, die kleiner sind als dieser Wert, werden in Detailgeschwindigkeit gedruckt." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Linienrichtungen der Oberfläche Außenhaut" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen Außenhautschichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Feeder-Raddurchmesser" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Oben/Unten" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Endgültige Drucktemperatur" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Die für das Drucken der oberen und unteren Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Firmware-Einzug" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Obere/untere Dicke" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder für erste Schicht der Stützstruktur" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Die Dicke der oberen/unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen/unteren Schichten." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluss" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Obere Dicke" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhältnis für Durchflussausgleich" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Die Dicke der oberen Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen Schichten." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Ausgleichsfaktor Durchflussrate" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Obere Schichten" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der oberen Schichten. Wenn diese anhand der oberen Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Fließtemperaturgraf" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Untere Dicke" +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." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Die Dicke der unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der unteren Schichten." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Durchflusskompensation an den unteren Linien der ersten Schicht" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Untere Schichten" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Durchflusskompensation an Füllungslinien." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der unteren Schichten. Wenn diese anhand der unteren Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Durchflusskompensation an Dach- oder Bodenlinien der Stützstruktur." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Erste untere Schichten" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Durchflusskompensation an Linien von Flächen an der Oberseite des Druckobjekts." -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." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Durchflusskompensation an Einzugsturmlinien." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Unteres/oberes Muster" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Das Muster der oberen/unteren Schichten." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Durchflusskompensation an Stützbodenlinien." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Durchflusskompensation an Stützdachlinien." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Durchflusskompensation an Stützstrukturlinien." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Durchflusskompensation an der äußersten Wandlinie der ersten Schicht" -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Unteres Muster für erste Schicht" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Durchflusskompensation an der äußeren Wandlinie." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Das Muster am Boden des Drucks der ersten Schicht." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Durchflusskompensation an oberen/unteren Linien." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere, aber nur für die erste Schicht" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Polygone oben/unten verbinden" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Durchflusskompensation an Wandlinien." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Fluss-Kompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Gleichmäßige Reihenfolge oben/unten" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Fließbewegungswinkel" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Fließbewegung – Verschiebeabstand" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Richtungen der oberen/unteren Linie" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Fließbewegung – kleiner Abstand" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen/unteren Schichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Ausspüldauer" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Kleine obere/untere Breite" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Ausspülgeschwindigkeit" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des standardmäßigen oberen und unteren Musters gefüllt. So lassen sich ruckartige Bewegungen vermeiden. Dies ist standardmäßig für die oberste (der Luft ausgesetzten) Schicht deaktiviert (siehe „Kleine Oberseite/Unterseite auf der Oberfläche“)." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke." -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Kleine Oberseite/Unterseite auf der Oberfläche" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Vorne" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Vorne links" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Keine Außenhaut in Z-Lücken" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Vorne rechts" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Wenn das Modell kleine, nur wenige Schichten hohe vertikale Lücken aufweist, sind diese normalerweise von einer Außenhaut bedeckt. Aktivieren Sie diese Einstellung, damit bei sehr kleinen Lücken keine Außenhaut gedruckt wird. Dies verkürzt die zum Drucken und Slicen benötigte Zeit, aber die Füllung bleibt der Luft ausgesetzt." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Voll" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Linienanzahl der zusätzlichen Außenhaut" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Ungleichmäßige Außenhaut" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichte der ungleichmäßigen Außenhaut" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Glätten aktivieren" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Nur ungleichmäßige Außenhaut" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, aber extrudieren Sie diesmal sehr wenig Material. Dadurch wird die oberste Kunststoffschicht geschmolzen und es entsteht eine glattere Oberfläche. Der Druck in der Düsenkammer bleibt weiterhin hoch, so dass Risse in der Oberfläche mit Material gefüllt werden." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Punktabstand der ungleichmäßigen Außenhaut" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Nur oberste Schicht glätten" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dicke der ungleichmäßigen Außenhaut" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern." +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-Code-Variante" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Glättungsmuster" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch \n" +"." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Das Muster, das für die Glättung der Oberflächen verwendet wird." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch \n" +"." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID des Materials. Dies wird automatisch eingestellt." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Brückenhöhe" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Gleichmäßige Reihenfolge hin/her" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Ineinandergreifende Struktur generieren" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Stützstruktur generieren" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Glättungslinienabstand" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Erstellen Sie ein Brim in den Stützstruktur-Füllungsbereichen der ersten Schicht. Das Brim wird unterhalb der Stützstruktur und nicht drumherum gedruckt. Die Aktivierung dieser Einstellung erhöht die Haftung der Stützstruktur am Druckbett." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Der Abstand zwischen den Glättungslinien." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Es wird eine dichte Schnittstelle zwischen dem Modell und der Stützstruktur generiert. Das erstellt eine Außenhaut oben auf der Stützstruktur, auf der das Modell gedruckt wird, und unten auf der Stützstruktur, wo diese auf dem Modell ruht." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Glättungsfluss" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Es wird eine dichte Materialschicht zwischen dem Boden der Stützstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Die Materialmenge relativ zu einer normalen Außenhautlinie, um während des Glättens zu extrudieren. Indem die Düse gefüllt bleibt, können einige Spalten in der oberen Schicht gefüllt werden, allerdings führt zu viel davon zu einer übermäßigen Extrudierung und Markierungen seitlich der Oberfläche." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Es wird eine dichte Materialschicht zwischen der Stützdachstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Glättungseinsatz" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Eine Distanz, die von den Kanten des Modells einzuhalten ist. Die Glättung des gesamten Weges zur Kante des Mesh führt möglicherweise zu einer gezackten Kante Ihres Drucks." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Glättungsgeschwindigkeit" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, aber extrudieren Sie diesmal sehr wenig Material. Dadurch wird die oberste Kunststoffschicht geschmolzen und es entsteht eine glattere Oberfläche. Der Druck in der Düsenkammer bleibt weiterhin hoch, so dass Risse in der Oberfläche mit Material gefüllt werden." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Die Geschwindigkeit, mit der über die Oberfläche gegangen wird." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Höhe stufenweise Füllungsschritte" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Beschleunigung Glättung" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stufenweise Füllungsschritte" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Die Beschleunigung, mit der das Glätten erfolgt." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ruckfunktion glätten" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Stufenweise Füllungsschritte Stützstruktur" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Prozentsatz Außenhaut überlappen" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien als Prozentwert der Linienbreite der Außenhautlinien und der inneren Wand. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Prozentwert über 50 % bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Außenhaut überlappen" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Wert über die Hälfte der Wandbreite bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Gitter" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der Außenhaut oben/unten an abgeschrägten Flächen des Modells unterstützen." +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Äußere Wände gruppieren" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut oben" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der oberen Außenhaut an abgeschrägten Flächen des Modells unterstützen." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut unten" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden unteren Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der unteren Außenhaut an abgeschrägten Flächen des Modells unterstützen." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Mit beheizter Druckplatte" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Aufheizgeschwindigkeit" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Die Distanz, um die die Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den angrenzenden Schichten besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Heizzonenlänge" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut oben" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Die Begrenzung der Höhe des Windschutzes. Oberhalb dieser Höhe wird kein Windschutz mehr gedruckt." -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Die Distanz, um die die oberen Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den Schichten darüber besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Naht verbergen" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut unten" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Naht verbergen oder offenlegen" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Die Distanz, um die die unteren Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und an den Wänden auf der darunter liegenden Schicht haften. Niedrigere Werte reduzieren den Materialverbrauch." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontalloch-Erweiterung" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximaler Winkel Außenhaut für Expansion" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Maximaler Durchmesser der Horizontalloch-Erweiterung" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Die Außenhaut von Ober- und/oder Unterseiten Ihres Objekts, deren Winkel größer als dieser Wert sind, werden nicht expandiert. Dadurch wird vermieden, dass die schmalen Außenhautbereiche, die entstehen, wenn die Modelloberfläche eine nahezu vertikale Neigung aufweist, expandiert werden. Ein Winkel von 0° ist horizontal und führt dazu, dass ein solcher Außenhautbereich nicht expandiert wird; ein Winkel von 90° ist vertikal und führt dazu, dass die gesamte Außenhaut expandiert wird." +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Löcher und Teilkonturen mit einem kleineren Durchmesser werden mit Small Feature Speed gedruckt." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Mindestbreite Außenhaut für Expansion" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Erweiterung" -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." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" -msgctxt "infill label" -msgid "Infill" -msgstr "Füllung" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Streckmaß für das Filament im erhitzten Zustand, bevor es bricht." -msgctxt "infill description" -msgid "Infill" -msgstr "Füllung" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Maß, um das das Material eingezogen werden muss, damit es nicht heraussickert." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extruder für Füllung" +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." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Die für das Drucken der Füllung verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Maß, um das das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Fülldichte" +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." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Passt die Fülldichte des Drucks an." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Geschwindigkeit, mit der das Material beim Filamentwechsel eingezogen werden muss, damit es nicht heraussickert." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Linienabstand Füllung" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Gibt an, wie schnell das Material nach Austausch einer leeren Spule gegen eine neue Spule desselben Materials vorbereitet werden muss." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Der Abstand zwischen den gedruckten Fülllinien. Diese Einstellung wird anhand von Fülldichte und Breite der Fülllinien berechnet." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Gibt an, wie schnell das Material nach einem Wechsel zu einem anderen Material vorbereitet werden muss." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Füllmuster" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Gibt an, wie lange das Material sicher außerhalb der trockenen Lagerung aufbewahrt werden kann." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in X-Richtung führen." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Y-Richtung führen." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Z-Richtung führen." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexagon" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um das letzte Material aus der Düse zu entfernen, wenn eine leere Spule durch eine neue Spule mit dem selben Material ersetzt wird." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Würfel" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um bei einem Materialwechsel das letzte Material aus der Düse zu entfernen." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Würfel-Unterbereich" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Bestimmt, wie weit das Filament jedes Extruders bei Abschluss des GCode-Skripts „printer-start“ von der gemeinsam genutzten Düsenspitze zurückgezogen sein soll; der Wert sollte gleich oder größer sein als die Länge des gemeinsamen Teils der Düsenkanäle." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Hierdurch wird bestimmt, wie Stützstruktur-Schnittstelle und Stützstruktur interagieren, wenn sie sich überschneiden. Zurzeit nur für Stützdächer implementiert." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Viertelwürfel" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Dies bezeichnet die minimale Höhe eines Astes, der auf dem Modell platziert werden soll. Verhindert kleine Tropfen in der Stützstruktur. Diese Einstellung wird ignoriert, wenn ein Ast ein Stützdach hält." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +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." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Weicht ein Werkzeugpfad-Segment mehr als diesen Winkel von der allgemeinen Bewegung ab, wird es geglättet." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kreuz" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Bei Aktivierung werden die zweite und dritte Schicht über der Luft mit den folgenden Einstellungen gedruckt. Ansonsten werden diese Schichten mit den normalen Einstellungen gedruckt." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3D-Kreuz" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Blitz" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Füllungslinien verbinden" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Temperaturprüfung der Druckplatte einfügen" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materialtemperaturen einfügen" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Füllungspolygone verbinden" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inklusiv" + +msgctxt "infill description" +msgid "Infill" +msgstr "Füllung" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Verbinden Sie Füllungspfade, wenn sie nebeneinander laufen. Bei Füllungsmustern, die aus mehreren geschlossenen Polygonen bestehen, reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich." +msgctxt "infill label" +msgid "Infill" +msgstr "Füllung" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Linienrichtungen Füllung" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Beschleunigung Füllung" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für die Verwendung. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad für die Linien- und Zickzack-Muster und 45-Grad für alle anderen Muster) verwendet werden." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Füllung vor Wänden" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "X-Versatz Füllung" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Fülldichte" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse verschoben." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extruder für Füllung" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Y-Versatz Füllung" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluss der Füllung" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Ruckfunktion Füllung" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Füllstart randomisieren" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Füllschichtdicke" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Randomisieren Sie, welche Fülllinie zuerst gedruckt wird. So wird vermieden, dass ein Segment am stärksten ist. Allerdings muss dafür eine zusätzliche Bewegung ausgeführt werden." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Linienrichtungen Füllung" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Linienabstand Füllung" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Fülllinie multiplizieren" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Konvertieren Sie jede Fülllinie in diese mehrfachen Linien. Die zusätzlichen Linien überschneiden sich nicht, sondern vermeiden sich vielmehr. Damit wird die Füllung steifer, allerdings erhöhen sich Druckzeit und Materialverbrauch." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Zusätzliche Füllung Wandlinien" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Breite der Fülllinien" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen.\n Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Mesh-Füllung" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Gehäuse Würfel-Unterbereich" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Füllung für Überhänge Stützstruktur" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Ein Zusatz zum Radius von der Mitte jedes Würfels, um die Modellbegrenzungen zu überprüfen und um zu entscheiden, ob dieser Würfel unterteilt werden sollte. Höhere Werte führen zu einem dickeren Gehäuse von kleinen Würfeln im Bereich der Modellbegrenzungen." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Füllung überlappen" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Prozentsatz Füllung überlappen" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden als Prozentwert der Füllungslinienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Füllmuster" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Füllung überlappen" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Füllgeschwindigkeit" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Füllstruktur" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegungsoptimierung Füllung" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Wipe-Abstand der Füllung" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Der Abstand, der nach jeder Fülllinie zurückgelegt wird, damit die Füllung besser an den Wänden haftet. Diese Option ähnelt Füllung überlappen, aber ohne Extrusion und nur an einem Ende der Fülllinie." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "X-Versatz Füllung" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Füllschichtdicke" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Y-Versatz Füllung" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Die Dicke pro Schicht des Füllmaterials. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Erste untere Schichten" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stufenweise Füllungsschritte" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Anfängliche Lüfterdrehzahl" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Anzahl der Male zur Reduzierung der Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Beschleunigung erste Schicht" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Höhe stufenweise Füllungsschritte" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Unterer Fluss der ersten Schicht" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Die Höhe der Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Durchmesser der ersten Schicht" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Füllung vor Wänden" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluss der ersten Schicht" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Dicke der ersten Schicht" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Mindestbereich Füllung" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Horizontale Erweiterung erste Schicht" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Keine Füllungsbereiche generieren, die kleiner als dieser sind (stattdessen Außenhaut verwenden)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Innenwandfluss der ersten Schicht" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Füllstruktur" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Ruckfunktion der ersten Schicht" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Drucken Sie Füllstrukturen nur dort, wo das Modell gestützt werden soll. Die Aktivierung dieser Option reduziert die Druckdauer und den Materialverbrauch, führt jedoch zu einer ungleichmäßigen Objektdicke." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Linienbreite der ersten Schicht" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Füllung für Überhänge Stützstruktur" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Außenwandfluss der ersten Schicht" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden Objekte komplett gefüllt, bei 90° wird keine Füllung ausgeführt." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Druckbeschleunigung für die erste Schicht" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Stützenstärke für Außenhautkanten" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Ruckfunktion Druck für die erste Schicht" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Die Stärke der zusätzlichen Füllung, die die Außenhautkanten stützt." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Druckgeschwindigkeit für die erste Schicht" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Unterstützungsebenen für Außenhautkanten" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Linienabstand der ursprünglichen Stützstruktur" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Stützwinkel der Blitz-Füllung" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Geschwindigkeit der Bewegung für die erste Schicht" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Ruckfunktion Bewegung für die erste Schicht" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Überstandswinkel der Blitz-Füllung" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegungsgeschwindigkeit für die erste Schicht" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Überlappung der ersten Schicht" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Anfängliche Drucktemperatur" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Beschleunigung Innenwand" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder Innenwand" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Beschnittwinkel der Blitz-Füllung" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Ruckfunktion Innenwand" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Die Endpunkte von Füllungslinien werden gekürzt, um Material zu sparen. Bei dieser Einstellung handelt es sich um den Winkel des Überhangs der Endpunkte von diesen Linien." +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Geschwindigkeit Innenwand" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Begradigungswinkel der Blitz-Füllung" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Wandfluss innen" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Breite der inneren Wandlinien" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Voreingestellte Drucktemperatur" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Die für den Druck verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur eines Materials sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Von innen nach außen" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatur Druckabmessung" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Schnittstellenlinien priorisiert" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Die Temperatur der Druckumgebung. Beträgt der Wert 0, wird die Druckraumtemperatur nicht angepasst." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Schnittstelle priorisiert" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Drucktemperatur" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Anzahl der Schichten ineinandergreifender Balken" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Die Temperatur, die für das Drucken verwendet wird." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breite der ineinandergreifenden Balken" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Drucktemperatur erste Schicht" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Die Temperatur, die für das Drucken der ersten Schicht verwendet wird. Wählen Sie hier 0, um eine spezielle Behandlung der ersten Schicht zu deaktivieren." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Tiefe der ineinandergreifenden Struktur" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Anfängliche Drucktemperatur" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ausrichtung der ineinandergreifenden Struktur" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Die Mindesttemperatur während des Aufheizens auf die Drucktemperatur, bei welcher der Druck bereits starten kann." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Nur oberste Schicht glätten" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Endgültige Drucktemperatur" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Beschleunigung Glättung" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der Druck beendet wird." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Glättungsfluss" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Glättungseinsatz" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Die zusätzliche Geschwindigkeit mit der die Düse während der Extrusion abkühlt. Der gleiche Wert wird verwendet, um Aufheizgeschwindigkeit anzugeben, die verloren geht wenn während der Extrusion aufgeheizt wird." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ruckfunktion glätten" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standardtemperatur Druckplatte" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Glättungslinienabstand" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Die für die erhitzte Druckplatte verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur einer Druckplatte sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Glättungsmuster" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatur Druckplatte" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Glättungsgeschwindigkeit" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Die Temperatur, die für das beheizte Druckbett verwendet wird. Beträgt dieser Wert 0, wird das Bett nicht beheizt." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is-Center-Ursprung" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatur der Druckplatte für die erste Schicht" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Ist Stützmaterial" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Die Temperatur, auf die das Druckbett für die erste Schicht erhitzt wird. Beträgt dieser Wert 0, wird das Druckbett für die erste Schicht nicht beheizt." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Haftungstendenz" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Oberflächenhaftungstendenz." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Es werden nur die Umrisse der Teile gejittert und nicht die Löcher der Teile." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Oberflächenenergie" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Unterbrochene Flächen beibehalten" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oberflächenenergie." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Schichtdicke" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Schichtstart X" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Um die Schrumpfung des Materials beim Abkühlen zu kompensieren, wird das Modell mit diesem Faktor skaliert." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Schichtstart Y" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in XY-Richtung (horizontal) skaliert." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Die Schichtdicke des Raft-Mittelbereichs." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Die Schichtdicke der oberen Raft-Schichten." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in Z-Richtung (vertikal) skaliert." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Überspringen Sie eine Verbindung zwischen den Stützstrukturlinien nach jedem N-Millimeter, um das Brechen der Stützstruktur zu erleichtern." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallines Material" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Druckkopf anheben" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Einzugsmaß für Sickerschutz" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Blitz" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Maß, um das das Material eingezogen werden muss, damit es nicht heraussickert." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Überstandswinkel der Blitz-Füllung" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Sickerschutz" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Beschnittwinkel der Blitz-Füllung" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Geschwindigkeit, mit der das Material beim Filamentwechsel eingezogen werden muss, damit es nicht heraussickert." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Begradigungswinkel der Blitz-Füllung" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Einzugsmaß für Bruchvorbereitung" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Stützwinkel der Blitz-Füllung" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Streckmaß für das Filament im erhitzten Zustand, bevor es bricht." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Begrenzung der Astreichweite" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)." -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." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatur für Bruchvorbereitung" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Begrenzt" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Die Temperatur, die zum Spülen des Materials verwendet wird, sollte ungefähr der höchstmöglichen Drucktemperatur entsprechen." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Linienbreite" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Einzugsmaß für das Brechen" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Maß, um das das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Einzugsgeschwindigkeit für das Brechen" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Bruchtemperatur" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linien" -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." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Ausspülgeschwindigkeit" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Gibt an, wie schnell das Material nach einem Wechsel zu einem anderen Material vorbereitet werden muss." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linien" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Ausspüldauer" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um bei einem Materialwechsel das letzte Material aus der Düse zu entfernen." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Ausspülgeschwindigkeit am Ende des Filaments" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Gerätetiefe" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Gibt an, wie schnell das Material nach Austausch einer leeren Spule gegen eine neue Spule desselben Materials vorbereitet werden muss." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Gerätekopf und Lüfter Polygon" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Ausspüldauer am Ende des Filaments" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Gerätehöhe" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um das letzte Material aus der Düse zu entfernen, wenn eine leere Spule durch eine neue Spule mit dem selben Material ersetzt wird." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Gerät" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale Parkdauer" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Gerätebreite" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Gibt an, wie lange das Material sicher außerhalb der trockenen Lagerung aufbewahrt werden kann." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Faktor für Bewegung ohne Ladung" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Überhänge druckbar machen" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Ein Faktor, der angibt, wie stark das Filament zwischen dem Feeder und der Düsenkammer komprimiert wird; hilft zu bestimmen, wie weit das Material für einen Filamentwechsel bewegt werden muss." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Erstellen Sie Netze, die einander berühren und sich leicht überlappen. Damit haften sie besser aneinander." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluss" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Fluss-Kompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Sorgt für Unterstützung überall unterhalb des Stütznetzes, sodass kein Überhang im Stütznetz vorhanden ist." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wandfluss" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Durchflusskompensation an Wandlinien." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Wandfluss außen" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Passe die Gitter besser an den 3D-Druck an." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Durchflusskompensation an der äußeren Wandlinie." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Wandfluss innen" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluss oben/unten" +msgctxt "material description" +msgid "Material" +msgstr "" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Durchflusskompensation an oberen/unteren Linien." +msgctxt "material label" +msgid "Material" +msgstr "Material" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluss Oberfläche Außenhaut" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Material-GUID" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Durchflusskompensation an Linien von Flächen an der Oberseite des Druckobjekts." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materialmenge zwischen den Wischvorgängen" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluss der Füllung" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. Combing Entfernung ohne Einziehen" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Durchflusskompensation an Füllungslinien." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Beschleunigung X" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Skirt/Brim-Fluss" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Beschleunigung Y" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Beschleunigung Z" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Stützstruktur-Fluss" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maximaler Astwinkel" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Durchflusskompensation an Stützstrukturlinien." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale Abweichung" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluss Stützstruktur-Schnittstelle" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale Abweichung der Extrusionsfläche" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Durchflusskompensation an Dach- oder Bodenlinien der Stützstruktur." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximaldrehzahl des Lüfters" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Stützdachfluss" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Beschleunigung Filament" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximaler Winkel des Modells" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Durchflusskompensation an Stützdachlinien." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximaler Lochflächen-Überstand" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Stützbodenfluss" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale Parkdauer" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Durchflusskompensation an Stützbodenlinien." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale Auflösung" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluss Einzugsturm" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximale Anzahl von Einzügen" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Durchflusskompensation an Einzugsturmlinien." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximaler Winkel Außenhaut für Expansion" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluss der ersten Schicht" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximaldrehzahl E" -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." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximaldrehzahl X" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Innenwandfluss der ersten Schicht" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximaldrehzahl Y" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere, aber nur für die erste Schicht" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximaldrehzahl Z" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Außenwandfluss der ersten Schicht" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximaler Durchmesser für Stützpfeiler" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Durchflusskompensation an der äußersten Wandlinie der ersten Schicht" +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale Bewegungsauflösung" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Unterer Fluss der ersten Schicht" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Die maximale Beschleunigung für den Motor der X-Richtung" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Durchflusskompensation an den unteren Linien der ersten Schicht" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Die maximale Beschleunigung für den Motor der Y-Richtung." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Standby-Temperatur" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Die maximale Beschleunigung für den Motor der Z-Richtung." -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." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Die maximale Beschleunigung für den Motor des Filaments." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Ist Stützmaterial" +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 "Maximale Dichte der Füllung, die im Sparmodus eingefüllt werden soll. Haut über spärlicher Füllung wird als nicht unterstützt betrachtet und kann daher als Brückenhaut behandelt werden." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Der Mindestdurchmesser in den X/Y-Richtungen eines kleinen Bereichs, der durch einen speziellen Stützpfeiler gestützt wird." -msgctxt "speed label" -msgid "Speed" -msgstr "Geschwindigkeit" +msgctxt "max_extrusion_before_wipe description" +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 "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird. Ist dieser Wert kleiner als das in einer Schicht benötigte Materialvolumen, so hat die Einstellung in dieser Schicht keine Auswirkung, d.h. sie ist auf ein Wischen pro Schicht begrenzt." -msgctxt "speed description" -msgid "Speed" -msgstr "Geschwindigkeit" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Überlappung zusammengeführte Netze" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Druckgeschwindigkeit" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Netzreparaturen" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Die Geschwindigkeit, mit der gedruckt wird." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Netzposition X" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Füllgeschwindigkeit" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Netzposition Y" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Netzposition Z" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandgeschwindigkeit" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rang der Netzverarbeitung" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrix Netzdrehung" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Geschwindigkeit Außenwand" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Mitte" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Die Geschwindigkeit, mit der die Außenwände gedruckt werden. Durch das Drucken der Außenwand bei einer niedrigeren Geschwindigkeit wird eine bessere Endqualität der Außenhaut erreicht. Wenn allerdings zwischen der Geschwindigkeit für die Innenwand und jener für die Außenwand ein zu großer Unterschied besteht, wird die Qualität negativ beeinträchtigt." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Mindestbreite der Form" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Geschwindigkeit Innenwand" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Mindestzeit Standby-Temperatur" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Mindestlänge Brückenwand" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Oberfläche Außenhaut Geschwindigkeit" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimale Wandlinienstärke (geradzahlig)" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Die Geschwindigkeit, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Fenster „Minimaler Extrusionsabstand“" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Geschwindigkeit obere/untere Schicht" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mindestgröße des Merkmals" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Die Geschwindigkeit, mit der die oberen/unteren Schichten gedruckt werden." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Mindest-Vorschub" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Stützstrukturgeschwindigkeit" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Mindesthöhe auf Modell" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Die Geschwindigkeit, mit der die Stützstruktur gedruckt wird. Durch das Drucken der Stützstruktur bei höheren Geschwindigkeiten kann die Gesamtdruckzeit deutlich verringert werden. Die Oberflächenqualität der Stützstruktur ist nicht wichtig, da diese nach dem Drucken entfernt wird." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Mindestbereich Füllung" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Stützstruktur-Füllungsgeschwindigkeit" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Mindestzeit für Schicht" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Die Geschwindigkeit, mit der die Füllung der Stützstruktur gedruckt wird. Durch das Drucken der Füllung bei einer geringeren Geschwindigkeit, kann die Stabilität verbessert werden." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimale Wandlinienstärke (ungeradzahlig)" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Stützstruktur-Schnittstellengeschwindigkeit" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mindestumfang Polygon" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Mindestbreite Außenhaut für Expansion" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Stützdachgeschwindigkeit" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Mindestgeschwindigkeit" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Die Geschwindigkeit, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Mindestbereich Stützstruktur" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Geschwindigkeit Bodenstruktur" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Mindestbereich Stützstrukturboden" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Mindestbereich Stützstruktur-Schnittstelle" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Die Geschwindigkeit, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Haftung des Stützdachs Ihres Modells verbessert werden." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Mindestbereich Stützstrukturdach" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Geschwindigkeit Einzugsturm" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "X/Y-Mindestabstand der Stützstruktur" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Die Geschwindigkeit, mit der der Einzugsturm gedruckt wird. Das Drucken des Einzugsturms bei einer geringeren Geschwindigkeit kann zu einem stabileren Ergebnis führen, wenn die Haftung zwischen den verschiedenen Filamenten nicht optimal ist." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimale Wandlinienstärke (dünn)" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegungsgeschwindigkeit" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Mindestvolumen vor Coasting" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Mindestlinienstärke der Wand" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht" +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." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung auf der Bauplatte zu verbessern. Hat keinen Einfluss auf die Haftstrukturen des Druckbetts selbst, wie Krempe und Raft." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Mindestflächenbreite für Stützstruktur-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Druckgeschwindigkeit für die erste Schicht" +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 "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Die Druckgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern." +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 "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegungsgeschwindigkeit für die erste Schicht" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Mindeststärke dünner Merkmale. Modellmerkmale, die dünner sind als dieser Wert, werden nicht gedruckt, während Merkmale, die dicker als die Mindeststärke sind, auf die Mindestwandlinienstärke verbreitert werden." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Die Bewegungsgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um das Wegziehen zuvor gedruckter Teile von der Druckplatte zu vermeiden. Der Wert dieser Einstellung kann automatisch aus dem Verhältnis zwischen Bewegungsgeschwindigkeit und Druckgeschwindigkeit errechnet werden." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Die Mindestbreite, auf die die Basis der konischen Stützstruktur reduziert wird. Geringe Breiten können instabile Stützstrukturen zur Folge haben." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Geschwindigkeit Skirt/Brim" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Form" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Die Geschwindigkeit, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Geschwindigkeit der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Geschwindigkeit zu drucken." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Formwinkel" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Sprunghöhe Z" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dachhöhe der Form" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Die Geschwindigkeit, mit der bei Z-Sprüngen die vertikale Bewegung (Z-Achse) erfolgt. Diese liegt in der Regel unterhalb der Druckgeschwindigkeit, da die Bewegung von Druckbett oder Brücke schwieriger ist." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Gleichmäßige Reihenfolge hin/her" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Anzahl der langsamen Schichten" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Gleichmäßige Reihenfolge oben" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Die ersten Schichten werden langsamer als der Rest des Modells gedruckt, damit sie besser am Druckbett haften und um die Wahrscheinlichkeit eines erfolgreichen Drucks zu erhöhen. Die Geschwindigkeit wird während des Druckens dieser Schichten schrittweise erhöht." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Gleichmäßige Reihenfolge oben/unten" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhältnis für Durchflussausgleich" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Mehrere Skirt-Linien ermöglichen eine bessere Materialbereitstellung für die Extrusion für kleine Modelle. Wird dieser Wert auf 0 eingestellt, wird kein Skirt erstellt." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Korrekturfaktor für die Geschwindigkeit auf Basis der Extrusionsbreite. Bei 0 % wird die Bewegungsgeschwindigkeit konstant in der Druckgeschwindigkeit gehalten. Bei 100 % wird die Bewegungsgeschwindigkeit so eingestellt, dass der Fluss (in mm³/s) konstant bleibt, d. h. Linien mit der Hälfte der normalen Linienstärke werden doppelt so schnell gedruckt und Linien mit der doppelten Linienstärke werden halb so schnell gedruckt. Ein Wert größer als 100 % kann dazu beitragen, den höheren Druck zu kompensieren, der zum Extrudieren breiter Linien erforderlich ist." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplikator der Linienbreite der ersten Schicht. Eine Erhöhung dieses Werts verbessert möglicherweise die Betthaftung." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Beschleunigungssteuerung aktivieren" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Faktor für Bewegung ohne Ladung" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Ermöglicht die Justierung der Druckkopfbeschleunigung. Eine Erhöhung der Beschleunigungen kann die Druckzeit auf Kosten der Druckqualität reduzieren." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Keine Außenhaut in Z-Lücken" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Beschleunigung für Bewegungen aktivieren" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Verwenden Sie eine separate Beschleunigungsrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Beschleunigungswert der gedruckten Linie an der Zielposition verwendet." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Keine" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Beschleunigung Druck" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Keine" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Die Beschleunigung, mit der das Drucken erfolgt." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Beschleunigung Füllung" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalerweise versucht Cura kleine Löcher im Netz abzudecken und Teile von Schichten, die große Löcher aufweisen, zu entfernen. Die Aktivierung dieser Option erhält jene Teile, die nicht abgedeckt werden können. Diese Option sollte nur als letzter Ausweg verwendet werden, wenn es andernfalls nicht möglich ist, einen korrekten G-Code zu berechnen." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Beschleunigung Wand" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Nicht in Außenhaut" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Nicht auf der Außenfläche" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Beschleunigung Außenwand" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Düsenwinkel" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Die Beschleunigung, mit der die Außenwände gedruckt werden." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Beschleunigung Innenwand" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Unzulässige Bereiche für die Düse" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Beschleunigung Oberfläche Außenhaut" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Düsenlänge" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Die Beschleunigung, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Beschleunigung Oben/Unten" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Die Beschleunigung, mit der die oberen/unteren Schichten gedruckt werden." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Düsenwechsel Rückzuggeschwindigkeit" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Beschleunigung Stützstruktur" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Düsenwechsel Einzugsabstand" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Düsenwechsel Rückzugsgeschwindigkeit" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Beschleunigung Stützstrukturfüllung" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Anzahl Extruder" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Die Beschleunigung, mit der die Füllung der Stützstruktur gedruckt wird." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Anzahl der aktivierten Extruder" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Beschleunigung Stützstrukturschnittstelle" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Anzahl der langsamen Schichten" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Anzahl der aktivierten Extruder-Elemente; wird automatisch in der Software festgelegt" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Beschleunigung Dachstruktur" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Anzahl der Extruder-Elemente. Ein Extruder-Element ist die Kombination aus Zuführung, Filamentführungsschlauch und Düse." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Die Beschleunigung, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Anzahl der Wiederholungen für das Bewegen der Düse über der Bürste." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Beschleunigung Bodenstruktur" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Anzahl der Male zur Reduzierung der Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Haftung des Stützdachs verbessert werden." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Anzahl der Male zur Reduzierung der Stützstruktur-Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte der Stützstruktur." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Beschleunigung Einzugsturm" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Aus" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Beschleunigung Bewegung" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Verwendeter Versatz für das Objekt in X-Richtung." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Verwendeter Versatz für das Objekt in Y-Richtung." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Beschleunigung erste Schicht" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Der für das Objekt in Z-Richtung verwendete Versatz. Damit können Sie den Vorgang ausführen, der unter dem Begriff „Objekt absenken“ verwendet wurde." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Die Beschleunigung für die erste Schicht." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Versatz mit Extruder" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Druckbeschleunigung für die erste Schicht" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Wenn möglich auf der Druckplatte" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Die Beschleunigung während des Druckens der ersten Schicht." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Bei Bedarf auf dem Modell" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Geschwindigkeit der Bewegung für die erste Schicht" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Nacheinander" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahren, die nicht durch eine horizontale Bewegung vermeidbar sind, indem Sie gedruckte Teile während der Fahrt vermeiden." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Beschleunigung Skirt/Brim" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Die Beschleunigung, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Beschleunigung der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Beschleunigung zu drucken." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Rucksteuerung aktivieren" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Winkel für Sickerschutz" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Ermöglicht die Justierung der Ruckfunktion des Druckkopfes bei Änderung der Geschwindigkeit in der X- oder Y-Achse. Eine Erhöhung der Ruckfunktion kann die Druckzeit auf Kosten der Druckqualität reduzieren." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Abstand für Sickerschutz" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Ruckfunktion für Bewegungen aktivieren" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimale Astreichweite" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Verwenden Sie eine separate Ruckrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Ruckfunktionswert der gedruckten Linie an der Zielposition verwendet." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Reihenfolge des Wanddrucks optimieren" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Ruckfunktion Drucken" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung. Bei Wahl eines Brims als Druckplattenhaftungstyp ist die erste Schicht nicht optimiert." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Düsendurchmesser außen" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Ruckfunktion Füllung" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Beschleunigung Außenwand" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung gedruckt wird." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder Außenwand" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Ruckfunktion Wand" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Wandfluss außen" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Wände gedruckt werden." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Einfügung Außenwand" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Ruckfunktion Außenwand" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Außenwände gedruckt werden." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Breite der äußeren Wandlinien" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Ruckfunktion Innenwand" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Geschwindigkeit Außenwand" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Wipe-Abstand der Außenwand" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Justierung der Oberfläche Außenhaut" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen Schichten der Außenhaut gedruckt werden." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Von außen nach innen" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Ruckfunktion obere/untere Schicht" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Winkel für überhängende Wände" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen/unteren Schichten gedruckt werden." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Geschwindigkeit für überhängende Wände" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Ruckfunktion Stützstruktur" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Überhängende Wände werden zu diesem Prozentwert ihrer normalen Druckgeschwindigkeit gedruckt." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Stützstruktur gedruckt wird." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausieren nach Aufhebung des Einzugs." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Ruckfunktion Stützstruktur-Füllung" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Lüfterdrehzahl in Prozentwert für das Drucken von Brückenwänden und -Außenhaut." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung der Stützstruktur gedruckt wird." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Lüfterdrehzahl in Prozentwert für das Drucken der zweiten Brücken-Außenhautschicht." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Ruckfunktion Stützstruktur-Schnittstelle" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Prozentwert der Lüfterdrehzahl für die Verwendung beim Drucken der Außenhautbereiche direkt oberhalb der Stützstruktur. Die Verwendung einer hohen Lüfterdrehzahl ermöglicht ein leichteres Entfernen der Stützstruktur." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Prozentwert der Lüfterdrehzahl für das Drucken der dritten Brücken-Außenhautschicht." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Ruckfunktion für Dachstruktur" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polygone in geschnittenen Schichten, die einen Umfang unter diesem Wert haben, werden ausgefiltert. Niedrigere Werte führen zu einem Mesh mit höherer Auflösung zulasten der Slicing-Zeit. Dies gilt in erster Linie für SLA-Drucker mit höherer Auflösung und sehr kleine 3D-Modelle mit zahlreichen Details." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Bevorzugter Astwinkel" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Vermeiden Sie den Wechsel zwischen getrennten und zusammengeführten Wänden. Dieser Rand erweitert den Bereich der Linienstärken auf [Minimale Wandlinienstärke – Rand, 2 x Minimale Wandlinienstärke + Rand]. Wenn Sie diesen Rand vergrößern, wird die Anzahl der Übergänge reduziert, was die Anzahl der Starts/Stopps und die Anfahrzeit für die Extrusion reduziert. Große Unterschiede der Linienstärken können jedoch zu Unter- oder Überextrusionsproblemen führen." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Beschleunigung Einzugsturm" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer der Stützstruktur gedruckt werden." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Ruckfunktion für Bodenstruktur" +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Böden der Stützstruktur gedruckt werden." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluss Einzugsturm" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "Ruckfunktion Einzugsturm" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der der Einzugsturm gedruckt wird." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Ruckfunktion Bewegung" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Linienbreite Einzugsturm" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Ruckfunktion der ersten Schicht" +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Mindestvolumen Einzugsturm" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schicht." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Ruckfunktion Druck für die erste Schicht" +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Größe Einzugsturm" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Druckens für die erste Schicht." +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Geschwindigkeit Einzugsturm" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Ruckfunktion Bewegung für die erste Schicht" +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-Position des Einzugsturm" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-Position des Einzugsturms" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Ruckfunktion Skirt/Brim" +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der Skirt und Brim gedruckt werden." +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Beschleunigung Druck" -msgctxt "travel label" -msgid "Travel" -msgstr "Bewegungen" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Ruckfunktion Drucken" -msgctxt "travel description" -msgid "travel" -msgstr "Bewegungen" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Druckreihenfolge" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Einzug aktivieren" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Druckgeschwindigkeit" -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." +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Drucken von dünnen Wänden" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Einziehen bei Schichtänderung" +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." -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." +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Drucken Sie Füllstrukturen nur dort, wo das Modell gestützt werden soll. Die Aktivierung dieser Option reduziert die Druckdauer und den Materialverbrauch, führt jedoch zu einer ungleichmäßigen Objektdicke." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Einzugsabstand" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." -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." +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Damit werden Modelle als Form gedruckt, die gegossen werden kann, um ein Modell zu erhalten, das den Modellen des Druckbetts ähnelt." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Einzugsgeschwindigkeit" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind." -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." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Einzugsgeschwindigkeit (Einzug)" +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht." -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." +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Einzugsgeschwindigkeit (Zurückschieben)" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." -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." +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Zusätzliche Zurückschiebemenge nach Einzug" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Drucktemperatur" -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." +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Drucktemperatur erste Schicht" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Mindestbewegung für Einzug" +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Ein Druck der innersten Skirt-Linie mit mehreren Schichten ermöglicht ein einfaches Entfernen des Skirts." -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." +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Es wird eine Zusatzwand für jede zweite Schicht gedruckt. Auf diese Weise gelangt Füllung zwischen diese Zusatzwände, was zu stärkeren Drucken führt." -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximale Anzahl von Einzügen" +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualität" -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." +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Viertelwürfel" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Fenster „Minimaler Extrusionsabstand“" +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -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." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luftspalt für Raft" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-Modus" +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft-Basis-Extruder" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, oder nur Combing innerhalb der Füllung auszuführen." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Lüfterdrehzahl für Raft-Basis" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Aus" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Linienabstand der Raft-Basis" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alle" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Linienbreite der Raft-Basis" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Nicht auf der Außenfläche" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Druckbeschleunigung Raft Unten" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Nicht in Außenhaut" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Ruckfunktion Drucken Raft-Basis" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Innerhalb der Füllung" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Druckgeschwindigkeit für Raft-Basis" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. Combing Entfernung ohne Einziehen" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dicke der Raft-Basis" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Wandanzahl des Raft-Bodens" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Vor Außenwand zurückziehen" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Zusätzlicher Abstand für Raft" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Stets zurückziehen, wenn eine Bewegung für den Beginn einer Außenwand erfolgt." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Lüfterdrehzahl für Raft" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Gedruckte Teile bei Bewegung umgehen" +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extruder für die Raft-Mitte" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Teile. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Lüfterdrehzahl Raft Mitte" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Stützstrukturen bei Bewegung umgehen" +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Mittlere Ebenen des Rafts" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Stützstrukturen. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Linienbreite des Raft-Mittelbereichs" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Umgehungsabstand Bewegung" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Druckbeschleunigung Raft Mitte" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Teilen, wenn diese bei Bewegungen umgangen werden." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Ruckfunktion Drucken Raft Mitte" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Schichtstart X" +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Druckgeschwindigkeit Raft Mitte" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Die X-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Linienabstand im Raft-Mittelbereich" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Schichtstart Y" +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Dicke der Raft-Mittelbereichs" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Die Y-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Druckbeschleunigung Raft" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-Sprung beim Einziehen" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Ruckfunktion Raft-Druck" -msgctxt "retraction_hop_enabled 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 "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft-Druckgeschwindigkeit" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-Sprung nur über gedruckten Teilen" +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft-Glättung" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahren, die nicht durch eine horizontale Bewegung vermeidbar sind, indem Sie gedruckte Teile während der Fahrt vermeiden." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extruder für die Raft-Oberseite" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z-Sprung Höhe" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Lüfterdrehzahl Raft Oben" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dicke der oberen Raft-Schichten" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-Sprung nach Extruder-Wechsel" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Obere Raft-Schichten" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Linienbreite der Raft-Oberfläche" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z-Sprung Höhe nach Extruder-Wechsel" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Druckbeschleunigung Raft Oben" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Ruckfunktion Drucken Raft Oben" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Kühlung" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Druckgeschwindigkeit Raft Oben" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Kühlung" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Linienabstand der Raft-Oberfläche" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Kühlung für Drucken aktivieren" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Zufall" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Die Druckerlüfter werden während des Druckens aktiviert. Die Lüfter verbessern die Qualität von Schichten mit kurzen Schichtzeiten und von Brückenbildung/Überhängen." +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Füllstart randomisieren" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Lüfterdrehzahl" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Randomisieren Sie, welche Fülllinie zuerst gedruckt wird. So wird vermieden, dass ein Segment am stärksten ist. Allerdings muss dafür eine zusätzliche Bewegung ausgeführt werden." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." +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." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechteckig" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Normaldrehzahl des Lüfters" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Die Drehzahl, mit der die Lüfter laufen, bevor der Grenzwert erreicht wird. Wenn eine Schicht schneller als der Grenzwert gedruckt wird, steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximaldrehzahl des Lüfters" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normaldrehzahl des Lüfters bei Höhe" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Die Drehzahl, mit der die Lüfter bei der Mindestzeit für Schicht laufen. Die Lüfterdrehzahl wird schrittweise von der Normaldrehzahl bis zur Maximaldrehzahl des Lüfters angehoben, wenn der Grenzwert erreicht wird." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normaldrehzahl des Lüfters bei Schicht" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Die Schichtzeit, die den Grenzwert zwischen Normaldrehzahl und Maximaldrehzahl des Lüfters darstellt. Für Schichten, die langsamer als diese Zeit gedruckt werden, läuft der Lüfter auf Normaldrehzahl. Für schnellere Schichten steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relative Extrusion" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Anfängliche Lüfterdrehzahl" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Löcher entfernen" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Die Drehzahl, mit der die Lüfter zu Druckbeginn drehen. In den nachfolgenden Schichten wird die Lüfterdrehzahl schrittweise bis zu der Schicht gesteigert, die der Normaldrehzahl in der Höhe entspricht." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Leere erste Schichten entfernen" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normaldrehzahl des Lüfters bei Höhe" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Netzüberschneidung entfernen" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Die Höhe, auf der die Lüfter mit Normaldrehzahl laufen. In den Schichten darunter wird die Lüfterdrehzahl schrittweise von der anfänglichen Lüfterdrehzahl bis zur Normaldrehzahl angehoben." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Innenecken des Rafts entfernen" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Es werden alle Löcher in den einzelnen Schichten entfernt und lediglich die äußere Form wird erhalten. Dadurch wird jegliche unsichtbare interne Geometrie ignoriert. Jedoch werden auch solche Löcher in den Schichten ignoriert, die man von oben oder unten sehen kann." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Präferenz Auflagestelle" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normaldrehzahl des Lüfters bei Schicht" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Vor Außenwand zurückziehen" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Die Schicht, bei der die Lüfter mit Normaldrehzahl laufen. Wenn Normaldrehzahl des Lüfters bei Höhe eingestellt ist, wird dieser Wert berechnet und auf eine ganze Zahl auf- oder abgerundet." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Einziehen bei Schichtänderung" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Mindestzeit für Schicht" +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." -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Die Mindestzeit, die für eine Schicht aufgewendet wird. Hierdurch wird der Drucker verlangsamt, um mindestens die hier eingestellte Zeit für eine Schicht aufzuwenden. Dadurch kann das gedruckte Material angemessen abkühlen, bevor die folgende Schicht gedruckt wird. Die Schichten können dennoch weniger als die Mindestzeit für eine Schicht erfordern, wenn die Funktion Druckkopf anheben deaktiviert ist und die Mindestgeschwindigkeit andernfalls verletzt würde." +msgctxt "wipe_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." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Mindestgeschwindigkeit" +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." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Die Mindestdruckgeschwindigkeit, trotz Verlangsamung aufgrund der Mindestzeit für Schicht. Wenn der Drucker zu langsam arbeitet, sinkt der Druck in der Düse zu stark ab und dies führt zu einer schlechten Druckqualität." +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Einzugsabstand" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Druckkopf anheben" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Zusätzliche Zurückschiebemenge nach Einzug" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Wenn die Mindestgeschwindigkeit aufgrund der Mindestzeit für Schicht erreicht wird, wird der Druckkopf vom Druck angehoben und die zusätzliche Zeit, bis die Mindestzeit für Schicht erreicht ist, gewartet." +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Mindestbewegung für Einzug" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Drucktemperatur für kleine Schichten" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Einzugsgeschwindigkeit (Zurückschieben)" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken." +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Einzugsgeschwindigkeit (Einzug)" -msgctxt "support label" -msgid "Support" -msgstr "Stützstruktur" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Einzugsgeschwindigkeit" -msgctxt "support description" -msgid "Support" -msgstr "Stützstruktur" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Stützstruktur generieren" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Skalieren der Lüftergeschwindigkeit auf einen Wert zwischen 0 und 1 statt zwischen 0 und 256" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder für Stützstruktur" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Szene verfügt über Stütznetze" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder für Füllung Stützstruktur" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Präferenz Nahtkante" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Füllung der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird." -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder für erste Schicht der Stützstruktur" +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Das für das Drucken der ersten Schicht der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Diese Einstellungen werden nur verwendet, wenn CuraEngine nicht seitens Cura aufgerufen wird." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder für Stützstruktur-Schnittstelle" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rückzugstellung der gemeinsam genutzten Düse" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Dächer und Böden der Stützstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Schärfste Kante" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder für Dachstruktur" +msgctxt "shell description" +msgid "Shell" +msgstr "Gehäuse" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützdachstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kürzester" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder für Bodenstruktur" +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Anzeige der Gerätevarianten" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützstruktur der Böden verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Unterstützungsebenen für Außenhautkanten" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Stützstruktur" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Stützenstärke für Außenhautkanten" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Außenhaut überlappen" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Tree" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Prozentsatz Außenhaut überlappen" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maximaler Astwinkel" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Dies bezeichnet den maximalen Winkel der Äste, die um das Modell herum entstehen. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." +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." -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Astdichte" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Wegbrechen der Stützstruktur zu erleichtern." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Dies beschreibt den Durchmesser der dünnsten Äste der Baumstützstruktur. Dickere Äste sind stabiler. Äste zur Basis hin werden dicker als diese sein." +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Überspringen Sie einige Stützstruktur-Verbindungen, um das Brechen der Stützstruktur zu erleichtern. Diese Einstellung ist für die Zickzack-Stützstruktur-Füllung vorgesehen." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Stammdurchmesser" +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Durchmesser der breitesten Äste der Baumstützstruktur. Ein dickerer Stamm ist stabiler, ein dünnerer Stamm nimmt weniger Platz auf dem Druckbett ein." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt-Abstand" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Winkel des Astdurchmessers" +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Skirt-Höhe" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Dies beschreibt den Winkel der Astdurchmesser, da sie stufenweise zum Boden hin dicker werden. Ein Winkel von 0 lässt die Äste über die gesamte Länge hinweg eine gleiche Dicke haben. Ein geringer Winkel kann die Stabilität der Baumstützstruktur erhöhen." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Anzahl der Skirt-Linien" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Platzierung Stützstruktur" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Beschleunigung Skirt/Brim" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Druckbett berühren" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim-Extruder" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Überall" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Skirt/Brim-Fluss" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Bevorzugter Astwinkel" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Ruckfunktion Skirt/Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Skirt-/Brim-Linienbreite" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Dies bezeichnet den bevorzugten Winkel der Äste, wenn eine Vermeidung des Modells nicht notwendig ist. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Astwinkel, um sie schneller zusammenzuführen." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mindestlänge für Skirt/Brim" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Vergrößerung des Durchmessers zum Modell" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Geschwindigkeit Skirt/Brim" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Dies bezeichnet die maximale Vergrößerung des Durchmessers eines Astes, der mit dem Modell verbunden werden muss, durch die Zusammenführung mit Ästen, die die Druckplatte erreichen könnten. Die Erhöhung dieses Wertes verkürzt die Druckzeit, vergrößert jedoch die Stützstruktur, die auf dem Modell ruht." +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicing-Toleranz" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Mindesthöhe auf Modell" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht von Details" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Dies bezeichnet die minimale Höhe eines Astes, der auf dem Modell platziert werden soll. Verhindert kleine Tropfen in der Stützstruktur. Diese Einstellung wird ignoriert, wenn ein Ast ein Stützdach hält." +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Max. Detaillänge" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Durchmesser der ersten Schicht" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Detailgeschwindigkeit" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Dies bezeichnet den Durchmesser, den jeder Ast haben sollte, wenn er die Druckplatte erreicht. Verbessert die Betthaftung." +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Max. Lochdurchmesser" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Astdichte" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Drucktemperatur für kleine Schichten" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Dadurch wird die Dichte der Stützstruktur angepasst, mit der die Spitzen der Äste generiert werden. Ein höherer Wert führt zu besseren Überhängen, allerdings lässt sich die Stützstruktur schwerer entfernen. Verwenden Sie bei sehr hohen Werten ein Stützdach oder stellen Sie sicher, dass die Dichte der Stützstruktur oben ähnlich hoch ist." +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Kleine Oberseite/Unterseite auf der Oberfläche" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Astspitzendurchmesser" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Kleine obere/untere Breite" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Dies bezeichnet den Durchmesser an der Spitze von Ästen in der Baumstützstruktur." +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." -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Begrenzung der Astreichweite" +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." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)." +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des standardmäßigen oberen und unteren Musters gefüllt. So lassen sich ruckartige Bewegungen vermeiden. Dies ist standardmäßig für die oberste (der Luft ausgesetzten) Schicht deaktiviert (siehe „Kleine Oberseite/Unterseite auf der Oberfläche“)." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimale Astreichweite" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Intelligente Brim" -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)." +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Intelligent verbergen" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Präferenz Auflagestelle" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Glätten der spiralisierten Kontur" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Hierdurch wird die bevorzugte Platzierung der Stützstrukturen festgelegt. Wenn Strukturen nicht an der gewünschten Stelle platziert werden können, werden sie anderswo positioniert, möglicherweise sogar auf dem Modell." +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Glättet die spiralförmigen Konturen, um die Sichtbarkeit der Z-Naht zu reduzieren (die Z-Naht sollte am Druckobjekt kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass beim Glätten feine Oberflächendetails verwischt werden." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Wenn möglich auf der Druckplatte" +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." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Bei Bedarf auf dem Modell" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Während einer Bewegung für den Abwischvorgang kann Material wegsickern, was hier kompensiert werden kann." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Winkel für Überhänge Stützstruktur" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Sonderfunktionen" -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden alle Überhänge gestützt, bei 90° wird kein Überhang gestützt." +msgctxt "speed description" +msgid "Speed" +msgstr "Geschwindigkeit" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Muster der Stützstruktur" +msgctxt "speed label" +msgid "Speed" +msgstr "Geschwindigkeit" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Das Muster der Stützstruktur des Drucks. Die verschiedenen verfügbaren Optionen führen zu einer stabilen oder zu einer leicht entfernbaren Stützstruktur." +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Geschwindigkeit für das Verfahren der Z-Achse während des Sprungs." -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiralisieren der äußeren Konturen" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. Dies führt zu einem konstanten Z-Anstieg des gesamten Drucks. Diese Funktion wandelt ein solides Modell in einen Druck mit Einzelwänden und einem soliden Boden um. Diese Funktion sollte nur aktiviert werden, wenn jede Schicht nur ein einzelnes Teil enthält." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Standby-Temperatur" -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-Code" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Der Startdruckpunkt von jedem Teil einer Schicht. Wenn der Druck der Teile in aufeinanderfolgenden Schichten am gleichen Punkt startet, kann eine vertikale Naht sichtbar werden. Wird dieser neben einer benutzerdefinierten Position ausgerichtet, ist die Naht am einfachsten zu entfernen. Wird er zufällig platziert, fallen die Ungenauigkeiten am Startpunkt weniger auf. Wird der kürzeste Weg eingestellt, ist der Druck schneller." -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Quer" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Schritte pro Millimeter (E)" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Schritte pro Millimeter (X)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Anzahl der Wandlinien der Stützstruktur" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Schritte pro Millimeter (Y)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Schritte pro Millimeter (Z)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle" +msgctxt "support description" +msgid "Support" +msgstr "Stützstruktur" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "support label" +msgid "Support" +msgstr "Stützstruktur" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Anzahl der Wandlinien des Stützdachs" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Beschleunigung Stützstruktur" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Unterer Abstand der Stützstruktur" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Anzahl der unteren Wandlinien der Stützstruktur" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Anzahl der Brim-Stützstrukturlinien" -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Stützlinien verbinden" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breite der Brim-Stützstruktur" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Die Enden der Stützlinien werden miteinander verbunden. Die Aktivierung dieser Einstellung kann Ihre Stützstruktur stabiler machen und Unterextrusion verhindern, kostet jedoch mehr Material." +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Anzahl der Stützstruktur-Blocklinien" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zickzack-Elemente Stützstruktur verbinden" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Blockgröße für Stützstruktur" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Die Zickzack-Elemente werden verbunden. Dies erhöht die Stärke der Zickzack-Stützstruktur." +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichte der Stützstruktur" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Abstandspriorität der Stützstruktur" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder für Stützstruktur" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Beschleunigung Bodenstruktur" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichte der Stützstruktur" +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichte der Bodenstruktur" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstruktur wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder für Bodenstruktur" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Linienabstand der Stützstruktur" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Stützbodenfluss" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturboden" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Linienabstand der ursprünglichen Stützstruktur" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Ruckfunktion für Bodenstruktur" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Der Abstand zwischen der ursprünglichen gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Richtungen der Bodenlinien unterstützen" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Unterstützung Linienrichtung Füllung" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Linienabstand der Bodenstruktur" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass der Standardwinkel von 0 Grad zu verwenden ist." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Stützstruktur Boden Linienbreite" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Stütz-Brim aktivieren" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Muster der Bodenstruktur" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Erstellen Sie ein Brim in den Stützstruktur-Füllungsbereichen der ersten Schicht. Das Brim wird unterhalb der Stützstruktur und nicht drumherum gedruckt. Die Aktivierung dieser Einstellung erhöht die Haftung der Stützstruktur am Druckbett." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Geschwindigkeit Bodenstruktur" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breite der Brim-Stützstruktur" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dicke der Bodenstruktur" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Stützstruktur-Fluss" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Anzahl der Brim-Stützstrukturlinien" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Erweiterung der Stützstruktur" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Beschleunigung Stützstrukturfüllung" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-Abstand der Stützstruktur" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder für Füllung Stützstruktur" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Der Abstand der Ober-/Unterseite der Stützstruktur vom Druck. So wird ein Zwischenraum geschaffen, der die Entfernung der Stützstrukturen nach dem Drucken des Modells ermöglicht. Dieser Wert wird auf ein Vielfaches der Schichtdicke aufgerundet." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Ruckfunktion Stützstruktur-Füllung" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Oberer Abstand der Stützstruktur" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Stützstruktur Füllschichtdicke" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Unterstützung Linienrichtung Füllung" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Unterer Abstand der Stützstruktur" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Stützstruktur-Füllungsgeschwindigkeit" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Der Abstand vom gedruckten Objekt bis zur Unterseite der Stützstruktur." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Beschleunigung Stützstrukturschnittstelle" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y-Abstand der Stützstruktur" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichte Stützstrukturschnittstelle" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Der Abstand der Stützstruktur zum gedruckten Objekt in der X- und Y-Richtung." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder für Stützstruktur-Schnittstelle" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Abstandspriorität der Stützstruktur" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluss Stützstruktur-Schnittstelle" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Definiert, ob die X/Y-Distanz der Stützstruktur die Z-Distanz der Stützstruktur aufhebt oder umgekehrt. Wenn X/Y Z aufhebt, kann die X/Y-Distanz die Stützstruktur vom Modell wegschieben und damit die tatsächliche Z-Distanz zum Überhang beeinflussen. Diese Einstellung kann deaktiviert werden, indem die X/Y-Distanz um die Überhänge nicht angewendet wird." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y hebt Z auf" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Ruckfunktion Stützstruktur-Schnittstelle" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z hebt X/Y auf" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Richtungen der Verbindungslinien unterstützen" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "X/Y-Mindestabstand der Stützstruktur" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Stützstruktur Schnittstelle Linienbreite" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Der Abstand der Stützstruktur zum Überhang in der X- und Y-Richtung." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Muster Stützstrukturschnittstelle" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Stufenhöhe der Stützstruktur" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Schnittstellenpriorität der Stützstruktur" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Die Höhe der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen. Auf Null einstellen, um das Stufenverhalten zu deaktivieren." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Auflösung Stützstrukturschnittstelle" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Max. Stufenhöhe der Stützstruktur" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Stützstruktur-Schnittstellengeschwindigkeit" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Die maximale Breite der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dicke der Stützstrukturschnittstelle" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Stützstufe minimaler Neigungswinkel" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Die Mindestneigung des Bereichs zur Erstellung einer Stützstufe. Bei niedrigeren Werten lassen sich die Stützstrukturen an flachen Neigungen leichter entfernen. Zu niedrige Werte können allerdings zu widersprüchlichen Ergebnissen an anderen Teilen des Modells führen." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Ruckfunktion Stützstruktur" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Abstand für Zusammenführung der Stützstrukturen" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Der Maximalabstand zwischen Stützstrukturen in der X- und Y-Richtung. Wenn der Abstand einzelner Strukturen zueinander diesen Wert unterschreitet, werden diese Strukturen miteinander kombiniert und bilden eine Struktur." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Erweiterung der Stützstruktur" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können die Stützbereiche glätten und dadurch eine stabilere Stützstruktur schaffen." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Stützstruktur Füllschichtdicke" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Linienabstand der Stützstruktur" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Die Dicke pro Schicht des Füllmaterials der Stützstruktur. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Breite der Stützstrukturlinien" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Stufenweise Füllungsschritte Stützstruktur" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Stütznetz" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Anzahl der Male zur Reduzierung der Stützstruktur-Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte der Stützstruktur." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Winkel für Überhänge Stützstruktur" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Muster der Stützstruktur" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Platzierung Stützstruktur" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Mindestbereich Stützstruktur" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Beschleunigung Dachstruktur" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Mindestflächenbreite für Stützstruktur-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichte der Dachstruktur" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Stützstruktur-Schnittstelle aktivieren" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder für Dachstruktur" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Es wird eine dichte Schnittstelle zwischen dem Modell und der Stützstruktur generiert. Das erstellt eine Außenhaut oben auf der Stützstruktur, auf der das Modell gedruckt wird, und unten auf der Stützstruktur, wo diese auf dem Modell ruht." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Stützdachfluss" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Stützdach aktivieren" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturdach" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Es wird eine dichte Materialschicht zwischen der Stützdachstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Ruckfunktion für Dachstruktur" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Stützboden aktivieren" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Richtungen der Dachlinien unterstützen" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Es wird eine dichte Materialschicht zwischen dem Boden der Stützstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Linienabstand der Dachstruktur" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dicke der Stützstrukturschnittstelle" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Breite der Stützdachlinie" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Die Dicke der Schnittstelle der Stützstruktur, wo sie das Modell unten und oben berührt." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Muster des Stützdachs" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Stützdachgeschwindigkeit" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Dicke des Stützdachs" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Die Dicke des Stützdachs. Dies steuert die Menge an dichten Schichten oben an der Stützstruktur, auf der das Modell aufsitzt." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Anzahl der Wandlinien des Stützdachs" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dicke der Bodenstruktur" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Stützstrukturgeschwindigkeit" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Stufenhöhe der Stützstruktur" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Auflösung Stützstrukturschnittstelle" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Max. Stufenhöhe der Stützstruktur" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Stützstufe minimaler Neigungswinkel" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Dichte Stützstrukturschnittstelle" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Stützstruktur" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstrukturdächer und -böden wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Oberer Abstand der Stützstruktur" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichte der Dachstruktur" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstrukturdächer wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y-Abstand der Stützstruktur" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Linienabstand der Dachstruktur" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-Abstand der Stützstruktur" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Der Abstand zwischen den gedruckten Stützdachlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet, kann aber auch separat eingestellt werden." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Stützlinien priorisiert" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichte der Bodenstruktur" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Stützstruktur priorisiert" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Die Dichte der Stützstrukturböden wird eingestellt. Ein höherer Wert führt zu einer besseren Haftung der Stützstruktur oben am Modell." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Linienabstand der Bodenstruktur" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oberfläche" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Der Abstand zwischen den gedruckten Stützstrukturbodenlinien. Diese Einstellung wird anhand der Dichte des Stützstrukturboden berechnet, kann aber auch separat eingestellt werden." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oberflächenenergie" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Muster Stützstrukturschnittstelle" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oberflächenmodus" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Das Muster, mit dem die Schnittstelle der Stützstruktur mit dem Modell gedruckt wird." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Oberflächenhaftungstendenz." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oberflächenenergie." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Vertauschen Sie die Druckreihenfolge der innersten und der zweitinnersten Brim-Linie, um die Entfernung des Brims zu erleichtern." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Schaltet mit jeder Schicht das Volumen zu den entsprechenden Netzüberschneidungen, sodass die überlappenden Netze miteinander verwebt werden. Durch Abschalten dieser Funktion erhält eines der Netze das gesamte Volumen der Überlappung, während es von den anderen Netzen entfernt wird." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +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." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Die X-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Muster des Stützdachs" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Die X-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Das Muster, mit dem die Dächer der Stützstruktur gedruckt werden." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Die Y-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Die Y-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Die Beschleunigung während des Druckens der ersten Schicht." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Die Beschleunigung für die erste Schicht." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Die Beschleunigung, mit der das Glätten erfolgt." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Muster der Bodenstruktur" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Die Beschleunigung, mit der das Drucken erfolgt." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Das Muster, mit dem die Unterseiten der Stützstruktur gedruckt werden." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Haftung des Stützdachs verbessert werden." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Gitter" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Die Beschleunigung, mit der die Füllung der Stützstruktur gedruckt wird." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Die Beschleunigung, mit der die Außenwände gedruckt werden." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Mindestbereich Stützstruktur-Schnittstelle" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." -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." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Mindestbereich Stützstrukturdach" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Die Beschleunigung, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." -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 "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Die Beschleunigung, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Beschleunigung der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Beschleunigung zu drucken." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Mindestbereich Stützstrukturboden" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." -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 "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Umfang des angewandten Versatzes für die Stützstruktur-Schnittstellen-Polygone." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturdach" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Umfang des angewandten Versatzes für die Dächer der Stützstruktur." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Die Beschleunigung, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturboden" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Die Beschleunigung, mit der die oberen/unteren Schichten gedruckt werden." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Umfang des angewandten Versatzes für die Böden der Stützstruktur." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Schnittstellenpriorität der Stützstruktur" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Die Materialmenge relativ zu einer normalen Außenhautlinie, um während des Glättens zu extrudieren. Indem die Düse gefüllt bleibt, können einige Spalten in der oberen Schicht gefüllt werden, allerdings führt zu viel davon zu einer übermäßigen Extrudierung und Markierungen seitlich der Oberfläche." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Hierdurch wird bestimmt, wie Stützstruktur-Schnittstelle und Stützstruktur interagieren, wenn sie sich überschneiden. Zurzeit nur für Stützdächer implementiert." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden als Prozentwert der Füllungslinienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Stützstruktur priorisiert" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Schnittstelle priorisiert" +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." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Stützlinien priorisiert" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Der Winkel zwischen der horizontalen Planfläche und dem konischen Teil direkt über der Düsenspitze." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Schnittstellenlinien priorisiert" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Der Winkel eines Pfeilerdachs. Ein höherer Wert hat spitze Pfeilerdächer zur Folge, ein niedrigerer Wert führt zu flacheren Pfeilerdächern." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Beide überlappen" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Dies bezeichnet den Winkel des Überhangs der für die Form erstellten Außenwände. 0 Grad ergibt eine vertikale Außenhaut der Form, während 90 Grad dazu führt, dass die Außenseite des Modells der Modellkontur folgt." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Richtungen der Verbindungslinien unterstützen" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Dies beschreibt den Winkel der Astdurchmesser, da sie stufenweise zum Boden hin dicker werden. Ein Winkel von 0 lässt die Äste über die gesamte Länge hinweg eine gleiche Dicke haben. Ein geringer Winkel kann die Stabilität der Baumstützstruktur erhöhen." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Der Neigungswinkel der konischen Stützstruktur. Bei 0 Grad ist er vertikal und bei 90 Grad horizontal. Kleinere Winkel machen die Stützstruktur stabiler, aber benötigen mehr Material. Negative Winkel machen die Basis der Stützstruktur breiter als die Spitze." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Richtungen der Dachlinien unterstützen" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Die durchschnittliche Dichte der Punkte, die auf jedes Polygon einer Schicht aufgebracht werden. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine geringe Dichte in einer Reduzierung der Auflösung resultiert." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Richtungen der Bodenlinien unterstützen" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Die für den Druck verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur eines Materials sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Lüfterdrehzahl überschreiben" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Die für die erhitzte Druckplatte verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur einer Druckplatte sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Bei Aktivierung wird die Lüfterdrehzahl für die Druckkühlung für die Außenhautbereiche direkt über der Stützstruktur geändert." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Die Dichte der Stützstrukturböden wird eingestellt. Ein höherer Wert führt zu einer besseren Haftung der Stützstruktur oben am Modell." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Prozentwert der Lüfterdrehzahl für die Verwendung beim Drucken der Außenhautbereiche direkt oberhalb der Stützstruktur. Die Verwendung einer hohen Lüfterdrehzahl ermöglicht ein leichteres Entfernen der Stützstruktur." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstrukturdächer wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Verwendung von Pfeilern" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der zweiten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Es werden spezielle Pfeiler verwendet, um kleine Überhänge zu stützen. Diese Pfeiler haben einen größeren Durchmesser als der von ihnen gestützte Bereich. In der Nähe des Überhangs verkleinert sich der Durchmesser der Pfeiler, was zur Bildung eines Dachs führt." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der dritten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pfeilerdurchmesser" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "Der Durchmesser eines speziellen Pfeilers." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximaler Durchmesser für Stützpfeiler" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Dies beschreibt den Durchmesser der dünnsten Äste der Baumstützstruktur. Dickere Äste sind stabiler. Äste zur Basis hin werden dicker als diese sein." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Der Mindestdurchmesser in den X/Y-Richtungen eines kleinen Bereichs, der durch einen speziellen Stützpfeiler gestützt wird." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Dies bezeichnet den Durchmesser an der Spitze von Ästen in der Baumstützstruktur." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Winkel des Pfeilerdachs" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Der Durchmesser des Rades für den Transport des Materials in den Feeder." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Durchmesser der breitesten Äste der Baumstützstruktur. Ein dickerer Stamm ist stabiler, ein dünnerer Stamm nimmt weniger Platz auf dem Druckbett ein." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Der Winkel eines Pfeilerdachs. Ein höherer Wert hat spitze Pfeilerdächer zur Folge, ein niedrigerer Wert führt zu flacheren Pfeilerdächern." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Der Höhenunterscheid der nächsten Schichthöhe im Vergleich zur vorherigen." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Stütznetz ablegen" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Der Abstand zwischen den Glättungslinien." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Sorgt für Unterstützung überall unterhalb des Stütznetzes, sodass kein Überhang im Stütznetz vorhanden ist." +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Teilen, wenn diese bei Bewegungen umgangen werden." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Szene verfügt über Stütznetze" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Einzugstropfen aktivieren" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Druckplattenhaftungstyp" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Der Abstand von der Begrenzung zwischen Modellen, der eine ineinandergreifende Struktur erzeugt, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Verschiedene Optionen, die die Materialbereitstellung für die Extrusion und die Haftung am Druckbett verbessern. Durch die Brim-Funktion wird ein flacher, einschichtiger Bereich um die Basis des Modells herum hinzugefügt, um Warping zu verhindern. Durch die Raft-Funktion wird ein dickes Gitter mit Dach unter dem Modell hinzugefügt. Das Skirt-Element ist eine Linie, die um das Modell herum gedruckt wird, aber nicht mit dem Modell verbunden ist." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-Element verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Die Distanz von der Düsenspitze, in der Wärme von der Düse zum Filament geleitet wird." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Die Distanz, um die die unteren Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und an den Wänden auf der darunter liegenden Schicht haften. Niedrigere Werte reduzieren den Materialverbrauch." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Keine" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Die Distanz, um die die Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den angrenzenden Schichten besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Druckplattenhaftung für Extruder" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Die Distanz, um die die oberen Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den Schichten darüber besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Das für das Drucken von Skirt/Brim/Raft verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Die Strecke, die der Kopf durch Vorwärts- und Rückwärtsbewegung über die Bürste hinweg fährt." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim-Extruder" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Die Endpunkte von Füllungslinien werden gekürzt, um Material zu sparen. Bei dieser Einstellung handelt es sich um den Winkel des Überhangs der Endpunkte von diesen Linien." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck von Skirt oder Brim verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Die zusätzliche Geschwindigkeit mit der die Düse während der Extrusion abkühlt. Der gleiche Wert wird verwendet, um Aufheizgeschwindigkeit anzugeben, die verloren geht wenn während der Extrusion aufgeheizt wird." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft-Basis-Extruder" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Das für das Drucken der ersten Schicht der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "Der Extruderzug, der für den Druck der ersten Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extruder für die Raft-Mitte" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützstruktur der Böden verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Füllung der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "Der Extruderzug, der für den Druck der mittleren Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extruder für die Raft-Oberseite" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Dächer und Böden der Stützstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützdachstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck von Skirt oder Brim verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Das für das Drucken von Skirt/Brim/Raft verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." msgctxt "raft_surface_extruder_nr description" msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." msgstr "Der Extruderzug, der für den Druck der obersten Schicht(en) des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Anzahl der Skirt-Linien" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Die für das Drucken der Füllung verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Mehrere Skirt-Linien ermöglichen eine bessere Materialbereitstellung für die Extrusion für kleine Modelle. Wird dieser Wert auf 0 eingestellt, wird kein Skirt erstellt." +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Die für das Drucken der Innenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Skirt-Höhe" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Die für das Drucken der Außenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Ein Druck der innersten Skirt-Linie mit mehreren Schichten ermöglicht ein einfaches Entfernen des Skirts." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Die für das Drucken der oberen und unteren Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt-Abstand" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Die für das Drucken der obersten Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\nEs handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Die für das Drucken der Wände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mindestlänge für Skirt/Brim" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Die Mindestlänge für das Skirt- oder Brim-Element. Wenn diese Mindestlänge nicht durch die Anzahl der Skirt- oder Brim-Linien erreicht wird, werden weitere Skirt- oder Brim-Linien hinzugefügt, bis diese Mindestlänge erreicht wird. Hinweis: Wenn die Linienzahl auf 0 eingestellt wird, wird dies ignoriert." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breite des Brim-Elements" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Die Drehzahl des Lüfters für das Raft." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-Element verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Anzahl der Brim-Linien" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Füllung des Drucks bestimmen." -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." +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Stützstruktur bestimmen." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Abstand zum Brim-Element" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Die ersten Schichten werden langsamer als der Rest des Modells gedruckt, damit sie besser am Druckbett haften und um die Wahrscheinlichkeit eines erfolgreichen Drucks zu erhöhen. Die Geschwindigkeit wird während des Druckens dieser Schichten schrittweise erhöht." -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 "Der horizontale Abstand zwischen der ersten Brim-Linie und der Kontur der ersten Schicht des Drucks. Eine kleine Spalte kann das Entfernen des Brims vereinfachen, wobei trotzdem alle thermischen Vorteile genutzt werden können." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Die Lücke zwischen der letzten Raft-Schicht und der ersten Schicht des Modells. Nur die erste Schicht wird entsprechend dieses Wertes angehoben, um die Bindung zwischen der Raft-Schicht und dem Modell zu reduzieren. Dies macht es leichter, das Raft abzuziehen." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim ersetzt die Stützstruktur" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die Form gedruckt wird." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim nur an Außenseite" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Die Höhe, auf der die Lüfter mit Normaldrehzahl laufen. In den Schichten darunter wird die Lüfterdrehzahl schrittweise von der anfänglichen Lüfterdrehzahl bis zur Normaldrehzahl angehoben." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Bereich des Druckkopfes." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Brim nur an der Außenseite des Modells drucken. Damit reduziert sich die Anzahl der Brims, die Sie später entfernen müssen, während die Druckbetthaftung nicht signifikant eingeschränkt wird." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Die Dicke jeder Schicht in mm. Bei höheren Werten werden schnellere Drucke mit niedrigerer Auflösung hergestellt, bei niedrigeren Werten langsamere Drucke mit höherer Auflösung." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Abstand zur Vermeidung des inneren Brims" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Die Höhe der Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Ist ein Teil vollständig von einem anderen Teil eingeschlossen, wird bei diesem möglicherweise ein äußeres Brim-Element erzeugt, das die Innenseite des anderen Teils berührt. Hiermit wird der Teil des Brim-Elements entfernt, der sich innerhalb dieses Abstands zu inneren Löchern befindet." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Intelligente Brim" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Vertauschen Sie die Druckreihenfolge der innersten und der zweitinnersten Brim-Linie, um die Entfernung des Brims zu erleichtern." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Zusätzlicher Abstand für Raft" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft-Glättung" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Die Höhe der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen. Auf Null einstellen, um das Stufenverhalten zu deaktivieren." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." +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 "Der horizontale Abstand zwischen der ersten Brim-Linie und der Kontur der ersten Schicht des Drucks. Eine kleine Spalte kann das Entfernen des Brims vereinfachen, wobei trotzdem alle thermischen Vorteile genutzt werden können." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luftspalt für Raft" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks.\n" +"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Die Lücke zwischen der letzten Raft-Schicht und der ersten Schicht des Modells. Nur die erste Schicht wird entsprechend dieses Wertes angehoben, um die Bindung zwischen der Raft-Schicht und dem Modell zu reduzieren. Dies macht es leichter, das Raft abzuziehen." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Überlappung der ersten Schicht" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse verschoben." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Die erste und die zweite Schicht des Modells sollen sich in der Z-Richtung überlappen, um das verlorene Filament in dem Luftspalt zu kompensieren. Alle Modelle über der ersten Modellschicht verschieben sich um diesen Wert nach unten." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Obere Raft-Schichten" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dicke der oberen Raft-Schichten" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Die Schichtdicke der oberen Raft-Schichten." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Linienbreite der Raft-Oberfläche" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden unteren Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der unteren Außenhaut an abgeschrägten Flächen des Modells unterstützen." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Linienabstand der Raft-Oberfläche" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der Außenhaut oben/unten an abgeschrägten Flächen des Modells unterstützen." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der oberen Außenhaut an abgeschrägten Flächen des Modells unterstützen." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Mittlere Ebenen des Rafts" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Die Schicht, bei der die Lüfter mit Normaldrehzahl laufen. Wenn Normaldrehzahl des Lüfters bei Höhe eingestellt ist, wird dieser Wert berechnet und auf eine ganze Zahl auf- oder abgerundet." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Die Anzahl der Schichten zwischen dem Boden und der Oberfläche des Rafts. Aus diesen besteht der größte Teil des Rafts. Eine Erhöhung dieses Wertes führt zu einem dickeren und stabileren Raft." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Die Schichtzeit, die den Grenzwert zwischen Normaldrehzahl und Maximaldrehzahl des Lüfters darstellt. Für Schichten, die langsamer als diese Zeit gedruckt werden, läuft der Lüfter auf Normaldrehzahl. Für schnellere Schichten steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Dicke der Raft-Mittelbereichs" +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." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Die Schichtdicke des Raft-Mittelbereichs." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Linienbreite des Raft-Mittelbereichs" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Das Material der im Drucker eingebauten Druckplatte." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Die Breite der Linien im Raft-Mittelbereich. Wenn die zweite Schicht mehr extrudiert, haften die Linien besser an der Druckplatte." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Die max. zulässige Höhendifferenz von der Basisschichthöhe." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Linienabstand im Raft-Mittelbereich" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Der maximale Winkel, den ein Teil im Sickerschutz haben kann. 0 Grad ist vertikal und 90 Grad ist horizontal. Ein kleinerer Winkel führt zu weniger ausgefallenen Sickerschützen, jedoch mehr Material." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Der maximale Winkel von Überhängen, nachdem sie druckbar gemacht wurden. Bei einem Wert von 0° werden alle Überhänge durch ein Teil des Modells ersetzt, das mit der Druckplatte verbunden ist, 90° führt zu keiner Änderung des Modells." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dicke der Raft-Basis" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Dies bezeichnet den maximalen Winkel der Äste, die um das Modell herum entstehen. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Die maximale Fläche eines Lochs im Sockel des Modells, das mittels „Überhang drucken“ entfernt werden soll. Löcher mit kleinerer Fläche werden beibehalten. Beim Wert 0 mm² werden alle Löcher in der Modellbasis gefüllt." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Linienbreite der Raft-Basis" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Die maximal zulässige Abweichung bei Reduzierung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner. Die maximale Abweichung ist eine Grenze für die maximale Auflösung. Wenn die beiden Werte sich widersprechen, wird stets die maximale Abweichung eingehalten." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Der Maximalabstand zwischen Stützstrukturen in der X- und Y-Richtung. Wenn der Abstand einzelner Strukturen zueinander diesen Wert unterschreitet, werden diese Strukturen miteinander kombiniert und bilden eine Struktur." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Linienabstand der Raft-Basis" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Die maximale Strecke (in mm), die das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Die maximale zulässige Abweichung für Extrusionsflächen beim Entfernen von Zwischenpunkten aus einer Geraden. Ein Zwischenpunkt kann als Änderungspunkt für die Linienstärke in einer langen Geraden dienen. Wenn dieser entfernt wird, führt es dazu, dass die Linie eine einheitliche Stärke hat und folglich ein wenig Extrusionsfläche verloren geht (oder hinzugefügt wird). Wenn Sie diesen Wert erhöhen, können Sie eine leichte Unter- (oder Über-) Extrusion zwischen geraden, parallelen Wänden feststellen, da mehr dazwischenliegende Änderungspunkte für die Linienstärke entfernt werden können. Ihr Druck wird weniger genau sein, aber der g-Code wird kleiner sein." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft-Druckgeschwindigkeit" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Druckens für die erste Schicht." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Druckgeschwindigkeit Raft Oben" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Druckgeschwindigkeit Raft Mitte" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung gedruckt wird." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Böden der Stützstruktur gedruckt werden." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Druckgeschwindigkeit für Raft-Basis" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung der Stützstruktur gedruckt wird." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Außenwände gedruckt werden." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Druckbeschleunigung Raft" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der der Einzugsturm gedruckt wird." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Druckbeschleunigung Raft Oben" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer der Stützstruktur gedruckt werden." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der Skirt und Brim gedruckt werden." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Druckbeschleunigung Raft Mitte" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Stützstruktur gedruckt wird." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Druckbeschleunigung Raft Unten" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Wände gedruckt werden." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Ruckfunktion Raft-Druck" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen Schichten der Außenhaut gedruckt werden." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen/unteren Schichten gedruckt werden." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Ruckfunktion Drucken Raft Oben" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Die Maximaldrehzahl für den Motor der X-Richtung." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Ruckfunktion Drucken Raft Mitte" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Die Maximaldrehzahl für den Motor der Y-Richtung." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Ruckfunktion Drucken Raft-Basis" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Die Maximalgeschwindigkeit des Filaments." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Die maximale Breite der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Lüfterdrehzahl für Raft" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Die Drehzahl des Lüfters für das Raft." +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Lüfterdrehzahl Raft Oben" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Die Mindesttemperatur während des Aufheizens auf die Drucktemperatur, bei welcher der Druck bereits starten kann." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Die Mindestzeit, die ein Extruder inaktiv sein muss, bevor die Düse abkühlt. Nur wenn der Extruder über diese Zeit hinaus nicht verwendet wurde, kann er auf die Standby-Temperatur abkühlen." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Lüfterdrehzahl Raft Mitte" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden Objekte komplett gefüllt, bei 90° wird keine Füllung ausgeführt." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht." +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden alle Überhänge gestützt, bei 90° wird kein Überhang gestützt." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Lüfterdrehzahl für Raft-Basis" +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." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Die Mindestlänge für das Skirt- oder Brim-Element. Wenn diese Mindestlänge nicht durch die Anzahl der Skirt- oder Brim-Linien erreicht wird, werden weitere Skirt- oder Brim-Linien hinzugefügt, bis diese Mindestlänge erreicht wird. Hinweis: Wenn die Linienzahl auf 0 eingestellt wird, wird dies ignoriert." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Duale Extrusion" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Die minimale Linienbreite für Polylinienwände mit Lücken in der mittleren Linie. Diese Einstellung legt fest, bei welcher Stärke im Modell ein Übergang vom Druck zweier Wandlinien zum Druck zweier Außenwände und einer einzigen zentralen Wand in der Mitte erfolgt. Eine höhere minimale ungeradzahlige Wandlinienstärke führt zu einer höheren maximalen ungeradzahligen Wandlinienstärke. Die maximale ungerade Wandlinienbreite wird berechnet als 2 x Minimale Wandlinienbreite." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Die Mindestlinienstärke für normale polygonale Wände. Diese Einstellung legt fest, bei welcher Stärke des Modells vom Druck einer einzelnen dünnen Wandlinie auf den Druck zweier Wandlinien umgeschaltet wird. Eine höhere minimale geradzahlige Wandlinienstärke führt zu einer höheren maximalen geradzahligen Wandlinienstärke. Die maximale geradzahlige Wandlinienstärke wird berechnet als Außenwandlinienstärke + 0,5 x minimale geradzahlige Wandlinienstärke." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Einzugsturm aktivieren" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Die Mindestdruckgeschwindigkeit, trotz Verlangsamung aufgrund der Mindestzeit für Schicht. Wenn der Drucker zu langsam arbeitet, sinkt der Druck in der Düse zu stark ab und dies führt zu einer schlechten Druckqualität." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Die Mindestgröße eines Linienabschnitts nach dem Slicen. Wenn Sie diesen Wert erhöhen, führt dies zu einer niedrigeren Auslösung des Mesh. Damit kann der Drucker die erforderliche Geschwindigkeit für die Verarbeitung des G-Codes beibehalten; außerdem wird die Slice-Geschwindigkeit erhöht, indem Details des Mesh entfernt werden, die ohnehin nicht verarbeitet werden können." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Größe Einzugsturm" +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Die maximale Größe eines Bewegungsliniensegments nach dem Slicen. Wenn Sie diesen Wert erhöhen, weisen die Fahrtbewegungen weniger glatte Kanten aus. Das ermöglicht dem Drucker, die für die Verarbeitung eines G-Codes erforderliche Geschwindigkeit aufrechtzuerhalten, allerdings kann das Modell damit auch weniger akkurat werden." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Die Breite des Einzugsturms." +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Die Mindestneigung des Bereichs zur Erstellung einer Stützstufe. Bei niedrigeren Werten lassen sich die Stützstrukturen an flachen Neigungen leichter entfernen. Zu niedrige Werte können allerdings zu widersprüchlichen Ergebnissen an anderen Teilen des Modells führen." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Mindestvolumen Einzugsturm" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Die Mindestzeit, die für eine Schicht aufgewendet wird. Hierdurch wird der Drucker verlangsamt, um mindestens die hier eingestellte Zeit für eine Schicht aufzuwenden. Dadurch kann das gedruckte Material angemessen abkühlen, bevor die folgende Schicht gedruckt wird. Die Schichten können dennoch weniger als die Mindestzeit für eine Schicht erfordern, wenn die Funktion Druckkopf anheben deaktiviert ist und die Mindestgeschwindigkeit andernfalls verletzt würde." msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-Position des Einzugsturm" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Die X-Koordinate der Position des Einzugsturms." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-Position des Einzugsturms" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Dies bezeichnet die maximale Vergrößerung des Durchmessers eines Astes, der mit dem Modell verbunden werden muss, durch die Zusammenführung mit Ästen, die die Druckplatte erreichen könnten. Die Erhöhung dieses Wertes verkürzt die Druckzeit, vergrößert jedoch die Stützstruktur, die auf dem Modell ruht." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Die Y-Koordinate der Position des Einzugsturms." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Die Bezeichnung Ihres 3D-Druckermodells." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Wipe-Düse am Einzugsturm inaktiv" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Teile. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim Einzugsturm" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Stützstrukturen. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Einzugstürme benötigen möglicherweise zusätzliche Haftung in Form eines Brims, auch wenn das Modell selbst dies nicht benötigt. Kann derzeit nicht mit dem „Raft“-Haftungstyp verwendet werden." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der unteren Schichten. Wenn diese anhand der unteren Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sickerschutz aktivieren" +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Winkel für Sickerschutz" +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." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Der maximale Winkel, den ein Teil im Sickerschutz haben kann. 0 Grad ist vertikal und 90 Grad ist horizontal. Ein kleinerer Winkel führt zu weniger ausgefallenen Sickerschützen, jedoch mehr Material." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Die Anzahl der Schichten zwischen dem Boden und der Oberfläche des Rafts. Aus diesen besteht der größte Teil des Rafts. Eine Erhöhung dieses Wertes führt zu einem dickeren und stabileren Raft." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Abstand für Sickerschutz" +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." -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." +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Düsenwechsel Einzugsabstand" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." -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." +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der oberen Schichten. Wenn diese anhand der oberen Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Düsenwechsel Rückzugsgeschwindigkeit" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Die Anzahl der obersten Außenhautschichten. Üblicherweise reicht eine einzige oberste Schicht aus, um höherwertige Oberflächen zu generieren." -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." +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Düsenwechsel Rückzuggeschwindigkeit" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." -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üsenwechseleinzugs zurückgezogen wird." +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." -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üsenwechseleinzugs zurückgeschoben wird." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Die Anzahl der Wände, gezählt von der Mitte aus, über welche die Variation verteilt werden soll. Niedrigere Werte führen dazu, dass sich die Außenwände in ihrer Stärke nicht verändern." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der Wände. Wenn diese anhand der Wanddicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Der Außendurchmesser der Düsenspitze." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Netzreparaturen" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Passe die Gitter besser an den 3D-Druck an." +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Das Muster der Stützstruktur des Drucks. Die verschiedenen verfügbaren Optionen führen zu einer stabilen oder zu einer leicht entfernbaren Stützstruktur." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Überlappende Volumen vereinen" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Das Muster der obersten Schichten." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden." +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Das Muster der oberen/unteren Schichten." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Löcher entfernen" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Das Muster am Boden des Drucks der ersten Schicht." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Es werden alle Löcher in den einzelnen Schichten entfernt und lediglich die äußere Form wird erhalten. Dadurch wird jegliche unsichtbare interne Geometrie ignoriert. Jedoch werden auch solche Löcher in den Schichten ignoriert, die man von oben oder unten sehen kann." +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Das Muster, das für die Glättung der Oberflächen verwendet wird." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Extensives Stitching" +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Das Muster, mit dem die Unterseiten der Stützstruktur gedruckt werden." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden Polygonen abzudecken. Diese Option kann eine lange Verarbeitungszeit in Anspruch nehmen." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Das Muster, mit dem die Schnittstelle der Stützstruktur mit dem Modell gedruckt wird." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Unterbrochene Flächen beibehalten" +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Das Muster, mit dem die Dächer der Stützstruktur gedruckt werden." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalerweise versucht Cura kleine Löcher im Netz abzudecken und Teile von Schichten, die große Löcher aufweisen, zu entfernen. Die Aktivierung dieser Option erhält jene Teile, die nicht abgedeckt werden können. Diese Option sollte nur als letzter Ausweg verwendet werden, wenn es andernfalls nicht möglich ist, einen korrekten G-Code zu berechnen." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Die Position in der Nähe der Stelle, an der die einzelnen Teile einer Ebene gedruckt werden sollen." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Überlappung zusammengeführte Netze" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Dies bezeichnet den bevorzugten Winkel der Äste, wenn eine Vermeidung des Modells nicht notwendig ist. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Astwinkel, um sie schneller zusammenzuführen." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Erstellen Sie Netze, die einander berühren und sich leicht überlappen. Damit haften sie besser aneinander." +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Hierdurch wird die bevorzugte Platzierung der Stützstrukturen festgelegt. Wenn Strukturen nicht an der gewünschten Stelle platziert werden können, werden sie anderswo positioniert, möglicherweise sogar auf dem Modell." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Netzüberschneidung entfernen" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schicht." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Die Form der Druckplatte ohne Berücksichtigung nicht druckbarer Bereiche." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Wechselndes Entfernen des Netzes" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Die Form des Druckkopfes. Dies sind die Koordinaten relativ zur Position des Druckkopfs; meist ist dies die Position des ersten Extruders. Die Abmessungen links und vor dem Druckkopf müssen negative Koordinaten sein." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Schaltet mit jeder Schicht das Volumen zu den entsprechenden Netzüberschneidungen, sodass die überlappenden Netze miteinander verwebt werden. Durch Abschalten dieser Funktion erhält eines der Netze das gesamte Volumen der Überlappung, während es von den anderen Netzen entfernt wird." +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Leere erste Schichten entfernen" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Das kleinste Volumen, das ein Extrusionsweg haben sollte, damit Coasting möglich ist. Bei kürzeren Extrusionswegen wurde ein geringerer Druck in der Bowden-Röhre aufgebaut und daher wird das Coasting-Volumen linear skaliert. Dieser Wert sollte immer größer sein als das Coasting-Volumen." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby abkühlt." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale Auflösung" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby aufheizt." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Die Mindestgröße eines Linienabschnitts nach dem Slicen. Wenn Sie diesen Wert erhöhen, führt dies zu einer niedrigeren Auslösung des Mesh. Damit kann der Drucker die erforderliche Geschwindigkeit für die Verarbeitung des G-Codes beibehalten; außerdem wird die Slice-Geschwindigkeit erhöht, indem Details des Mesh entfernt werden, die ohnehin nicht verarbeitet werden können." +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale Bewegungsauflösung" +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Die Geschwindigkeit, mit der die Brücken-Außenhautbereiche gedruckt werden." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Die maximale Größe eines Bewegungsliniensegments nach dem Slicen. Wenn Sie diesen Wert erhöhen, weisen die Fahrtbewegungen weniger glatte Kanten aus. Das ermöglicht dem Drucker, die für die Verarbeitung eines G-Codes erforderliche Geschwindigkeit aufrechtzuerhalten, allerdings kann das Modell damit auch weniger akkurat werden." +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale Abweichung" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Die Geschwindigkeit, mit der gedruckt wird." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Die maximal zulässige Abweichung bei Reduzierung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner. Die maximale Abweichung ist eine Grenze für die maximale Auflösung. Wenn die beiden Werte sich widersprechen, wird stets die maximale Abweichung eingehalten." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale Abweichung der Extrusionsfläche" +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Die Geschwindigkeit, mit der die Brückenwände gedruckt werden." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Die maximale zulässige Abweichung für Extrusionsflächen beim Entfernen von Zwischenpunkten aus einer Geraden. Ein Zwischenpunkt kann als Änderungspunkt für die Linienstärke in einer langen Geraden dienen. Wenn dieser entfernt wird, führt es dazu, dass die Linie eine einheitliche Stärke hat und folglich ein wenig Extrusionsfläche verloren geht (oder hinzugefügt wird). Wenn Sie diesen Wert erhöhen, können Sie eine leichte Unter- (oder Über-) Extrusion zwischen geraden, parallelen Wänden feststellen, da mehr dazwischenliegende Änderungspunkte für die Linienstärke entfernt werden können. Ihr Druck wird weniger genau sein, aber der g-Code wird kleiner sein." +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Die Drehzahl, mit der die Lüfter zu Druckbeginn drehen. In den nachfolgenden Schichten wird die Lüfterdrehzahl schrittweise bis zu der Schicht gesteigert, die der Normaldrehzahl in der Höhe entspricht." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Fließbewegung aktivieren" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Die Drehzahl, mit der die Lüfter laufen, bevor der Grenzwert erreicht wird. Wenn eine Schicht schneller als der Grenzwert gedruckt wird, steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern." +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Die Drehzahl, mit der die Lüfter bei der Mindestzeit für Schicht laufen. Die Lüfterdrehzahl wird schrittweise von der Normaldrehzahl bis zur Maximaldrehzahl des Lüfters angehoben, wenn der Grenzwert erreicht wird." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Fließbewegung – Verschiebeabstand" +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." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung vorbereitet wird." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Fließbewegung – kleiner Abstand" +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üsenwechseleinzugs zurückgeschoben wird." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" +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." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Fließbewegungswinkel" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und während einer Einzugsbewegung für Abwischen zurückgeschoben wird." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Weicht ein Werkzeugpfad-Segment mehr als diesen Winkel von der allgemeinen Bewegung ab, wird es geglättet." +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üsenwechseleinzugs zurückgezogen wird." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Sonderfunktionen" +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." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung für Abwischen eingezogen wird." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Druckreihenfolge" +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." -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 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 "Es wird festgelegt, ob eine Schicht für alle Modelle gleichzeitig gedruckt werden soll oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck eines weiteren begonnen wird. Der „Nacheinandermodus“ ist möglich, wenn a) nur ein Extruder aktiviert ist und b) alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger sind als der Abstand zwischen der Düse und den X/Y-Achsen." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Die Geschwindigkeit, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Haftung des Stützdachs Ihres Modells verbessert werden." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Alle gleichzeitig" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Die Geschwindigkeit, mit der die Füllung der Stützstruktur gedruckt wird. Durch das Drucken der Füllung bei einer geringeren Geschwindigkeit, kann die Stabilität verbessert werden." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Nacheinander" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Mesh-Füllung" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Die Geschwindigkeit, mit der die Außenwände gedruckt werden. Durch das Drucken der Außenwand bei einer niedrigeren Geschwindigkeit wird eine bessere Endqualität der Außenhaut erreicht. Wenn allerdings zwischen der Geschwindigkeit für die Innenwand und jener für die Außenwand ein zu großer Unterschied besteht, wird die Qualität negativ beeinträchtigt." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Verwenden Sie dieses Mesh, um die Füllung anderer Meshes zu ändern, mit denen es überlappt. Dabei werden Füllungsbereiche anderer Meshes mit Regionen für dieses Mesh ersetzt. Es wird empfohlen, nur eine Wand und keine obere/untere Außenhaut für dieses Mesh zu drucken." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Die Geschwindigkeit, mit der der Einzugsturm gedruckt wird. Das Drucken des Einzugsturms bei einer geringeren Geschwindigkeit kann zu einem stabileren Ergebnis führen, wenn die Haftung zwischen den verschiedenen Filamenten nicht optimal ist." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang der Netzverarbeitung" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Legt fest, welchen Rang dieses Netz (Mesh) bei mehreren überlappenden Mesh-Füllungen hat. Bereiche, in denen mehrere Mesh-Füllungen überlappen, übernehmen die Einstellungen des Netzes mit dem höchsten Rang. Ist der Rang einer Mesh-Füllung höher, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Rang niedriger oder normal ist." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Mesh beschneiden" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Die Geschwindigkeit, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Form" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Die Geschwindigkeit, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Geschwindigkeit der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Geschwindigkeit zu drucken." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Damit werden Modelle als Form gedruckt, die gegossen werden kann, um ein Modell zu erhalten, das den Modellen des Druckbetts ähnelt." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Die Geschwindigkeit, mit der die Stützstruktur gedruckt wird. Durch das Drucken der Stützstruktur bei höheren Geschwindigkeiten kann die Gesamtdruckzeit deutlich verringert werden. Die Oberflächenqualität der Stützstruktur ist nicht wichtig, da diese nach dem Drucken entfernt wird." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Mindestbreite der Form" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dachhöhe der Form" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die Form gedruckt wird." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Die Geschwindigkeit, mit der bei Z-Sprüngen die vertikale Bewegung (Z-Achse) erfolgt. Diese liegt in der Regel unterhalb der Druckgeschwindigkeit, da die Bewegung von Druckbett oder Brücke schwieriger ist." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Formwinkel" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Dies bezeichnet den Winkel des Überhangs der für die Form erstellten Außenwände. 0 Grad ergibt eine vertikale Außenhaut der Form, während 90 Grad dazu führt, dass die Außenseite des Modells der Modellkontur folgt." +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Die Geschwindigkeit, mit der über die Oberfläche gegangen wird." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Stütznetz" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Dieses Netz wird verwendet, um festzulegen, welche Bereiche gestützt werden sollen. Dies kann verwendet werden, um eine Stützstruktur zu errichten." +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Die Geschwindigkeit, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Anti-Überhang-Netz" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Die Geschwindigkeit, mit der die oberen/unteren Schichten gedruckt werden." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Dieses Netz wird verwendet, um festzulegen, welcher Teil des Modells als Überhang erkannt werden soll. Dies kann verwendet werden, um eine unerwünschte Stützstruktur zu entfernen." +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oberflächenmodus" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, in Relation zur Geschwindigkeit des Extrusionswegs. Ein Wert leicht unter 100 % wird empfohlen, da während der Coasting-Bewegung der Druck in den Bowden-Röhren abfällt." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Behandelt das Modell nur als Oberfläche, Volumen oder Volumen mit losen Oberflächen. Der Normaldruck-Modus druckt nur umschlossene Volumen. „Oberfläche“ druckt eine einzelne Wand und verfolgt die Mesh-Oberfläche ohne Füllung und ohne obere/untere Außenhaut. „Beide“ druckt umschlossene Volumen wie üblich und alle verbleibenden Polygone als Oberflächen." +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung auf der Bauplatte zu verbessern. Hat keinen Einfluss auf die Haftstrukturen des Druckbetts selbst, wie Krempe und Raft." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Die Druckgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oberfläche" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Die Bewegungsgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um das Wegziehen zuvor gedruckter Teile von der Druckplatte zu vermeiden. Der Wert dieser Einstellung kann automatisch aus dem Verhältnis zwischen Bewegungsgeschwindigkeit und Druckgeschwindigkeit errechnet werden." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beides" +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." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiralisieren der äußeren Konturen" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Die Temperatur der Druckumgebung. Beträgt der Wert 0, wird die Druckraumtemperatur nicht angepasst." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. Dies führt zu einem konstanten Z-Anstieg des gesamten Drucks. Diese Funktion wandelt ein solides Modell in einen Druck mit Einzelwänden und einem soliden Boden um. Diese Funktion sollte nur aktiviert werden, wenn jede Schicht nur ein einzelnes Teil enthält." +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." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Glätten der spiralisierten Kontur" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der Druck beendet wird." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Glättet die spiralförmigen Konturen, um die Sichtbarkeit der Z-Naht zu reduzieren (die Z-Naht sollte am Druckobjekt kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass beim Glätten feine Oberflächendetails verwischt werden." +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relative Extrusion" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Die Temperatur, die für das Drucken verwendet wird." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Verwenden Sie die relative Extrusion anstelle der absoluten Extrusion. Die Verwendung relativer E-Schritte erleichtert die Nachbearbeitung des G-Code. Diese Option wird jedoch nicht von allen Druckern unterstützt und kann geringfügige Abweichungen bei der Menge des abgesetzten Materials im Vergleich zu absoluten E-Schritten zur Folge haben. Ungeachtet dieser Einstellung wird der Extrusionsmodus stets auf absolut gesetzt, bevor ein G-Code-Skript ausgegeben wird." +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Die Temperatur, auf die das Druckbett für die erste Schicht erhitzt wird. Beträgt dieser Wert 0, wird das Druckbett für die erste Schicht nicht beheizt." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimentell" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Die Temperatur, die für das beheizte Druckbett verwendet wird. Beträgt dieser Wert 0, wird das Bett nicht beheizt." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Die Temperatur, die zum Spülen des Materials verwendet wird, sollte ungefähr der höchstmöglichen Drucktemperatur entsprechen." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicing-Toleranz" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Die Dicke der unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der unteren Schichten." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Vertikale Toleranz der geschnittenen (Slicing) Schichten. Die Konturen einer Schicht werden normalerweise erzeugt, indem ein Querschnitt durch die Mitte der Höhe jeder Schicht (Mitte) vorgenommen wird. Alternativ kann jede Schicht die Bereiche aufweisen, die über die gesamte Dicke der Schicht (Exklusiv) in das Volumen fallen, oder eine Schicht weist die Bereiche auf, die innerhalb der Schicht (Inklusiv) irgendwo hineinfallen. Inklusiv ermöglicht die meisten Details, Exklusiv die beste Passform und Mitte entspricht der ursprünglichen Fläche am ehesten." +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Die Stärke der zusätzlichen Füllung, die die Außenhautkanten stützt." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Mitte" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Die Dicke der Schnittstelle der Stützstruktur, wo sie das Modell unten und oben berührt." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exklusiv" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inklusiv" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Die Dicke des Stützdachs. Dies steuert die Menge an dichten Schichten oben an der Stützstruktur, auf der das Modell aufsitzt." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegungsoptimierung Füllung" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Die Dicke der oberen Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen Schichten." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Bei Aktivierung wird die Reihenfolge, in der die Fülllinien gedruckt werden, optimiert, um die gefahrene Distanz zu reduzieren. Diese erzielte Reduzierung der Bewegung ist sehr stark von dem zu slicenden Modell, dem Füllmuster, der Dichte usw. abhängig. Beachten Sie, dass die Dauer für das Slicen bei einigen Modellen mit vielen kleinen Füllbereichen erheblich länger ausfallen kann." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Die Dicke der oberen/unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen/unteren Schichten." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Fließtemperaturgraf" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Die Dicke der Wände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände." -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Die Dicke pro Schicht des Füllmaterials. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mindestumfang Polygon" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Die Dicke pro Schicht des Füllmaterials der Stützstruktur. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polygone in geschnittenen Schichten, die einen Umfang unter diesem Wert haben, werden ausgefiltert. Niedrigere Werte führen zu einem Mesh mit höherer Auflösung zulasten der Slicing-Zeit. Dies gilt in erster Linie für SLA-Drucker mit höherer Auflösung und sehr kleine 3D-Modelle mit zahlreichen Details." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Der Typ des zu generierenden G-Codes." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Ineinandergreifende Struktur generieren" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Erzeugt eine Struktur aus ineinandergreifenden Balken an den Stellen, an denen sich Modelle berühren. Dies verbessert die Haftung zwischen Modellen, insbesondere bei Modellen, die aus verschiedenen Materialien gedruckt werden." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Breite der ineinandergreifenden Balken" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Ausrichtung der ineinandergreifenden Struktur" - -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Anzahl der Schichten ineinandergreifender Balken" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Die Breite des Einzugsturms." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Die Breite der Zitterbewegung. Es wird empfohlen, diese niedriger als der Breite der äußeren Wand einzustellen, da die inneren Wände unverändert bleiben." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Tiefe der ineinandergreifenden Struktur" +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." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Der Abstand von der Begrenzung zwischen Modellen, der eine ineinandergreifende Struktur erzeugt, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Die X-Koordinate der Position des Einzugsturms." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Die Y-Koordinate der Position des Einzugsturms." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Stützstruktur in Blöcke aufteilen" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Überspringen Sie einige Stützstruktur-Verbindungen, um das Brechen der Stützstruktur zu erleichtern. Diese Einstellung ist für die Zickzack-Stützstruktur-Füllung vorgesehen." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Blockgröße für Stützstruktur" +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." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Überspringen Sie eine Verbindung zwischen den Stützstrukturlinien nach jedem N-Millimeter, um das Brechen der Stützstruktur zu erleichtern." +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Es wird rund um das Modell eine Wand erstellt, die (heiße) Luft festhält und vor externen Luftströmen schützt. Dies ist besonders nützlich bei Materialien, die sich leicht verbiegen." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Anzahl der Stützstruktur-Blocklinien" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Astspitzendurchmesser" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Wegbrechen der Stützstruktur zu erleichtern." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in XY-Richtung (horizontal) skaliert." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Windschutz aktivieren" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in Z-Richtung (vertikal) skaliert." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Es wird rund um das Modell eine Wand erstellt, die (heiße) Luft festhält und vor externen Luftströmen schützt. Dies ist besonders nützlich bei Materialien, die sich leicht verbiegen." +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Um die Schrumpfung des Materials beim Abkühlen zu kompensieren, wird das Modell mit diesem Faktor skaliert." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "X/Y-Abstand des Windschutzes" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Obere Schichten" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Der Abstand des Windschutzes zum gedruckten Objekt in den X/Y-Richtungen." +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut oben" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Begrenzung des Windschutzes" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut oben" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird." +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Beschleunigung der inneren Oberfläche der Wand" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Voll" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Ruck der äußersten Oberflächenwand" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Begrenzt" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Geschwindigkeit der inneren Oberfläche der Wand" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Höhe des Windschutzes" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluss der inneren Oberflächenwand(en)" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Die Begrenzung der Höhe des Windschutzes. Oberhalb dieser Höhe wird kein Windschutz mehr gedruckt." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Beschleunigung der äußeren Oberfläche der Wand" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Überhänge druckbar machen" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluss der äußersten Oberflächenwand" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Ändern Sie die Geometrie des gedruckten Modells so, dass eine minimale Stützstruktur benötigt wird. Tiefe Überhänge werden flacher. Überhängende Bereiche fallen herunter und werden damit vertikaler." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Ruck der inneren Oberflächenwand" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximaler Winkel des Modells" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Der maximale Winkel von Überhängen, nachdem sie druckbar gemacht wurden. Bei einem Wert von 0° werden alle Überhänge durch ein Teil des Modells ersetzt, das mit der Druckplatte verbunden ist, 90° führt zu keiner Änderung des Modells." +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Beschleunigung Oberfläche Außenhaut" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximaler Lochflächen-Überstand" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Oberfläche Außenhaut Extruder" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Die maximale Fläche eines Lochs im Sockel des Modells, das mittels „Überhang drucken“ entfernt werden soll. Löcher mit kleinerer Fläche werden beibehalten. Beim Wert 0 mm² werden alle Löcher in der Modellbasis gefüllt." +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluss Oberfläche Außenhaut" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting aktivieren" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Justierung der Oberfläche Außenhaut" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Beim Coasting wird der letzte Teil eines Extrusionswegs durch einen Bewegungsweg ersetzt. Das abgesonderte Material wird zum Druck des letzten Stücks des Extrusionswegs verwendet, um Fadenziehen zu vermindern." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Oberfläche Außenhaut Schichten" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-Volumen" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Linienrichtungen der Oberfläche Außenhaut" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Oberfläche Außenhaut Linienbreite" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Mindestvolumen vor Coasting" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Oberfläche Außenhaut Muster" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Das kleinste Volumen, das ein Extrusionsweg haben sollte, damit Coasting möglich ist. Bei kürzeren Extrusionswegen wurde ein geringerer Druck in der Bowden-Röhre aufgebaut und daher wird das Coasting-Volumen linear skaliert. Dieser Wert sollte immer größer sein als das Coasting-Volumen." +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Oberfläche Außenhaut Geschwindigkeit" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-Geschwindigkeit" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Obere Dicke" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, in Relation zur Geschwindigkeit des Extrusionswegs. Ein Wert leicht unter 100 % wird empfohlen, da während der Coasting-Bewegung der Druck in den Bowden-Röhren abfällt." +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Die Außenhaut von Ober- und/oder Unterseiten Ihres Objekts, deren Winkel größer als dieser Wert sind, werden nicht expandiert. Dadurch wird vermieden, dass die schmalen Außenhautbereiche, die entstehen, wenn die Modelloberfläche eine nahezu vertikale Neigung aufweist, expandiert werden. Ein Winkel von 0° ist horizontal und führt dazu, dass ein solcher Außenhautbereich nicht expandiert wird; ein Winkel von 90° ist vertikal und führt dazu, dass die gesamte Außenhaut expandiert wird." -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Größe 3D-Quertasche" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Oben/Unten" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt." +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Oben/Unten" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Querfülldichte Bild" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Beschleunigung Oben/Unten" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Füllung des Drucks bestimmen." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Oben/Unten" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Querfülldichte Bild für Stützstruktur" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluss oben/unten" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Stützstruktur bestimmen." +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Ruckfunktion obere/untere Schicht" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konische Stützstruktur aktivieren" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Richtungen der oberen/unteren Linie" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Breite der oberen/unteren Linie" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Winkel konische Stützstruktur" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Unteres/oberes Muster" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Der Neigungswinkel der konischen Stützstruktur. Bei 0 Grad ist er vertikal und bei 90 Grad horizontal. Kleinere Winkel machen die Stützstruktur stabiler, aber benötigen mehr Material. Negative Winkel machen die Basis der Stützstruktur breiter als die Spitze." +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Geschwindigkeit obere/untere Schicht" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Mindestbreite konische Stützstruktur" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Obere/untere Dicke" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Die Mindestbreite, auf die die Basis der konischen Stützstruktur reduziert wird. Geringe Breiten können instabile Stützstrukturen zur Folge haben." +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Druckbett berühren" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Ungleichmäßige Außenhaut" +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pfeilerdurchmesser" -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." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Winkel des Pfeilerdachs" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Nur ungleichmäßige Außenhaut" +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 "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Es werden nur die Umrisse der Teile gejittert und nicht die Löcher der Teile." +msgctxt "travel label" +msgid "Travel" +msgstr "Bewegungen" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dicke der ungleichmäßigen Außenhaut" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Beschleunigung Bewegung" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Die Breite der Zitterbewegung. Es wird empfohlen, diese niedriger als der Breite der äußeren Wand einzustellen, da die inneren Wände unverändert bleiben." +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Umgehungsabstand Bewegung" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichte der ungleichmäßigen Außenhaut" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Ruckfunktion Bewegung" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Die durchschnittliche Dichte der Punkte, die auf jedes Polygon einer Schicht aufgebracht werden. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine geringe Dichte in einer Reduzierung der Auflösung resultiert." +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegungsgeschwindigkeit" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Punktabstand der ungleichmäßigen Außenhaut" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Behandelt das Modell nur als Oberfläche, Volumen oder Volumen mit losen Oberflächen. Der Normaldruck-Modus druckt nur umschlossene Volumen. „Oberfläche“ druckt eine einzelne Wand und verfolgt die Mesh-Oberfläche ohne Füllung und ohne obere/untere Außenhaut. „Beide“ druckt umschlossene Volumen wie üblich und alle verbleibenden Polygone als Oberflächen." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut." +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Tree" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexagon" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Die maximale Strecke (in mm), die das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren." +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Ausgleichsfaktor Durchflussrate" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -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." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Anpassschichten verwenden" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des Modells." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale Abweichung für Anpassschichten" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Stammdurchmesser" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Die max. zulässige Höhendifferenz von der Basisschichthöhe." +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Abweichung Schrittgröße für Anpassschichten" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Überlappende Volumen vereinen" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Der Höhenunterscheid der nächsten Schichthöhe im Vergleich zur vorherigen." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Wände ohne Stützstruktur, die kürzer als dieser Wert sind, werden mit normalen Wandeinstellungen gedruckt. Längere Wände ohne Stützstruktur werden mithilfe der Brückenwandeinstellungen gedruckt." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topographische Größe der Anpassschichten" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Anpassschichten verwenden" -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." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Verwendung von Pfeilern" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Winkel für überhängende Wände" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Verwenden Sie eine separate Beschleunigungsrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Beschleunigungswert der gedruckten Linie an der Zielposition verwendet." -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." +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Verwenden Sie eine separate Ruckrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Ruckfunktionswert der gedruckten Linie an der Zielposition verwendet." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Geschwindigkeit für überhängende Wände" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Verwenden Sie die relative Extrusion anstelle der absoluten Extrusion. Die Verwendung relativer E-Schritte erleichtert die Nachbearbeitung des G-Code. Diese Option wird jedoch nicht von allen Druckern unterstützt und kann geringfügige Abweichungen bei der Menge des abgesetzten Materials im Vergleich zu absoluten E-Schritten zur Folge haben. Ungeachtet dieser Einstellung wird der Extrusionsmodus stets auf absolut gesetzt, bevor ein G-Code-Skript ausgegeben wird." -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Überhängende Wände werden zu diesem Prozentwert ihrer normalen Druckgeschwindigkeit gedruckt." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Es werden spezielle Pfeiler verwendet, um kleine Überhänge zu stützen. Diese Pfeiler haben einen größeren Durchmesser als der von ihnen gestützte Bereich. In der Nähe des Überhangs verkleinert sich der Durchmesser der Pfeiler, was zur Bildung eines Dachs führt." -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Brückeneinstellungen aktivieren" +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Verwenden Sie dieses Mesh, um die Füllung anderer Meshes zu ändern, mit denen es überlappt. Dabei werden Füllungsbereiche anderer Meshes mit Regionen für dieses Mesh ersetzt. Es wird empfohlen, nur eine Wand und keine obere/untere Außenhaut für dieses Mesh zu drucken." -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüftereinstellungen während des Drucks von Brücken." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Dieses Netz wird verwendet, um festzulegen, welche Bereiche gestützt werden sollen. Dies kann verwendet werden, um eine Stützstruktur zu errichten." -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Mindestlänge Brückenwand" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Dieses Netz wird verwendet, um festzulegen, welcher Teil des Modells als Überhang erkannt werden soll. Dies kann verwendet werden, um eine unerwünschte Stützstruktur zu entfernen." -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Wände ohne Stützstruktur, die kürzer als dieser Wert sind, werden mit normalen Wandeinstellungen gedruckt. Längere Wände ohne Stützstruktur werden mithilfe der Brückenwandeinstellungen gedruckt." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Benutzerdefiniert" -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" -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." +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Vertikale Toleranz der geschnittenen (Slicing) Schichten. Die Konturen einer Schicht werden normalerweise erzeugt, indem ein Querschnitt durch die Mitte der Höhe jeder Schicht (Mitte) vorgenommen wird. Alternativ kann jede Schicht die Bereiche aufweisen, die über die gesamte Dicke der Schicht (Exklusiv) in das Volumen fallen, oder eine Schicht weist die Bereiche auf, die innerhalb der Schicht (Inklusiv) irgendwo hineinfallen. Inklusiv ermöglicht die meisten Details, Exklusiv die beste Passform und Mitte entspricht der ursprünglichen Fläche am ehesten." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale Dichte der Materialsparfüllung der Brücke" +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Warten auf Aufheizen der Druckplatte" -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 "Maximale Dichte der Füllung, die im Sparmodus eingefüllt werden soll. Haut über spärlicher Füllung wird als nicht unterstützt betrachtet und kann daher als Brückenhaut behandelt werden." +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Warten auf Aufheizen der Düse" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting Brückenwand" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Beschleunigung Wand" -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Anzahl verteilter Wände" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Brückenwandgeschwindigkeit" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extruder für Wand" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Die Geschwindigkeit, mit der die Brückenwände gedruckt werden." +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wandfluss" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Brückenwandfluss" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Ruckfunktion Wand" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken von Brückenwänden wird mit diesem Wert multipliziert." +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Anzahl der Wandlinien" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Brücken-Außenhautgeschwindigkeit" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Breite der Wandlinien" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Die Geschwindigkeit, mit der die Brücken-Außenhautbereiche gedruckt werden." +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandreihenfolge" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Brücken-Außenhautfluss" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandgeschwindigkeit" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken von Brücken-Außenhautbereichen wird mit diesem Wert multipliziert." +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddicke" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichte der Brücken-Außenhaut" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Wandübergangslänge" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Wandübergangsfilter Abstand" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Lüfterdrehzahl Brücke" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Wandübergangsfilter Rand" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Lüfterdrehzahl in Prozentwert für das Drucken von Brückenwänden und -Außenhaut." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Schwellenwinkel für Wandübergang" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brücke hat mehrere Schichten" +msgctxt "shell label" +msgid "Walls" +msgstr "Wände" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Bei Aktivierung werden die zweite und dritte Schicht über der Luft mit den folgenden Einstellungen gedruckt. Ansonsten werden diese Schichten mit den normalen Einstellungen gedruckt." +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." -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Geschwindigkeit Brücke, zweite Außenhaut" +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Bei der Überprüfung, wo sich das Modell über und unter der Stützstruktur befindet, verwenden Sie Schritte der entsprechenden Höhe. Niedrigere Werte schneiden langsamer, während höhere Werte dazu führen können, dass die normale Stützstruktur an einigen Stellen gedruckt wird, wo sie als Stützstrukturschnittstelle gedruckt werden sollte." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern." -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluss Brücke, zweite Außenhaut" +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Bei Aktivierung wird die Reihenfolge, in der die Fülllinien gedruckt werden, optimiert, um die gefahrene Distanz zu reduzieren. Diese erzielte Reduzierung der Bewegung ist sehr stark von dem zu slicenden Modell, dem Füllmuster, der Dichte usw. abhängig. Beachten Sie, dass die Dauer für das Slicen bei einigen Modellen mit vielen kleinen Füllbereichen erheblich länger ausfallen kann." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken der zweiten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Bei Aktivierung wird die Lüfterdrehzahl für die Druckkühlung für die Außenhautbereiche direkt über der Stützstruktur geändert." -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichte Brücke, zweite Außenhaut" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Bei Aktivierung sind die Z-Naht-Koordinaten relativ zur Mitte der jeweiligen Teile. Bei Deaktivierung definieren die Koordinaten eine absolute Position auf dem Druckbett." -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der zweiten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Bei Werten größer als Null wird die Horizontalloch-Erweiterung schrittweise auf kleine Löcher angewendet (kleine Löcher werden stärker erweitert). Beim Wert Null wird die Horizontalloch-Erweiterung auf alle Löcher angewendet. Löcher, die größer als der maximale Durchmesser der Horizontalloch-Erweiterung sind, werden nicht erweitert." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Lüfterdrehzahl in Prozentwert für das Drucken der zweiten Brücken-Außenhautschicht." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Bei einem Wert größer als Null ist die Horizontalloch-Erweiterung der Versatz, der auf alle Löcher in jeder Schicht angewendet wird. Positive Werte vergrößern die Löcher, negative Werte verringern die Lochgröße. Wenn diese Einstellung aktiviert ist, kann sie mit „Maximaler Durchmesser der Horizontalloch-Erweiterung“ weiter angepasst werden." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Geschwindigkeit Brücke, dritte Außenhaut" +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken von Brücken-Außenhautbereichen wird mit diesem Wert multipliziert." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken von Brückenwänden wird mit diesem Wert multipliziert." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluss Brücke, dritte Außenhaut" +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken der zweiten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." msgctxt "bridge_skin_material_flow_3 description" msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "Die extrudierte Materialmenge beim Drucken der dritten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichte Brücke, dritte Außenhaut" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der dritten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Prozentwert der Lüfterdrehzahl für das Drucken der dritten Brücken-Außenhautschicht." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Düse zwischen den Schichten abwischen" - -msgctxt "clean_between_layers description" -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 "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten (max. einer pro Schicht). 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 das Abwischen aktiv wird." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Wenn die Mindestgeschwindigkeit aufgrund der Mindestzeit für Schicht erreicht wird, wird der Druckkopf vom Druck angehoben und die zusätzliche Zeit, bis die Mindestzeit für Schicht erreicht ist, gewartet." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materialmenge zwischen den Wischvorgängen" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Wenn das Modell kleine, nur wenige Schichten hohe vertikale Lücken aufweist, sind diese normalerweise von einer Außenhaut bedeckt. Aktivieren Sie diese Einstellung, damit bei sehr kleinen Lücken keine Außenhaut gedruckt wird. Dies verkürzt die zum Drucken und Slicen benötigte Zeit, aber die Füllung bleibt der Luft ausgesetzt." -msgctxt "max_extrusion_before_wipe description" -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 "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird. Ist dieser Wert kleiner als das in einer Schicht benötigte Materialvolumen, so hat die Einstellung in dieser Schicht keine Auswirkung, d.h. sie ist auf ein Wischen pro Schicht begrenzt." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Legt fest, ab welchem Winkel Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden erstellt werden. Eine Keilform mit einem größeren Winkel als in dieser Einstellung erhält keine Übergänge und es werden keine Wände in der Mitte gedruckt, um den verbleibenden Raum zu füllen. Wenn diese Einstellung verringert wird, reduziert dies die Anzahl und Länge dieser Mittelwände, kann jedoch Lücken oder zu starke Extrudierungen hinterlassen." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Abwischen bei Einzug aktivieren" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Wenn beim Übergang zwischen verschiedenen Wänden das Teil dünner wird, wird ein bestimmter Raum zugewiesen, in dem sich die Wandlinien teilen bzw. verbinden." -msgctxt "wipe_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." +msgctxt "wipe_hop_enable description" +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 "Beim Abwischen wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse während der Bewegungen den Druckkörper trifft und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Einzugsabstand für Abwischen" +msgctxt "retraction_hop_enabled 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 "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Wert, um den das Filament eingezogen wird, damit es während des Abwischens nicht austritt." +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Definiert, ob die X/Y-Distanz der Stützstruktur die Z-Distanz der Stützstruktur aufhebt oder umgekehrt. Wenn X/Y Z aufhebt, kann die X/Y-Distanz die Stützstruktur vom Modell wegschieben und damit die tatsächliche Z-Distanz zum Überhang beeinflussen. Diese Einstellung kann deaktiviert werden, indem die X/Y-Distanz um die Überhänge nicht angewendet wird." -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Definiert, ob die X/Y-Koordinaten der Nullposition des Druckers in der Mitte des druckbaren Bereichs stehen." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Während einer Bewegung für den Abwischvorgang kann Material wegsickern, was hier kompensiert werden kann." +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Definiert, ob der Endanschlag der X-Achse in positiver Richtung (hohe X-Koordinate) oder negativer Richtung (niedrige X-Koordinate) liegt." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Abwischen" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Definiert, ob der Endanschlag der Y-Achse in positiver Richtung (hohe Y-Koordinate) oder negativer Richtung (niedrige Y-Koordinate) liegt." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und während einer Einzugsbewegung für Abwischen zurückgeschoben wird." +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Definiert, ob der Endanschlag der Z-Achse in positiver Richtung (hohe Z-Koordinate) oder negativer Richtung (niedrige Z-Koordinate) liegt." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Gibt an, ob die Extruder sich ein Heizelement teilen oder jeweils über ein eigenes verfügen." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung für Abwischen eingezogen wird." +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Gibt an, ob die Extruder gemeinsam eine Düse nutzen oder jeweils über eine eigene verfügen. In der Einstellung „true“ ist zu erwarten, dass das GCode-Skript „printer-start“ alle Extruder ordnungsgemäß in einem bekannten und untereinander kompatiblen Anfangszustand anordnet (Rückzugstellung; entweder Null oder mit einem nicht zurückgezogenen Filament); in diesem Fall wird die anfängliche Rückzugstellung für jeden Extruder durch den Parameter „machine_extruders_shared_nozzle_initial_retraction“ beschrieben." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vorbereitungszeit für Abwischen beim Einzug" +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Option für vorhandene beheizte Druckplatte." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung vorbereitet wird." +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Zeigt an, ob das Gerät die Temperatur im Druckraum stabilisieren kann." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Abwischen pausieren" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Ermöglicht das Zentrieren des Objekts in der Mitte eines Druckbetts (0,0) anstelle der Verwendung eines Koordinatensystems, in dem das Objekt gespeichert war." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausieren nach Aufhebung des Einzugs." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Für die Temperatursteuerung von Cura. Schalten Sie diese Funktion aus, um die Düsentemperatur außerhalb von Cura zu steuern." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Z-Sprung beim Abwischen" +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Option zum Einfügen von Befehlen für die Druckplattentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Druckplattentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." -msgctxt "wipe_hop_enable description" -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 "Beim Abwischen wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse während der Bewegungen den Druckkörper trifft und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Option zum Einfügen von Befehlen für die Düsentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Düsentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Z-Sprung Höhe - Abwischen" +msgctxt "clean_between_layers description" +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 "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten (max. einer pro Schicht). 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 das Abwischen aktiv wird." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Druckplattentemperatur erreicht wurde." -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprunghöhe - Abwischen" +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Geschwindigkeit für das Verfahren der Z-Achse während des Sprungs." +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 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 "Es wird festgelegt, ob eine Schicht für alle Modelle gleichzeitig gedruckt werden soll oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck eines weiteren begonnen wird. Der „Nacheinandermodus“ ist möglich, wenn a) nur ein Extruder aktiviert ist und b) alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger sind als der Abstand zwischen der Düse und den X/Y-Achsen." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-Position für Bürste - Abwischen" +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Zeigt optional die verschiedenen Varianten dieses Geräts an, die in separaten json-Dateien beschrieben werden." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "X-Position, an der das Skript für Abwischen startet." +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." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Wiederholungszähler - Abwischen" +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Düsentemperatur erreicht wurde." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Anzahl der Wiederholungen für das Bewegen der Düse über der Bürste." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Die Breite einer einzelnen Fülllinie." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Abstand Wischbewegung" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Die Breite einer einzelnen Stützdach- oder Bodenlinie." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Die Strecke, die der Kopf durch Vorwärts- und Rückwärtsbewegung über die Bürste hinweg fährt." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Die Breite einer einzelnen Linie der oberen Druckbereiche." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Max. Lochdurchmesser" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Die Breite einer einzelnen Linie. Generell sollte die Breite jeder Linie der Breite der Düse entsprechen. Eine leichte Reduzierung dieses Werts kann jedoch zu besseren Drucken führen." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Löcher und Teilkonturen mit einem kleineren Durchmesser werden mit Small Feature Speed gedruckt." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Die Linienbreite eines einzelnen Einzugsturms." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Max. Detaillänge" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Teile, die kleiner sind als dieser Wert, werden in Detailgeschwindigkeit gedruckt." +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Detailgeschwindigkeit" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Die Breite einer einzelnen Stützdachlinie." -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." +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Die Breite einer einzelnen Stützstrukturlinie." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht von Details" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Die Breite einer einzelnen oberen/unteren Linie." -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." +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Die Breite einer einzelnen Wandlinie für alle Wandlinien, außer der äußersten." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Abwechselnde Wandrichtungen" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Die Breite einer einzelnen Wandlinie." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Innenecken des Rafts entfernen" +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Die Breite der Linien im Raft-Mittelbereich. Wenn die zweite Schicht mehr extrudiert, haften die Linien besser an der Druckplatte." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Wandanzahl des Raft-Bodens" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Die Breite der äußersten Wandlinie. Indem dieser Wert reduziert wird, können höhere Detaillierungsgrade erreicht werden." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Breite der Wand, die dünne Merkmale (entsprechend der Mindest-Merkmalgröße) des Modells ersetzen wird. Wenn die Mindeststärke der Wandlinie dünner ist als die Stärke des Merkmals, wird die Wand so dick wie das Merkmal selbst." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Einstellungen Befehlszeile" +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-Position für Bürste - Abwischen" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Diese Einstellungen werden nur verwendet, wenn CuraEngine nicht seitens Cura aufgerufen wird." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprunghöhe - Abwischen" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Objekt zentrieren" +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Wipe-Düse am Einzugsturm inaktiv" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Abstand Wischbewegung" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Ermöglicht das Zentrieren des Objekts in der Mitte eines Druckbetts (0,0) anstelle der Verwendung eines Koordinatensystems, in dem das Objekt gespeichert war." +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Düse zwischen den Schichten abwischen" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Netzposition X" +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Abwischen pausieren" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Verwendeter Versatz für das Objekt in X-Richtung." +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Wiederholungszähler - Abwischen" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Netzposition Y" +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Einzugsabstand für Abwischen" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Verwendeter Versatz für das Objekt in Y-Richtung." +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Abwischen bei Einzug aktivieren" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Netzposition Z" +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Der für das Objekt in Z-Richtung verwendete Versatz. Damit können Sie den Vorgang ausführen, der unter dem Begriff „Objekt absenken“ verwendet wurde." +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vorbereitungszeit für Abwischen beim Einzug" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrix Netzdrehung" +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen" -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 "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Abwischen" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Stufenweiser Fluss aktiviert" +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Z-Sprung beim Abwischen" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Z-Sprung Höhe - Abwischen" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale Beschleunigung bei stufenweisem Fluss" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Innerhalb der Füllung" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Mit aktivem Werkzeug schreiben, nach dem temporäre Befehle an das inaktive Werkzeug übermittelt wurden. Erforderlich für Dual-Extruder-Druck mit Smoothie oder anderer Firmware mit modalen Werkzeugbefehlen." -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale Flussbeschleunigung bei erster Schicht" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-Endanschlag in positiver Richtung" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "X-Position, an der das Skript für Abwischen startet." -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y hebt Z auf" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-Endanschlag in positiver Richtung" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flussdauer zurücksetzen" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-Endanschlag in positiver Richtung" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-Sprung nach Extruder-Wechsel" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z-Sprung Höhe nach Extruder-Wechsel" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z-Sprung Höhe" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-Sprung nur über gedruckten Teilen" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Sprunghöhe Z" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-Sprung beim Einziehen" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Justierung der Z-Naht" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position der Z-Naht" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Realitvwert der Z-Naht" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-Naht X" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-Naht Y" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z hebt X/Y auf" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "material label" -msgid "Material" -msgstr "Material" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Äußere Wände gruppieren" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluss der äußersten Oberflächenwand" +msgctxt "travel description" +msgid "travel" +msgstr "Bewegungen" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Der Abstand vom gedruckten Objekt bis zur Unterseite der Stützstruktur." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluss der inneren Oberflächenwand(en)" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Der Abstand der Ober-/Unterseite der Stützstruktur vom Druck. So wird ein Zwischenraum geschaffen, der die Entfernung der Stützstrukturen nach dem Drucken des Modells ermöglicht. Dieser Wert wird auf ein Vielfaches der Schichtdicke aufgerundet." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Dauer der einzelnen Schritte bei der stufenweisen Änderung des Flusses" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Aktivieren Sie stufenweise Flussänderungen. Wenn diese Option aktiviert ist, wird der Fluss stufenweise auf den Sollwert des Flusses erhöht bzw. verringert. Dies ist bei Druckern mit Bowden-Röhren sinnvoll, bei denen der Fluss nicht sofort geändert wird, sobald der Extrudermotor startet/stoppt." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Bei jeder Fahrtbewegung, die diesen Wert überschreitet, wird der Materialfluss auf den Sollwert des Flusses für den Weg zurückgesetzt" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Geschwindigkeit der inneren Oberfläche der Wand" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Schrittgröße der stufenweisen Fluss-Diskretisierung" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Stufenweiser Fluss aktiviert" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Beschleunigung der äußeren Oberfläche der Wand" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Maximale Beschleunigung bei stufenweisem Fluss" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Maximale Flussbeschleunigung bei erster Schicht" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Beschleunigung der inneren Oberfläche der Wand" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Maximale Beschleunigung für stufenweise Änderung des Flusses" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Mindestgeschwindigkeit für stufenweise Änderung des Flusses in der ersten Schicht" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Ruck der inneren Oberflächenwand" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Brim Einzugsturm" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Einzugstürme benötigen möglicherweise zusätzliche Haftung in Form eines Brims, auch wenn das Modell selbst dies nicht benötigt. Kann derzeit nicht mit dem „Raft“-Haftungstyp verwendet werden." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Ruck der äußersten Oberflächenwand" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Flussdauer zurücksetzen" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Die Temperatur, die für das Drucken der ersten Schicht verwendet wird. Wählen Sie hier 0, um eine spezielle Behandlung der ersten Schicht zu deaktivieren." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index a9f25d7e465..933f09f51fb 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -137,8 +138,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Añada perfiles de materiales y complementos del Marketplace \n- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Añada perfiles de materiales y complementos del Marketplace \n" +"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n" +"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" msgctxt "@heading" msgid "-- incomplete --" @@ -164,6 +171,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Archivo 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Lector de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Escritor de 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "El complemento del Escritor de 3MF está dañado." @@ -184,29 +199,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Solo la configuración modificada por el usuario se guardar en el perfil personalizado.
    El nuevo perfil personalizado heredar las propiedades de %1 para los materiales compatibles." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Representador de OpenGL: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Proveedor de OpenGL: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versión de OpenGL: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

    \n

    Utilice el botón "Enviar informe" para publicar automáticamente el informe de errores en nuestros servidores.

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

    \n" +"

    Utilice el botón "Enviar informe" para publicar automáticamente el informe de errores en nuestros servidores.

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    ¡Vaya! UltiMaker Cura ha encontrado un error.

    \n

    Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

    \n

    Las copias de seguridad se encuentran en la carpeta de configuración.

    \n

    Envíenos el informe de errores para que podamos solucionar el problema.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    ¡Vaya! UltiMaker Cura ha encontrado un error.

    \n" +"

    Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

    \n" +"

    Las copias de seguridad se encuentran en la carpeta de configuración.

    \n" +"

    Envíenos el informe de errores para que podamos solucionar el problema.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

    \n

    {model_names}

    \n

    Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

    \n

    Ver guía de impresión de calidad

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:

    \n" +"

    {model_names}

    \n" +"

    Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.

    \n" +"

    Ver guía de impresión de calidad

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -226,6 +269,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Archivo AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Lector de AMF" + msgctxt "@label" msgid "Abort" msgstr "Cancelar" @@ -262,6 +309,10 @@ msgctxt "@button" msgid "Accept" msgstr "Aceptar" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." + msgctxt "@label" msgid "Account synced" msgstr "Cuenta sincronizada" @@ -354,6 +405,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Añadir impresora manualmente" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Añadiendo la impresora {name} ({model}) de su cuenta" @@ -390,10 +442,23 @@ msgctxt "@button" msgid "Agree" msgstr "Estoy de acuerdo" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos los archivos (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos los tipos compatibles ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir el envío de datos anónimos" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite cargar y visualizar archivos GCode." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Preguntar siempre" @@ -466,6 +531,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "¿Seguro que desea mover %1 al principio de la cola?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?" @@ -474,6 +540,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!" @@ -486,6 +557,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organizar todos los modelos en una cuadrícula" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Haga una pregunta" @@ -534,6 +609,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Realizar copia de seguridad y restablecer configuración" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Realice una copia de seguridad de su configuración y restáurela." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales" @@ -546,6 +625,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Copias de seguridad" +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -622,10 +705,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "¿No puede conectarse a la impresora UltiMaker?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "No se puede importar el perfil de {0} antes de añadir una impresora." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}" @@ -634,6 +719,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "No se puede escribir en el archivo UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + msgctxt "@button" msgid "Cancel" msgstr "Cancelar" @@ -694,8 +783,21 @@ msgctxt "@label" msgid "Checking..." msgstr "Comprobando..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Busca actualizaciones de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." msgctxt "@action:inmenu menubar:edit" @@ -774,6 +876,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Archivo GCode comprimido" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lector de GCode comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Escritor de GCode comprimido" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Cambios de configuración" @@ -810,6 +920,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar cambio de diámetro" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar eliminación" + msgctxt "@action:button" msgid "Connect" msgstr "Conectar" @@ -842,6 +956,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado mediante cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulte en la Comunidad UltiMaker." @@ -882,6 +1000,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}." @@ -894,6 +1013,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Imposible interpretar la respuesta del servidor." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Imposible acceder a Marketplace." @@ -906,6 +1029,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "No se pudo guardar el archivo de material en {}:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "No se pudo guardar en {0}: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "No se pudo guardar en unidad extraíble {0}: {1}" @@ -914,17 +1043,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "No se han podido cargar los datos en la impresora." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}\nNo se tiene permiso para ejecutar el proceso." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"No se pudo iniciar EnginePlugin: {self._plugin_id}\n" +"No se tiene permiso para ejecutar el proceso." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}\nEl sistema operativo lo está bloqueando (¿antivirus?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"No se pudo iniciar EnginePlugin: {self._plugin_id}\n" +"El sistema operativo lo está bloqueando (¿antivirus?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}\nEl recurso no está disponible temporalmente" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"No se pudo iniciar EnginePlugin: {self._plugin_id}\n" +"El recurso no está disponible temporalmente" msgctxt "@title:window" msgid "Crash Report" @@ -966,6 +1110,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Cree proyectos de impresión en Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Creando copia de seguridad..." @@ -978,10 +1126,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Copias de seguridad de Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil de cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lector de perfiles de Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Escritor de perfiles de Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Archivo 3MF del proyecto de Cura" @@ -994,13 +1154,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura no puede iniciarse" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "UltiMaker ha desarrollado Cura en cooperación con la comunidad.\nCura se enorgullece de utilizar los siguientes proyectos de código abierto:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"UltiMaker ha desarrollado Cura en cooperación con la comunidad.\n" +"Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" msgctxt "@label" msgid "Cura language" @@ -1010,6 +1175,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versión de Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Backend de CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "Flujo gradual de CuraEngine" + msgctxt "@label" msgid "Currency:" msgstr "Moneda:" @@ -1090,10 +1267,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: " @@ -1266,10 +1439,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Expulsar" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Expulsar dispositivo extraíble {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad." @@ -1294,6 +1469,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Habilitado" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "Finalizar GCode" @@ -1322,6 +1501,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Introduzca la dirección IP de su impresora." +msgctxt "@info:title" +msgid "Error" +msgstr "Error" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Rastreabilidad de errores" @@ -1366,6 +1549,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportación correcta" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado a {0}" @@ -1374,6 +1558,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Amplíe UltiMaker Cura con complementos y perfiles de materiales." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" + msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -1410,6 +1598,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Error al crear un archivo de materiales para sincronizarlo con las impresoras." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad." @@ -1418,22 +1607,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Se ha producido un error al exportar el material a %1: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Error al exportar el perfil a {0}: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Error al exportar el perfil a {0}: Error en el complemento de escritura." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Error al importar el perfil de {0}: {1}" @@ -1466,6 +1660,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Peso del filamento" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "El archivo ya existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Archivo guardado" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "El archivo {0} no contiene ningún perfil válido." @@ -1498,6 +1701,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Actualización del firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Buscador de actualizaciones de firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Actualizador de firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware." @@ -1594,6 +1805,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Archivo GCode" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lector de perfiles GCode" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lector de GCode" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Escritor de GCode" + msgctxt "@label" msgid "G-code flavor" msgstr "Tipo de GCode" @@ -1626,6 +1849,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Altura del puente" +msgctxt "@title:tab" +msgid "General" +msgstr "General" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." @@ -1658,6 +1885,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Colocación de cuadrícula" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "N.º de grupo {group_nr}" @@ -1730,6 +1958,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Si la impresora no aparece en la lista, lea la guía de solución de problemas de impresión y red" +msgctxt "name" +msgid "Image Reader" +msgstr "Lector de imágenes" + msgctxt "@action:button" msgid "Import" msgstr "Importar" @@ -1978,6 +2210,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Más información" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Más información" + msgctxt "@button" msgid "Learn more" msgstr "Más Información" @@ -2006,6 +2242,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista del lado izquierdo" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lector de perfiles antiguos de Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe a los desarrolladores de que algo no funciona bien." @@ -2086,6 +2326,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Se ha perdido la conexión con la impresora" @@ -2094,6 +2338,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Ajustes de la máquina" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Acción Ajustes de la máquina" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Máquinas" @@ -2106,6 +2354,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar materiales..." @@ -2154,6 +2418,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gestionar los complementos y los perfiles de materiales de UltiMaker Cura aquí. Asegúrese de mantener los complementos actualizados y hacer una copia de seguridad de su configuración regularmente." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestiona las conexiones de red de las impresoras UltiMaker conectadas." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" @@ -2166,6 +2438,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2182,6 +2458,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Color del material" +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfiles de material" + msgctxt "@label" msgid "Material Type" msgstr "Tipo de material" @@ -2226,6 +2506,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modo" +msgctxt "name" +msgid "Model Checker" +msgstr "Comprobador de modelos" + msgctxt "@info:title" msgid "Model Errors" msgstr "Errores de modelo" @@ -2242,6 +2526,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Supervisar" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de supervisión" + msgctxt "@action:button" msgid "Monitor print" msgstr "Supervisar la impresión" @@ -2316,6 +2604,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Error de red" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nuevo firmware de %s estable disponible" @@ -2328,6 +2617,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Las nuevas impresoras UltiMaker pueden conectarse a Digital Factory y supervisarse a distancia." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." @@ -2374,6 +2664,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Ningún cálculo de costes disponible" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "No hay ningún perfil personalizado para importar en el archivo {0}" @@ -2482,6 +2773,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Número de extrusores" +msgctxt "@action:button" +msgid "OK" +msgstr "Aceptar" + msgctxt "@label" msgid "OS language" msgstr "Idioma del sistema operativo" @@ -2502,6 +2797,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostrar solo capas superiores" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}" @@ -2635,7 +2931,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Copiar desde el portapapeles" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pausar" @@ -2660,6 +2955,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Ajustes por modelo" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Herramienta de ajustes por modelo" + msgid "Perspective" msgstr "Perspectiva" @@ -2696,8 +2995,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Conceda los permisos necesarios al autorizar esta aplicación." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Asegúrese de que la impresora está conectada:\n- Compruebe que la impresora está encendida.\n- Compruebe que la impresora está conectada a la red.\n- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Asegúrese de que la impresora está conectada:\n" +"- Compruebe que la impresora está encendida.\n" +"- Compruebe que la impresora está conectada a la red.\n" +"- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +3018,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Introduzca un nombre para este perfil." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Lea y acepte la licencia del complemento." @@ -2720,8 +3031,16 @@ msgid "Please remove the print" msgstr "Retire la impresión" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Revise la configuración y compruebe si sus modelos:\n- Se integran en el volumen de impresión\n- Están asignados a un extrusor activado\n- No están todos definidos como mallas modificadoras" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Revise la configuración y compruebe si sus modelos:\n" +"- Se integran en el volumen de impresión\n" +"- Están asignados a un extrusor activado\n" +"- No están todos definidos como mallas modificadoras" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2771,6 +3090,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Posprocesamiento" +msgctxt "name" +msgid "Post Processing" +msgstr "Posprocesamiento" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Complemento de posprocesamiento" @@ -2787,6 +3110,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparación" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparando..." @@ -2807,6 +3134,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Vista previa" +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de vista previa" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre auxiliar" @@ -2935,6 +3266,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "La configuración de la impresora se actualizar para que coincida con la configuración guardada con el proyecto." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impresoras" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Impresoras añadidas desde Digital Factory:" @@ -2995,6 +3330,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Ajustes del perfil" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto." @@ -3019,18 +3355,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lenguaje de programación" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "El archivo del proyecto {0} contiene un tipo de máquina desconocida {1}. No se puede importar la máquina, en su lugar, se importarán los modelos." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "El archivo de proyecto {0} está dañado: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "El archivo de proyecto {0} se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "El archivo de proyecto {0} está repentinamente inaccesible: {1}." @@ -3039,6 +3379,106 @@ msgctxt "@label" msgid "Properties" msgstr "Propiedades" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Proporciona opciones a la máquina para actualizar el firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Proporciona una fase de supervisión en Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Proporciona una vista de malla sólida normal." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Proporciona una fase de preparación en Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Proporciona una fase de vista previa en Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Permite leer y escribir perfiles de material basados en XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Proporciona asistencia para exportar perfiles de Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Proporciona asistencia para la importación de perfiles de Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Proporciona asistencia para leer archivos 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Proporciona asistencia para leer archivos AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Proporciona asistencia para leer archivos X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Proporciona asistencia para leer archivos 3D." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Proporciona asistencia para escribir archivos 3MF." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite la escritura de paquetes de formato Ultimaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Proporciona los ajustes por modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Proporciona la vista de rayos X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Proporciona la vista previa de los datos de las capas cortadas." + msgctxt "@label" msgid "PyQt version" msgstr "Versión PyQt" @@ -3059,6 +3499,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Versión Qt" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'." @@ -3075,6 +3516,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Salir de %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lee GCode de un archivo comprimido." + msgctxt "@button" msgid "Recommended" msgstr "Recomendado" @@ -3127,6 +3572,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unidad extraíble" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de dispositivo de salida de unidad extraíble" + msgctxt "@action:button" msgid "Remove" msgstr "Eliminar" @@ -3143,6 +3592,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Cambiar nombre" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Cambiar nombre de perfil" @@ -3279,14 +3732,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar en unidad extraíble" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar en unidad extraíble {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado en unidad extraíble {0} como {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Guardando" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Guardando en unidad extraíble {0}" @@ -3379,6 +3839,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviando materiales a la impresora" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Registro de Sentry" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicación en serie" @@ -3411,6 +3875,10 @@ msgctxt "@label" msgid "Settings" msgstr "Ajustes" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ajustes" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:" @@ -3571,6 +4039,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Inicie sesión en la plataforma UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Vista de simulación" + msgctxt "@tooltip" msgid "Skin" msgstr "Forro" @@ -3599,6 +4071,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Segmentar automáticamente al cambiar los ajustes." +msgctxt "name" +msgid "Slice info" +msgstr "Info de la segmentación" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Error en el corte" @@ -3615,13 +4091,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavizado" +msgctxt "name" +msgid "Solid View" +msgstr "Vista de sólidos" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista de sólidos" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n\nHaga clic para mostrar estos ajustes." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n" +"\n" +"Haga clic para mostrar estos ajustes." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3636,8 +4122,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Algunos de los valores de configuración definidos en %1 se han anulado." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n\nHaga clic para abrir el administrador de perfiles." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n" +"\n" +"Haga clic para abrir el administrador de perfiles." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +4155,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Patrocinar Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Patrocinar Cura" @@ -3709,6 +4199,10 @@ msgctxt "@label" msgid "Strength" msgstr "Resistencia" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "El material se ha exportado correctamente a %1" @@ -3717,6 +4211,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "El material se ha importado correctamente en %1" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." @@ -3737,6 +4232,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Bloqueador de soporte" +msgctxt "name" +msgid "Support Eraser" +msgstr "Borrador de soporte" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Relleno de soporte" @@ -3843,6 +4342,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "La copia de seguridad excede el tamaño máximo de archivo." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "El perfil equilibrado está diseñado para lograr un equilibrio entre la productividad, la calidad de la superficie, las propiedades mecánicas y la precisión dimensional." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "La altura de la base desde la placa de impresión en milímetros." @@ -3899,6 +4402,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras." @@ -3958,8 +4466,22 @@ msgid "The nozzle inserted in this extruder." msgstr "Tobera insertada en este extrusor." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Patrón del material de relleno de la impresión:\n\nPara impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero.\n\nPara una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono.\n\nPara las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"Patrón del material de relleno de la impresión:\n" +"\n" +"Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero.\n" +"\n" +"Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono.\n" +"\n" +"Para las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4111,6 +4633,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Esta impresora aloja un grupo de %1 impresoras." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Este perfil {0} contiene datos incorrectos, no se han podido importar." @@ -4124,8 +4647,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Este proyecto contiene materiales o complementos que actualmente no están instalados en Cura.
    Instale los paquetes que faltan y vuelva a abrir el proyecto." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Este ajuste tiene un valor distinto del perfil.\n\nHaga clic para restaurar el valor del perfil." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Este ajuste tiene un valor distinto del perfil.\n" +"\n" +"Haga clic para restaurar el valor del perfil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4142,8 +4671,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n\nHaga clic para restaurar el valor calculado." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n" +"\n" +"Haga clic para restaurar el valor calculado." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4169,6 +4704,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Para sincronizar automáticamente los perfiles de material con todas sus impresoras conectadas a Digital Factory debe iniciar sesión en Cura." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para establecer una conexión, visite {website_link}" @@ -4181,6 +4717,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}" @@ -4229,6 +4766,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lector Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Solución de problemas" @@ -4245,10 +4786,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Tipo" +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Lector de UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Escritor de UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impresión USB" +msgctxt "name" +msgid "USB printing" +msgstr "Impresión USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Cuenta de UltiMaker" @@ -4265,6 +4822,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Paquete de formato UltiMaker" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexión en red de UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Paquete verificado por UltiMaker" @@ -4273,6 +4834,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Complemento verificado por UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acciones de la máquina UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Impresoras UltiMaker" @@ -4285,6 +4850,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "No se puede añadir el perfil." @@ -4293,13 +4862,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "No se puede encontrar el ejecutable del servidor EnginePlugin local para: {self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "No se puede detener el EnginePlugin en ejecución: {self._plugin_id}\nEl acceso se ha denegado." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"No se puede detener el EnginePlugin en ejecución: {self._plugin_id}\n" +"El acceso se ha denegado." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4321,10 +4896,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}." @@ -4333,6 +4910,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}" @@ -4381,6 +4959,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Paquete desconocido" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}" @@ -4445,13 +5024,117 @@ msgctxt "@button" msgid "Updating..." msgstr "Actualizando..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Cargar firmware personalizado" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Cargando el trabajo de impresión a la impresora." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Cargar firmware personalizado" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Cargando el trabajo de impresión a la impresora." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4477,6 +5160,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidades, incluida la generación de Voronoi" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Actualización de la versión 2.1 a la 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Actualización de la versión 2.2 a la 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Actualización de la versión 2.5 a la 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Actualización de la versión 2.6 a la 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Actualización de la versión 2.7 a la 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Actualización de la versión 3.0 a la 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Actualización de la versión 3.2 a la 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Actualización de la versión 3.3 a la 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Actualización de la versión 3.4 a la 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Actualización de la versión 3.5 a la 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Actualización de la versión 4.0 a la 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Actualización de la versión 4.1 a la 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Actualización de la versión 4.11 a 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Actualización de la versión 4.3 a la 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Actualización de la versión 4.2 a la 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Actualización de la versión 4.3 a la 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Actualización de la versión 4.4 a la 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Actualización de la versión 4.5 a la 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Actualización de la versión 4.6.0 a la 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Actualización de la versión 4.6.2 a la 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Actualización de la versión 4.7 a la 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Actualización de la versión 4.8 a la 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Actualización de la versión 4.9 a la 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Actualización de la versión 5.2 a la 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Actualización de versión 5.3 a 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Actualización de versión 5.4 a 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impresoras en Digital Factory" @@ -4525,6 +5312,11 @@ msgctxt "@button" msgid "Want more?" msgstr "¿Desea obtener más información?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Advertencia" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera que pueda utilizar este tipo de calidad." @@ -4585,6 +5377,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Anchura (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escribe GCode en un archivo comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escribe GCode en un archivo." + msgctxt "@label" msgid "X (Width)" msgstr "X (anchura)" @@ -4597,6 +5397,10 @@ msgctxt "@label" msgid "X min" msgstr "X mín" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista de rayos X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista de rayos X" @@ -4609,6 +5413,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Archivo X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lector de X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (profundidad)" @@ -4626,19 +5434,31 @@ msgid "Yes" msgstr "Sí" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?" -msgstr[1] "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n" +"¿Seguro que desea continuar?" +msgstr[1] "" +"Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n" +"¿Seguro que desea continuar?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo." @@ -4649,7 +5469,10 @@ msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Re msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Ha personalizado algunos ajustes del perfil.\n¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\nTambién puede descartar los cambios para cargar los valores predeterminados de'%1'." +msgstr "" +"Ha personalizado algunos ajustes del perfil.\n" +"¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n" +"También puede descartar los cambios para cargar los valores predeterminados de'%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4679,9 +5502,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Su nueva impresora aparecerá automáticamente en Cura" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Su impresora {printer_name} podría estar conectada a través de la nube.\n Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Su impresora {printer_name} podría estar conectada a través de la nube.\n" +" Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" msgctxt "@label" msgid "Z" @@ -4739,6 +5567,7 @@ msgctxt "@label" msgid "version: %1" msgstr "versión: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta." @@ -4747,630 +5576,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Error al descargar los complementos {}" -msgid "Provides support for exporting Cura profiles." -msgstr "Ofrece asistencia para exportar perfiles de Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Escritor de perfiles de Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." - -msgctxt "name" -msgid "Slice info" -msgstr "Info de la segmentación" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Default" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lector de perfiles antiguos de Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Proporciona asistencia para leer archivos X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lector de X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite la escritura de paquetes de formato Ultimaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Escritor de UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Actualización de la versión 3.5 a la 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Actualización de la versión 4.1 a la 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Actualización de la versión 4.7 a la 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Actualización de la versión 4.9 a la 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Actualización de la versión 3.2 a la 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Actualización de la versión 2.7 a la 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Actualización de la versión 4.11 a 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Actualización de la versión 2.6 a la 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Actualización de la versión 4.8 a la 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Actualización de la versión 4.3 a la 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Actualización de la versión 3.3 a la 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Actualización de la versión 4.4 a la 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Actualización de la versión 2.5 a la 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Actualización de la versión 2.1 a la 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Actualización de la versión 4.2 a la 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Actualización de la versión 5.2 a la 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Actualización de la versión 4.0 a la 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Actualización de la versión 2.2 a la 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Actualización de la versión 3.4 a la 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Actualización de la versión 4.3 a la 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Actualización de versión 5.4 a 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Actualización de la versión 4.5 a la 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Actualización de la versión 3.0 a la 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Actualización de la versión 4.6.0 a la 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Actualización de la versión 4.6.2 a la 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Actualización de versión 5.3 a 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" - -msgctxt "name" -msgid "Post Processing" -msgstr "Posprocesamiento" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Proporciona la vista previa de los datos de las capas cortadas." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vista de simulación" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Proporciona asistencia para la importación de perfiles de Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lector de perfiles de Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Proporciona los ajustes por modelo." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Herramienta de ajustes por modelo" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Proporciona una fase de vista previa en Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de vista previa" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Borrador de soporte" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite cargar y visualizar archivos GCode." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lector de GCode" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Realice una copia de seguridad de su configuración y restáurela." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de dispositivo de salida de unidad extraíble" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "Flujo gradual de CuraEngine" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Permite leer y escribir perfiles de material basados en XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfiles de material" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acciones de la máquina UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Proporciona la vista de rayos X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista de rayos X" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestiona las conexiones de red de las impresoras UltiMaker conectadas." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Conexión en red de UltiMaker" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Acción Ajustes de la máquina" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Proporciona asistencia para leer archivos 3D." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lector Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Proporciona una fase de supervisión en Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de supervisión" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lector de imágenes" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Proporciona opciones a la máquina para actualizar el firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Actualizador de firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Backend de CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Proporciona una fase de preparación en Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparación" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Busca actualizaciones de firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Buscador de actualizaciones de firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escribe GCode en un archivo." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Escritor de GCode" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." - -msgctxt "name" -msgid "Model Checker" -msgstr "Comprobador de modelos" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Proporciona asistencia para leer archivos 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lector de 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impresión USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Proporciona asistencia para leer archivos AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lector de AMF" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lector de perfiles GCode" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Proporciona una vista de malla sólida normal." - -msgctxt "name" -msgid "Solid View" -msgstr "Vista de sólidos" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Registro de Sentry" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lee GCode de un archivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lector de GCode comprimido" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Lector de UFP" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Proporciona asistencia para escribir archivos 3MF." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Escritor de 3MF" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escribe GCode en un archivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Escritor de GCode comprimido" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Proporciona asistencia para exportar perfiles de Cura." - -msgctxt "@info:title" -msgid "Error" -msgstr "Error" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ajustes" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Más información" - -msgctxt "@title:tab" -msgid "General" -msgstr "General" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!" - -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Guardando" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "El archivo ya existe" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos los tipos compatibles ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "No se pudo guardar en {0}: {1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "Aceptar" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Advertencia" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impresoras" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Archivo guardado" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar eliminación" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos los archivos (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Equilibrado" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "El perfil equilibrado está diseñado para lograr un equilibrio entre la productividad, la calidad de la superficie, las propiedades mecánicas y la precisión dimensional." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Ofrece asistencia para exportar perfiles de Cura." diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index 415c94489d2..ed064fa9bea 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extrusor" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilador de refrigeración de impresión del extrusor" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extrusor" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "GCode final del extrusor" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posición final absoluta del extrusor" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posición de fin del extrusor sobre el eje X" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posición de fin del extrusor sobre el eje Y" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilador de refrigeración de impresión del extrusor" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "GCode inicial del extrusor" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posición de inicio absoluta del extrusor" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posición de inicio del extrusor sobre el eje X" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posición de inicio del extrusor sobre el eje Y" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Id. de la tobera" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desplazamiento de la tobera sobre el eje X" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Coordenada X del desplazamiento de la tobera." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Desplazamiento de la tobera sobre el eje Y" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Coordenada Y del desplazamiento de la tobera." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Coordenada X del desplazamiento de la tobera." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Coordenada Y del desplazamiento de la tobera." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 8e7ea8b9037..a3430f43ba9 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5470 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de máquina" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nombre del modelo de la impresora 3D." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Un factor que indica cuánto se comprime el filamento entre el alimentador y la cámara de la boquilla. Se utiliza para determinar cuán lejos debe avanzar el material para cambiar el filamento." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar versiones de la máquina" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea si las capas de la superficie superior del forro utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea si las capas superiores e inferiores utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Iniciar GCode" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se usa el ángulo predeterminado de 0 grados." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Finalizar GCode" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Los comandos de GCode que se ejecutarán justo al final separados por -\n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID del material" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Una lista de los valores enteros de las direcciones de línea. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados para las líneas y los patrones en zigzag y 45 grados para el resto de patrones)." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID del material. Este valor se define de forma automática." +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." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar a que la placa de impresión se caliente" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Una pieza completamente encerrada dentro de otra puede generar un borde exterior que toque el interior de la pieza exterior. Esto elimina cualquier borde dentro de esta distancia de los orificios internos." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar a la que la tobera se caliente" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posición de preparación absoluta del extrusor" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir temperaturas del material" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variación máxima de las capas de adaptación" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Elija si desea incluir comandos de temperatura de la tobera al inicio del Gcode. Si start_gcode ya contiene comandos de temperatura de la tobera, la interfaz de Cura desactivará este ajuste de forma automática." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamaño de la topografía de las capas de adaptación" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir temperatura de la placa de impresión" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamaño de pasos de variación de las capas de adaptación" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Elija si desea incluir comandos de temperatura de la placa de impresión al iniciar el Gcode. Si start_gcode ya contiene comandos de temperatura de la placa de impresión, la interfaz de Cura desactivará este ajuste de forma automática." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ancho de la máquina" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material.\n" +"Puede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Ancho (dimensión sobre el eje X) del área de impresión." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidad de la máquina" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendencia de adherencia" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro, como un porcentaje de los anchos de las líneas del forro y la pared más profunda. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier porcentaje superior al 50 % ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura de la máquina" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier valor superior a la mitad del ancho de la pared ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Altura (dimensión sobre el eje Z) del área de impresión." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta la densidad del relleno de la impresión." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma de la placa de impresión" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta la densidad de los techos y suelos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta la densidad de la estructura de soporte utilizada para generar las puntas de las ramas. Un valor más alto da como resultado mejores voladizos, pero los soportes son más difíciles de eliminar. Utilice el techo de soporte para valores muy altos o asegúrese de que la densidad del soporte sea igual de alta en la parte superior." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangular" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta la densidad de la estructura del soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material de placa de impresión" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta la colocación de las estructuras del soporte. La colocación se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte también se imprimirán en el modelo." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Material de la placa de impresión colocado en la impresora." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidrio" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Cuando la máquina cambia de un extrusor a otro, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Esto impide que el material rezumado quede fuera de la impresión." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminio" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Todo" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tiene una placa de impresión caliente" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Todos a la vez" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Indica si la máquina tiene una placa de impresión caliente." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tiene estabilización de temperatura del volumen de impresión" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar pared adicional" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar la retirada de las mallas" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternar direcciones de pared" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Le permite alternar las direcciones de las paredes entre capas o insertos. Útil para materiales que pueden acumular tensión, como para imprimir en metal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminio" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Escriba siempre la herramienta activa" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escriba la herramienta activa después de enviar comandos temporales a la herramienta inactiva. Requerido para la impresión de extrusión dual con Smoothie u otro firmware con comandos de herramientas modales." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Retraer siempre al desplazarse para empezar una pared exterior." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "El origen está centrado" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden compensar agujeros demasiado grandes; los valores negativos pueden compensar agujeros demasiado pequeños." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Indica si las coordenadas X/Y de la posición inicial del cabezal de impresión se encuentran en el centro del área de impresión." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de la primera capa. Un valor negativo puede compensar el aplastamiento de la primera capa, lo que se conoce como «pie de elefante»." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden suavizar las áreas del soporte y producir un soporte más robusto." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores habilitados" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Cantidad de desplazamiento aplicado a los techos del soporte." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diámetro exterior de la tobera" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Diámetro exterior de la punta de la tobera." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Un suplemento al radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más grueso será el perímetro de cubos pequeños junto al contorno del modelo." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longitud de la tobera" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malla antivoladizo" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Velocidad de retracción antirrezumado" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ángulo de la tobera" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidad de retracción antirrezumado" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longitud de la zona térmica" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "En las ubicaciones donde se tocan los modelos, genere una estructura de haz entrelazado. Esto mejora la adhesión entre los modelos, especialmente de aquellos impresos en materiales diferentes." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar partes impresas al desplazarse" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar control de temperatura de la tobera" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar soportes al desplazarse" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Posterior" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidad de calentamiento" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior izquierda" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidad (°C/s) de calentamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior derecha" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidad de enfriamiento" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidad (°C/s) de enfriamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Temperatura mínima en modo de espera" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambos se solapan" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Tiempo mínimo que un extrusor debe permanecer inactivo antes de que la tobera se enfríe. Para que pueda enfriarse hasta alcanzar la temperatura en modo de espera, el extrusor deberá permanecer inactivo durante un tiempo superior al establecido." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Capas inferiores" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Tipo de GCode" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Patrón inferior de la capa inicial" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Tipo de GCode que se va a generar." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distancia de expansión del forro inferior" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Anchura de retirada del forro inferior" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Grosor inferior" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidad de la rama" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diámetro de la rama" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ángulo del diámetro de la rama" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posición retraída de preparación de rotura" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidad de retracción de preparación de rotura" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparación de rotura" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posición retraída de rotura" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retracción de firmware" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidad de retracción de rotura" -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." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de rotura" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Calentador compartido de extrusores" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Descomponer el soporte en pedazos" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidad del ventilador del puente" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Los extrusores comparten la tobera" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Puente con varias capas" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Indica si los extrusores comparten una única tobera en lugar de que cada uno tenga la suya propia. Cuando se establece en true, se espera que la secuencia de comandos gcode de inicio de la impresora establezca todos los extrusores en un estado de retracción inicial conocido y mutuamente compatible (ninguno o un solo filamento que no se retrae); en este caso, el estado de retracción inicial se describe, por extrusor, mediante el parámetro \"machine_extruders_shared_nozzle_initial_retraction\"." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidad del segundo forro del puente" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retracción inicial de tobera compartida" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidad del ventilador del segundo forro del puente" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La cantidad de filamento de cada extrusor que se supone que se ha retirado de la punta de la tobera compartida al final de la secuencia de comandos gcode de inicio de la impresora; el valor debe ser igual o mayor que la longitud de la parte común de los conductos de la tobera." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flujo del segundo forro del puente" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas no permitidas" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidad del segundo forro del puente" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidad de forro del puente" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas no permitidas para la tobera" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flujo de forro del puente" -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." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidad de forro del puente" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono del cabezal de la máquina y del ventilador" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Umbral del soporte del forro del puente" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forma del cabezal de impresión. Estas son las coordenadas relativas a la posición del cabezal de impresión, que generalmente es la posición de su primer extrusor. Las dimensiones de la izquierda y de la parte delantera del cabezal de impresión deben ser coordenadas negativas." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidad máxima de relleno de puente escaso" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura del puente" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desplazamiento con extrusor" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posición de preparación absoluta del extrusor" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidad máxima sobre el eje X" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Velocidad máxima del motor de la dirección X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidad máxima sobre el eje Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Velocidad máxima del motor de la dirección Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidad máxima sobre el eje Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Velocidad máxima del motor de la dirección Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidad máxima E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Velocidad máxima del filamento." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleración máxima sobre el eje X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Aceleración máxima del motor de la dirección X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleración máxima de Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Aceleración máxima del motor de la dirección Y." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleración máxima de Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Aceleración máxima del motor de la dirección Z." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleración máxima del filamento" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleración máxima del motor del filamento." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleración predeterminada" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Impulso X-Y predeterminado" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Impulso predeterminado para el movimiento en el plano horizontal." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Impulso Z predeterminado" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Impulso predeterminado del motor de la dirección Z." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Impulso de filamento predeterminado" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Impulso predeterminado del motor del filamento." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pasos por milímetro (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pasos por milímetro (Y)" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidad del tercer forro del puente" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y." +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidad del ventilador del tercer forro del puente" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pasos por milímetro (Z)" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flujo del tercer forro del puente" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidad del tercer forro del puente" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pasos por milímetro (E)" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Depósito por inercia de la pared del puente" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flujo de pared del puente" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Tope de X en dirección positiva" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidad de pared del puente" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Borde" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Tope de Y en dirección positiva" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distancia del borde" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)." +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Margen de distancia del borde interior" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Tope de Z en dirección positiva" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Recuento de líneas de borde" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)." +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Borde solo en el exterior" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidad de alimentación mínima" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Sustituir soporte por borde" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidad mínima de movimiento del cabezal de impresión." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ancho del borde" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diámetro de la rueda del alimentador" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "El diámetro de la rueda que dirige el material hacia el alimentador." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de adherencia de la placa de impresión" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Escale la velocidad del ventilador a 0-1" +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo adherencia de la placa de impresión" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Escale la velocidad del ventilador para que esté entre 0 y 1 en lugar de entre 0 y 256." +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material de placa de impresión" -msgctxt "resolution label" -msgid "Quality" -msgstr "Calidad" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma de la placa de impresión" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)." +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura de la placa de impresión" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de capa" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura de la placa de impresión en la capa inicial" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Altura de cada capa en mm. Los valores más altos producen impresiones más rápidas con una menor resolución, los valores más bajos producen impresiones más lentas con una mayor resolución." +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura de volumen de impresión" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura de capa inicial" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centrar objeto" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Cambiar la geometría del modelo impreso de modo que se necesite un soporte mínimo. Los voladizos descendentes se convertirán en voladizos llanos y las áreas inclinadas caerán para ser más verticales." -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ancho de línea" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Ancho de una única línea. Generalmente, el ancho de cada línea se debería corresponder con el ancho de la tobera. Sin embargo, reducir este valor ligeramente podría producir mejores impresiones." +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidad de depósito por inercia" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ancho de línea de pared" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volumen de depósito por inercia" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ancho de una sola línea de pared." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Depósito por inercia sustituye la última parte de una trayectoria de extrusión por una trayectoria de desplazamiento. El material rezumado se utiliza para imprimir la última parte de la trayectoria de extrusión con el fin de reducir el encordado." -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ancho de línea de la pared exterior" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo Peinada" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle." +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores o peinar solo en el relleno." -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ancho de línea de pared(es) interna(s)" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de la línea de comandos" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ancho de línea superior/inferior" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ancho de una sola línea superior/inferior." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ancho de línea de relleno" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ancho de una sola línea de relleno." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ancho de línea de falda/borde" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Ancho de una sola línea de falda o borde." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ancho de línea de soporte" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ancho de una sola línea de estructura de soporte." +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concéntrico" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ancho de línea de interfaz de soporte" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ángulo del soporte cónico" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Ancho de una sola línea de techo o suelo de soporte." +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Anchura mínima del soporte cónico" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ancho de línea del techo de soporte" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar líneas de relleno" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Ancho de una sola línea de techo de soporte." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar polígonos de relleno" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ancho de línea del suelo de soporte" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar líneas del soporte" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Ancho de una sola línea de suelo de soporte." +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar zigzags del soporte" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ancho de línea de la torre auxiliar" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar polígonos superiores/inferiores" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Ancho de una sola línea de la torre auxiliar." +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Conectar las trayectorias de polígonos cuando están próximas entre sí. Habilitar esta opción reduce considerablemente el tiempo de desplazamiento en los patrones de relleno que constan de varios polígonos cerrados." -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ancho de línea de la capa inicial" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag." -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma." +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Unión de los extremos de las líneas de soporte. Al habilitar este ajuste, puede conseguir que el soporte sea más sólido y reducir la infraextrusión, pero se necesitará más material." -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior." -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor de pared" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura se realice en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior. «Costura inteligente» permite realizar la costura en ambas esquinas, pero opta con más frecuencia por las esquinas interiores, si resulta oportuno." -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple." +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Multiplicar cada línea de relleno. Las líneas adicionales no se cruzan entre sí, sino que se evitan entre ellas. Esto consigue un relleno más rígido, pero incrementa el tiempo de impresión y el uso de material." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor de pared exterior" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidad de enfriamiento" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple." +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeración" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor de pared interior" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeración" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple." +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Grosor de la pared" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Grosor de las paredes en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes." +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Recuento de líneas de pared" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamaño de las bolsas 3D en cruces" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero." +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagen de densidad de relleno cruzada para soporte" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longitud de transición de la pared" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagen de densidad de relleno cruzada" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Cuando se pasa de un número de paredes a otro a medida que la pieza se hace más delgada, se asigna una determinada cantidad de espacio para dividir o unir las líneas de contorno." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material cristalino" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Recuento de distribución de pared" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "El número de paredes, contadas desde el centro, en las que se distribuirá la variación. Los valores más bajos indican que el ancho de las paredes externas no cambia." +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisión cúbica" -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ángulo de umbral de transición de pared" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Perímetro de la subdivisión cúbica" -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Cuándo crear transiciones entre números de pared pares e impares. Una forma de cuña con un ángulo mayor que esta configuración no tiene transacciones y no se imprimirán paredes en el centro para rellenar el espacio restante. Reducir esta configuración reduce el número y la longitud de estas paredes centrales, pero puede dejar espacios o sobreextrusión." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Cortar malla" -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distancia del filtro de transición a la pared" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia." +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleración predeterminada" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margen del filtro de transición de pared" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura predeterminada de la placa de impresión" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Evite la transición de ida y vuelta entre una pared extra y una menos. Este margen amplía el rango de anchos de línea después de [Ancho mínimo de línea perimetral - Margen, 2 * Ancho mínimo de línea perimetral + Margen]. Aumentar este margen reduce el número de transiciones, lo que reduce el número de arranques y paradas de la extrusión y el tiempo de recorrido. No obstante, las grandes variaciones en el ancho de la línea pueden provocar problemas de subextrusión o sobreextrusión." +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Impulso de filamento predeterminado" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distancia de pasada de la pared exterior" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura de impresión predeterminada" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z." +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Impulso X-Y predeterminado" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Entrante en la pared exterior" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Impulso Z predeterminado" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores." +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Impulso predeterminado para el movimiento en el plano horizontal." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimizar el orden de impresión de paredes" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Impulso predeterminado del motor de la dirección Z." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización. La primera capa no está optimizada al elegir el borde como el tipo de adhesión de la placa de impresión." +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Impulso predeterminado del motor del filamento." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Orden de paredes" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detección de puentes y modificación de los ajustes de velocidad de impresión, flujo y ventilador durante la impresión de puentes." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." msgstr "Determina el orden de impresión de las paredes. Empezar imprimiendo las paredes exteriores ayuda a la precisión dimensional, ya que evita que los defectos de las paredes interiores se propaguen al exterior. Sin embargo, si las imprime más tarde, podrá apilarlas mejor cuando se impriman los voladizos. Cuando hay una cantidad impar de paredes interiores totales, la «última línea central» siempre se imprime en último lugar." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Del interior al exterior" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de relleno superpuestas. Las áreas en las que se superponen varias mallas de relleno tomarán la configuración de la malla con el rango más alto. Una malla de relleno con un rango superior modificará el relleno de las mallas de relleno con un rango inferior y mallas normales." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Del exterior al interior" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar pared adicional" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime una pared adicional cada dos capas. De este modo el relleno se queda atrapado entre estas paredes adicionales, lo que da como resultado impresiones más sólidas." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento del diámetro para el modelo" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral." +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diámetro que cada rama trata de alcanzar al llegar a la placa de impresión. Mejora la adherencia a la plataforma." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral uniforme" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Opciones diferentes que ayudan a mejorar tanto la extrusión como la adherencia a la placa de impresión. El borde agrega una zona plana de una sola capa alrededor de la base del modelo para impedir que se deforme. La balsa agrega una rejilla gruesa con un techo por debajo del modelo. La falda es una línea impresa alrededor del modelo, pero que no está conectada al modelo." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "El ancho de línea mínimo para paredes poligonales normales. Este ajuste determina a qué espesor de modelo pasamos de imprimir una sola línea de perímetro delgada a imprimir dos líneas de perímetro. Un ancho mínimo más alto de la línea perimetral par conduce a un ancho máximo más alto de la línea perimetral impar. El ancho máximo de la línea perimetral par se calcula como el ancho de la línea perimetral exterior + 0,5 * el ancho mínimo de la línea perimetral impar." +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas no permitidas" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral impar" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distancia entre las líneas de relleno impresas. Este ajuste se calcula por la densidad del relleno y el ancho de la línea de relleno." -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "La anchura mínima de línea para las paredes tipo polilínea para rellenar el hueco de la línea central. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de pared a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea de pared impar conduce a un ancho máximo más alto de la línea de pared par. El ancho máximo de línea de pared impar se calcula como el doble del ancho mínimo de línea de pared par." +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir paredes finas" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distancia entre las líneas de suelo de soporte impresas. Este ajuste se calcula por la densidad del suelo del soporte pero se puede ajustar de forma independiente." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera." +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distancia entre las líneas de techo de soporte impresas. Este ajuste se calcula por la densidad del techo del soporte pero se puede ajustar de forma independiente." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamaño mínimo de la característica" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distancia desde la parte superior del soporte a la impresión." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distancia de un desplazamiento insertado después de cada línea de relleno, para que el relleno se adhiera mejor a las paredes. Esta opción es similar a la superposición del relleno, pero sin extrusión y solo en un extremo de la línea de relleno." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y." -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espesor mínimo de características delgadas. Las características del modelo que sean más delgadas que este valor no se imprimirán, mientras que las características más gruesas que el tamaño mínimo de la característica se estirarán hasta el ancho mínimo de la línea perimetral." +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." -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral delgada" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y." -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Ancho de la pared que reemplazará las características delgadas (según el tamaño mínimo de la característica) del modelo. Si el ancho mínimo de la línea perimetral es más delgado que el grosor de la característica, la pared se volverá tan gruesa como la propia característica." +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y." -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansión horizontal" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden compensar agujeros demasiado grandes; los valores negativos pueden compensar agujeros demasiado pequeños." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansión horizontal de la capa inicial" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "No genere áreas con un relleno inferior a este (utilice forro)." -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de la primera capa. Un valor negativo puede compensar el aplastamiento de la primera capa, lo que se conoce como «pie de elefante»." +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura del parabrisas" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansión horizontal de orificios" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitación del parabrisas" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Cuando es mayor que cero, la Expansión horizontal de agujeros es la cantidad de desplazamiento aplicada a todos los agujeros de cada capa. Los valores positivos aumentan el tamaño de los agujeros y los negativos lo reducen. Cuando esta configuración está activada, se puede ajustar aún más con el Diámetro máximo de expansión horizontal de agujeros." +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distancia X/Y del parabrisas" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diámetro máximo de la expansión horizontal de los orificios" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malla de soporte desplegable" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Cuando es mayor que cero, la expansión horizontal de los orificios se aplica gradualmente en orificios pequeños (los orificios pequeños se expanden más). Cuando se establezca en cero, la expansión horizontal de los orificios se aplicará a todos ellos. Los orificios mayores que el diámetro máximo de expansión horizontal de los orificios no se expanden." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusión doble" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alineación de costuras en Z" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Punto de partida de cada trayectoria en una capa. Cuando las trayectorias en capas consecutivas comienzan en el mismo punto, puede aparecer una costura vertical en la impresión. Cuando se alinean cerca de una ubicación especificada por el usuario, es más fácil eliminar la costura. Si se colocan aleatoriamente, las inexactitudes del inicio de las trayectorias se notarán menos. Si se toma la trayectoria más corta, la impresión será más rápida." +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activar control de aceleración" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificada por el usuario" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar ajustes del puente" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Más corta" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar depósito por inercia" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatoria" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activar soporte cónico" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Esquina más pronunciada" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar parabrisas" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posición de costura en Z" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Activar movimiento fluido" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa." +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar alisado" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior izquierda" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activar control de impulso" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Posterior" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar control de temperatura de la tobera" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior derecha" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activar placa de rezumado" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Derecha" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activar gotas de cebado" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Delantera derecha" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activar la torre auxiliar" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Delantera" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activar refrigeración de impresión" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Delantera izquierda" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar la retracción" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Izquierda" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar borde de soporte" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X de la costura Z" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar suelo del soporte" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa." +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar interfaz del soporte" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y de la costura Z" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar techo del soporte" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa." +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar aceleración de desplazamiento" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferencia de esquina de costura" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activar impulso de desplazamiento" -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura se realice en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior. «Costura inteligente» permite realizar la costura en ambas esquinas, pero opta con más frecuencia por las esquinas interiores, si resulta oportuno." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera." -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Ninguno" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado." -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar costura" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar el impulso del cabezal de impresión cuando la velocidad del eje X o Y cambia. Aumentar el impulso puede reducir el tiempo de impresión a costa de la calidad de impresión." -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Mostrar costura" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite ajustar la aceleración del cabezal de impresión. Aumentar las aceleraciones puede reducir el tiempo de impresión a costa de la calidad de impresión." -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar o mostrar costura" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Habilita ventiladores de refrigeración mientras se imprime. Los ventiladores mejoran la calidad de la impresión en capas con menores tiempos de capas y puentes o voladizos." -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Costura inteligente" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Finalizar GCode" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costuras relativas en Z" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longitud de purga del extremo del filamento" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Cuando se habilita, las coordenadas de la costura en z son relativas al centro de cada pieza. De lo contrario, las coordenadas definen una posición absoluta en la placa de impresión." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidad de purga del extremo del filamento" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior o inferior" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior o inferior" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "En todos sitios" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusiva" -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor de la superficie superior del forro" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple." +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Mostrar costura" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Capas de la superficie superior del forro" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Cosido amplio" -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "El número de capas del nivel superior del forro. Normalmente es suficiente con una sola capa para generar superficies superiores con mayor calidad." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando el agujero con polígonos que se tocan. Esta opción puede agregar una gran cantidad de tiempo de procesamiento." -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ancho de línea de la superficie superior del forro" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Recuento de líneas de pared adicional" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Ancho de una sola línea de las áreas superiores de la impresión." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Recuento de paredes adicionales de forro" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patrón de la superficie superior del forro" +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." -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "El patrón de las capas de nivel superior." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Calentador compartido de extrusores" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Orden monotónica de la superficie superior" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Los extrusores comparten la tobera" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de la velocidad de enfriamiento de la extrusión" -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direcciones de línea de la superficie superior del forro" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Factor de corrección del ancho de extrusión basado en la velocidad. Al 0 % de velocidad de movimiento se mantiene constante a la velocidad de impresión. Al 100 % de velocidad de movimiento se ajusta para mantener el flujo constante (en mm³/s), es decir, las líneas cuyo ancho es la mitad del ancho normal se imprimen el doble de rápido y las líneas que tienen el doble de ancho se imprimen a la mitad de la velocidad. Un valor superior al 100 % puede ayudar a compensar la mayor presión necesaria para extruir líneas anchas." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea si las capas de la superficie superior del forro utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidad del ventilador" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor superior/inferior" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Alteración de velocidad del ventilador" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Los contornos de las partes que sean más cortos que esta longitud se imprimen utilizando la función Velocidad de pequeñas partes." -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Grosor superior/inferior" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Características que aún no se han desarrollado por completo." -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Grosor de las capas superiores/inferiores en la impresión. Este valor dividido por la altura de la capa define el número de capas superiores/inferiores." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diámetro de la rueda del alimentador" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Grosor superior" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impresión final" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Grosor de las capas superiores en la impresión. Este valor dividido por la altura de capa define el número de capas superiores." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retracción de firmware" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Capas superiores" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor del soporte de la primera capa" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flujo" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Grosor inferior" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporción de ecualización de flujo" -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Grosor de las capas inferiores en la impresión. Este valor dividido por la altura de capa define el número de capas inferiores." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Factor de compensación del caudal" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Capas inferiores" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal" -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de flujo y temperatura" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Capas inferiores iniciales" +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." -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." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensación de flujo en las líneas inferiores de la primera capa" -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patrón superior/inferior" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensación de flujo en líneas de relleno." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Patrón de las capas superiores/inferiores." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensación de flujo en líneas de techo o suelo de soporte." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensación de flujo en líneas de la torre auxiliar." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensación de flujo en líneas de falda o borde." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Patrón inferior de la capa inicial" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensación de flujo en líneas de suelo de soporte." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa." +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensación de flujo en líneas de techo de soporte." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensación de flujo en líneas de estructura de soporte." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensación de flujo en la línea de pared más externa de la primera capa." -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensación de flujo en la línea de pared más externa." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar polígonos superiores/inferiores" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior." +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Orden monotónica superior e inferior" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensación de flujo en las líneas superiores o inferiores." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensación de caudal en líneas de pared para todas, excepto la más exterior, pero solo para la primera capa." -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa." -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direcciones de línea superior/inferior" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensación de flujo en líneas de pared." -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea si las capas superiores e inferiores utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor." -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Anchura superior/​inferior pequeña" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ángulo de movimiento fluido" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Las zonas pequeñas superiores/inferiores se rellenan con paredes en lugar de con el patrón predeterminado superior/inferior. Esto ayuda a evitar movimientos bruscos. Está desactivado para la capa superior (expuesta al aire) por defecto. (Consulte: \"Zonas pequeñas superiores/inferiores en superficie\")." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Cambio de distancia del movimiento fluido" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Zonas pequeñas superiores/inferiores en superficie" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Pequeña distancia del movimiento fluido" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longitud de purga de descarga" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sin forro en huecos en Z" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidad de purga de descarga" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Cuando el modelo tiene pequeños huecos verticales de solo unas pocas capas, normalmente suele haber forro alrededor de ellas en el espacio estrecho. Active este ajuste para no generar forro si el hueco vertical es muy pequeño. Esto mejora el tiempo de impresión y de segmentación, pero deja el relleno expuesto al aire." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral." -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Recuento de paredes adicionales de forro" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Delantera" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Delantera izquierda" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar alisado" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Delantera derecha" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Pasar por la superficie superior una vez más, pero esta vez extruyendo muy poco material, para derretir la capa superior del plástico y crear una superficie más lisa. La presión de la cámara en la boquilla se mantiene alta para que los pliegues de la superficie se llenen de material." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Planchar solo la capa superior" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Forro difuso" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidad del forro difuso" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Patrón de alisado" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Forro difuso exterior únicamente" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "El patrón que se usará para el alisado de las superficies superiores." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distancia de punto del forro difuso" -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Grosor del forro difuso" -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Tipo de GCode" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Orden de planchado monotónico" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Los comandos de GCode que se ejecutarán justo al final separados por -\n" +"." -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Los comandos de GCode que se ejecutarán justo al inicio separados por - \n" +"." -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaciado de líneas del alisado" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID del material. Este valor se define de forma automática." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distancia entre las líneas del alisado." +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura del puente" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flujo de alisado" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generar estructura entrelazada" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Cantidad de material (relativa a la línea del forro normal) que se extruye durante el alisado. Dejar la tobera llena permite rellenar algunas grietas de la superficie, pero llenarla demasiado puede provocar la sobrextrusión y afectar a la superficie." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generar soporte" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserción de alisado" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genera un borde dentro de las zonas de relleno del soporte de la primera capa. Este borde se imprime por debajo del soporte y no a su alrededor. Si habilita esta configuración aumentará la adhesión del soporte a la placa de impresión." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Genera una gruesa interfaz entre el modelo y el soporte. De esta forma, se crea un forro en la parte superior del soporte, donde se imprime el modelo, y en la parte inferior del soporte, donde se apoya el modelo." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidad de alisado" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genere una placa densa de material entre la parte inferior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Velocidad a la que pasa por encima de la superficie superior." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genere una placa densa de material entre la parte superior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleración del alisado" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "La aceleración a la que se produce el alisado." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidrio" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Impulso de alisado" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Pasar por la superficie superior una vez más, pero esta vez extruyendo muy poco material, para derretir la capa superior del plástico y crear una superficie más lisa. La presión de la cámara en la boquilla se mantiene alta para que los pliegues de la superficie se llenen de material." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Cambio en la velocidad instantánea máxima durante el alisado." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura necesaria de los pasos de relleno" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentaje de superposición del forro" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Pasos de relleno necesarios" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro, como un porcentaje de los anchos de las líneas del forro y la pared más profunda. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier porcentaje superior al 50 % ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura necesaria de los escalones de relleno de soporte" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Superposición del forro" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Escalones de relleno de soporte" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier valor superior a la mitad del ancho de la pared ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduzca gradualmente a esta temperatura cuando imprima a velocidades bajas debido al tiempo mínimo de capa." -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Anchura de retirada del forro" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior/inferior en las superficies inclinadas del modelo." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Anchura de retirada del forro superior" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior en las superficies inclinadas del modelo." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Rejilla" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Anchura de retirada del forro inferior" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas inferiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro inferior en las superficies inclinadas del modelo." +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar las paredes exteriores" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distancia de expansión del forro" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "La distancia a la que los forros se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de las capas vecinas se adhieran mejor al forro. Los valores inferiores ahorran material." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distancia de expansión del forro superior" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tiene estabilización de temperatura del volumen de impresión" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "La distancia a la que los forros superiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de la capa superior se adhieran mejor al forro. Los valores inferiores ahorran material." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tiene una placa de impresión caliente" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distancia de expansión del forro inferior" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidad de calentamiento" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "La distancia a la que los forros inferiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que el forro se adhiera mejor a las paredes de la capa inferior. Los valores inferiores ahorran material." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longitud de la zona térmica" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ángulo máximo de expansión del forro" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas." -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "El revestimiento superior e inferior no se expandirá cuando las superficies superior e inferior del objeto tengan un ángulo mayor que este valor. Esto evita la expansión de las pequeñas áreas de revestimiento que se crean cuando la superficie del modelo tiene una pendiente casi vertical. Un ángulo de 0° es horizontal y no provoca la extensión de ningún revestimiento exterior, mientras que un ángulo de 90 ° es vertical y provoca la extensión de todo el revestimiento exterior." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar costura" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Anchura de expansión mínima del forro" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar o mostrar costura" -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." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansión horizontal de orificios" -msgctxt "infill label" -msgid "Infill" -msgstr "Relleno" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diámetro máximo de la expansión horizontal de los orificios" -msgctxt "infill description" -msgid "Infill" -msgstr "Relleno" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Los agujeros y contornos de las piezas con un diámetro menor que estos se imprimen utilizando la función Velocidad de pequeñas partes." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor del relleno" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansión horizontal" -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala horizontal para la compensación de la contracción" -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidad de relleno" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta la densidad del relleno de la impresión." +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distancia de línea de relleno" +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." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distancia entre las líneas de relleno impresas. Este ajuste se calcula por la densidad del relleno y el ancho de la línea de relleno." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Patrón de relleno" +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." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "La velocidad de cebado del material después de cambiar a otro material." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisión cúbica" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Cúbico bitruncado" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "La cantidad de material que se va a utilizará para purgar el material que había antes en la tobera (en longitud del filamento) al sustituir una bobina vacía por una bobina nueva del mismo material." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "La cantidad de material que se va a utilizar para purgar el material que había antes en la tobera (en longitud del filamento) cuando se cambia a otro material." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La cantidad de filamento de cada extrusor que se supone que se ha retirado de la punta de la tobera compartida al final de la secuencia de comandos gcode de inicio de la impresora; el valor debe ser igual o mayor que la longitud de la parte común de los conductos de la tobera." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Cómo interactuarán la interfaz y el soporte en caso de superposición. Actualmente, solo implantado para techos de soporte." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Qué altura debe tener una rama si se coloca sobre el modelo. Evita la formación de pequeñas gotas de soporte. Esta configuración se ignora cuando una rama está aguantando un techo de soporte." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" +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." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Rayos" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Si un segmento de la trayectoria de la herramienta se desvía más de este ángulo del movimiento general, se suaviza." -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ángulo del voladizo de relleno de rayos" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Si esta opción está habilitada, la segunda y tercera capa por encima del aire se imprimen utilizando los siguientes ajustes. De lo contrario, estas capas se imprimen utilizando los ajustes habituales." -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ángulo de recorte de relleno de rayos" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia." -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ángulo de enderezamiento de rayos" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ángulo de sujeción de relleno de rayos" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar líneas de relleno" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir temperatura de la placa de impresión" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir temperaturas del material" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar polígonos de relleno" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" + +msgctxt "infill description" +msgid "Infill" +msgstr "Relleno" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Conectar las trayectorias de polígonos cuando están próximas entre sí. Habilitar esta opción reduce considerablemente el tiempo de desplazamiento en los patrones de relleno que constan de varios polígonos cerrados." +msgctxt "infill label" +msgid "Infill" +msgstr "Relleno" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direcciones de línea de relleno" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleración del relleno" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Una lista de los valores enteros de las direcciones de línea. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados para las líneas y los patrones en zigzag y 45 grados para el resto de patrones)." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Relleno antes que las paredes" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Desplazamiento del relleno sobre el eje X" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidad de relleno" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor del relleno" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Desplazamiento del relleno sobre el eje Y" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flujo de relleno" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Impulso de relleno" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Comienzo de relleno aleatorio" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Grosor de la capa de relleno" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Determine qué línea de relleno se imprime primero. Esto evita que un segmento se convierta en el más fuerte, pero a expensas de un movimiento adicional." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direcciones de línea de relleno" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distancia de línea de relleno" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Multiplicador de línea de relleno" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Multiplicar cada línea de relleno. Las líneas adicionales no se cruzan entre sí, sino que se evitan entre ellas. Esto consigue un relleno más rígido, pero incrementa el tiempo de impresión y el uso de material." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Recuento de líneas de pared adicional" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ancho de línea de relleno" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material.\nPuede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malla de relleno" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Perímetro de la subdivisión cúbica" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ángulo de voladizo de relleno" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Un suplemento al radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más grueso será el perímetro de cubos pequeños junto al contorno del modelo." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Superposición del relleno" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Porcentaje de superposición del relleno" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "La cantidad de superposición entre el relleno y las paredes son un porcentaje del ancho de la línea de relleno. Una ligera superposición permite que las paredes estén firmemente unidas al relleno." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Patrón de relleno" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Superposición del relleno" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidad de relleno" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Soporte de relleno" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimización del desplazamiento del relleno" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Distancia de pasada de relleno" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distancia de un desplazamiento insertado después de cada línea de relleno, para que el relleno se adhiera mejor a las paredes. Esta opción es similar a la superposición del relleno, pero sin extrusión y solo en un extremo de la línea de relleno." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Desplazamiento del relleno sobre el eje X" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Grosor de la capa de relleno" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Desplazamiento del relleno sobre el eje Y" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Grosor por capa de material de relleno. Este valor siempre debe ser un múltiplo de la altura de la capa y, de lo contrario, se redondea." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Capas inferiores iniciales" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Pasos de relleno necesarios" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidad inicial del ventilador" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleración de la capa inicial" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura necesaria de los pasos de relleno" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flujo inferior de la capa inicial" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diámetro de la capa inicial" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Relleno antes que las paredes" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flujo de capa inicial" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura de capa inicial" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de relleno mínima" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansión horizontal de la capa inicial" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "No genere áreas con un relleno inferior a este (utilice forro)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flujo de pared interior de la capa inicial" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Soporte de relleno" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Impulso de capa inicial" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimir estructuras de relleno solo cuando se deban soportar las partes superiores del modelo. Habilitar esto reduce el tiempo de impresión y el uso de material, pero ocasiona que la resistencia del objeto no sea uniforme." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ancho de línea de la capa inicial" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ángulo de voladizo de relleno" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flujo de pared exterior de la capa inicial" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "El ángulo mínimo de los voladizos internos para los que se agrega relleno. A partir de un valor de 0 º todos los objetos estarán totalmente rellenos, a 90 º no se proporcionará ningún relleno." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleración de impresión de la capa inicial" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espesor de soporte de los bordes del forro" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Impulso de impresión de capa inicial" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "El grosor del relleno extra que soporta los bordes del forro." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidad de impresión de la capa inicial" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Capas de soporte de los bordes del forro" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidad de capa inicial" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "El número de capas de relleno que soportan los bordes del forro." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distancia de línea del soporte de la capa inicial" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleración de desplazamiento de la capa inicial" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Impulso de desplazamiento de capa inicial" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidad de desplazamiento de la capa inicial" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Superposición de las capas iniciales en Z" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impresión inicial" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleración de pared interior" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor de pared interior" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Impulso de pared interior" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidad de pared interior" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flujo de pared o paredes interiores" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ancho de línea de pared(es) interna(s)" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura de impresión predeterminada" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La temperatura predeterminada que se utiliza para imprimir. Debería ser la temperatura básica del material. Las demás temperaturas de impresión deberían calcularse a partir de este valor" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Del interior al exterior" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura de volumen de impresión" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Líneas de interfaz preferidas" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interfaz preferida" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de impresión" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Recuento de capas de haz entrelazado" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Temperatura de la impresión." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ancho del haz entrelazado" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de impresión de la capa inicial" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distancia a los límites de entrelazado" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidad del entrelazado" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impresión inicial" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientación de estructura entrelazada" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Planchar solo la capa superior" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impresión final" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleración del alisado" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flujo de alisado" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de la velocidad de enfriamiento de la extrusión" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserción de alisado" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Velocidad adicional a la que se enfría la tobera durante la extrusión. El mismo valor se utiliza para indicar la velocidad de calentamiento perdido cuando se calienta durante la extrusión." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Impulso de alisado" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura predeterminada de la placa de impresión" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaciado de líneas del alisado" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "La temperatura predeterminada que se utiliza en placa de impresión caliente. Debería ser la temperatura básica de una placa de impresión. Las demás temperaturas de impresión deberían calcularse a partir de este valor" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Patrón de alisado" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura de la placa de impresión" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidad de alisado" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la placa de impresión no se calentará." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "El origen está centrado" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura de la placa de impresión en la capa inicial" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Es material de soporte" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa. Si el valor es 0, la placa de impresión no se calentará en la primera capa." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendencia de adherencia" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Este material se utiliza normalmente como material de soporte durante la impresión." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendencia de adherencia de la superficie." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Use solo los contornos de las piezas, no los orificios de las piezas." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energía de la superficie" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantener caras desconectadas" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energía de la superficie." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de capa" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala para la compensación de la contracción" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X de inicio de capa" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar la contracción del material a medida que se enfría, el modelo se escala con este factor." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y de inicio de capa" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala horizontal para la compensación de la contracción" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección XY (horizontalmente)." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Grosor de la capa intermedia de la balsa." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala vertical para la compensación de la contracción" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Grosor de capa de las capas superiores de la balsa." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección Z (verticalmente)." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Omitir una conexión entre líneas de soporte una vez cada N milímetros a fin de lograr que la estructura de soporte resulte más fácil de descomponer." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material cristalino" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Izquierda" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar el cabezal" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Velocidad de retracción antirrezumado" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Rayos" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ángulo del voladizo de relleno de rayos" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidad de retracción antirrezumado" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ángulo de recorte de relleno de rayos" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ángulo de enderezamiento de rayos" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posición retraída de preparación de rotura" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ángulo de sujeción de relleno de rayos" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Alcance límite de la rama" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidad de retracción de preparación de rotura" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" -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." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparación de rotura" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ancho de línea" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posición retraída de rotura" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidad de retracción de rotura" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de rotura" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Líneas" -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." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidad de purga de descarga" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "La velocidad de cebado del material después de cambiar a otro material." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Líneas" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longitud de purga de descarga" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "La cantidad de material que se va a utilizar para purgar el material que había antes en la tobera (en longitud del filamento) cuando se cambia a otro material." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidad de purga del extremo del filamento" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidad de la máquina" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono del cabezal de la máquina y del ventilador" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longitud de purga del extremo del filamento" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura de la máquina" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "La cantidad de material que se va a utilizará para purgar el material que había antes en la tobera (en longitud del filamento) al sustituir una bobina vacía por una bobina nueva del mismo material." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de máquina" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duración máxima de estacionamiento" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ancho de la máquina" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Factor de desplazamiento sin carga" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Convertir voladizo en imprimible" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Un factor que indica cuánto se comprime el filamento entre el alimentador y la cámara de la boquilla. Se utiliza para determinar cuán lejos debe avanzar el material para cambiar el filamento." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flujo" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flujo de pared" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensación de flujo en líneas de pared." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flujo de pared exterior" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Consiga las mallas más adecuadas para la impresión 3D." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensación de flujo en la línea de pared más externa." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flujo de pared o paredes interiores" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flujo superior o inferior" +msgctxt "material description" +msgid "Material" +msgstr "Material" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensación de flujo en las líneas superiores o inferiores." +msgctxt "material label" +msgid "Material" +msgstr "Material" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flujo de forro de superficie superior" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID del material" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volumen de material entre limpiezas" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flujo de relleno" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distancia de peinada máxima sin retracción" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensación de flujo en líneas de relleno." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleración máxima sobre el eje X" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flujo de falda/borde" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleración máxima de Y" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensación de flujo en líneas de falda o borde." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleración máxima de Z" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flujo de soporte" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ángulo máximo de la rama" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensación de flujo en líneas de estructura de soporte." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desviación máxima" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flujo de interfaz de soporte" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desviación máxima del área de extrusión" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensación de flujo en líneas de techo o suelo de soporte." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidad máxima del ventilador" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flujo de techo de soporte" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleración máxima del filamento" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensación de flujo en líneas de techo de soporte." +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ángulo máximo del modelo" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flujo de suelo de soporte" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima del agujero en voladizo" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duración máxima de estacionamiento" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensación de flujo en líneas de suelo de soporte." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolución máxima" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flujo de la torre auxiliar" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Recuento máximo de retracciones" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensación de flujo en líneas de la torre auxiliar." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ángulo máximo de expansión del forro" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flujo de capa inicial" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidad máxima E" -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." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidad máxima sobre el eje X" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Flujo de pared interior de la capa inicial" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidad máxima sobre el eje Y" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensación de caudal en líneas de pared para todas, excepto la más exterior, pero solo para la primera capa." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidad máxima sobre el eje Z" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Flujo de pared exterior de la capa inicial" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diámetro máximo soportado por la torre" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensación de flujo en la línea de pared más externa de la primera capa." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolución de desplazamiento máximo" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Flujo inferior de la capa inicial" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Aceleración máxima del motor de la dirección X" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensación de flujo en las líneas inferiores de la primera capa" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Aceleración máxima del motor de la dirección Y." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura en modo de espera" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Aceleración máxima del motor de la dirección Z." -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." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleración máxima del motor del filamento." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Es material de soporte" +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 "La máxima densidad de relleno que se considera escasa. El forro sobre el relleno escaso se considera sin soporte y, por lo tanto, se puede tratar como un forro de puente." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Este material se utiliza normalmente como material de soporte durante la impresión." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Diámetro máximo en las direcciones X/Y de una pequeña área que debe ser soportada por una torre de soporte especializada." -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidad" +msgctxt "max_extrusion_before_wipe description" +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 "Material máximo que puede extruirse antes de que se inicie otra limpieza de la tobera. Si este valor es inferior al volumen de material necesario en una capa, el ajuste no tiene efecto en esa capa, es decir, se limita a una limpieza por capa." -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidad" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Superponer mallas combinadas" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidad de impresión" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correcciones de malla" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidad a la que se realiza la impresión." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posición X en la malla" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidad de relleno" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posición Y en la malla" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidad a la que se imprime el relleno." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posición Z en la malla" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidad de pared" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rango de procesamiento de la malla" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidad a la que se imprimen las paredes." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz de rotación de la malla" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidad de pared exterior" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Media" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Velocidad a la que se imprimen las paredes exteriores. Imprimir la pared exterior a una velocidad inferior mejora la calidad final del forro. Sin embargo, una gran diferencia entre la velocidad de la pared interior y de la pared exterior afectará negativamente a la calidad." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Ancho de molde mínimo" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidad de pared interior" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Temperatura mínima en modo de espera" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longitud mínima de la pared del puente" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidad de la superficie superior del forro" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral uniforme" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Ventana de distancia mínima de extrusión" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidad superior/inferior" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamaño mínimo de la característica" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidad a la que se imprimen las capas superiores/inferiores." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidad de alimentación mínima" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidad de soporte" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura mínima para el modelo" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Velocidad a la que se imprime la estructura de soporte. Imprimir el soporte a una mayor velocidad puede reducir considerablemente el tiempo de impresión. La calidad de superficie de la estructura de soporte no es importante, ya que se elimina después de la impresión." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de relleno mínima" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidad de relleno del soporte" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tiempo mínimo de capa" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral impar" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidad de interfaz del soporte" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferencia mínima de polígono" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Anchura de expansión mínima del forro" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidad del techo del soporte" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidad mínima" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área del soporte mínima" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidad del suelo del soporte" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área de los suelos del soporte mínima" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Velocidad a la que se imprimen los suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la adhesión del soporte en la parte superior del modelo." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área de la interfaz de soporte mínima" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidad de la torre auxiliar" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área de los techos del soporte mínima" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distancia X/Y mínima del soporte" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Velocidad a la que se imprime la torre auxiliar. Imprimir la torre auxiliar a una velocidad inferior puede conseguir más estabilidad si la adherencia entre los diferentes filamentos es insuficiente." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral delgada" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidad de desplazamiento" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volumen mínimo antes del depósito por inercia" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidad de capa inicial" +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." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión. No influye en las estructuras de adhesión de la placa de impresión en sí, como el borde y la balsa." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support 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 del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidad de impresión de la capa inicial" +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 "Tamaño del área mínima para los suelos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión." +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 "Tamaño del área mínima para los techos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidad de desplazamiento de la capa inicial" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espesor mínimo de características delgadas. Las características del modelo que sean más delgadas que este valor no se imprimirán, mientras que las características más gruesas que el tamaño mínimo de la característica se estirarán hasta el ancho mínimo de la línea perimetral." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para evitar que las partes ya impresas se separen de la placa de impresión. El valor de este ajuste se puede calcular automáticamente a partir del ratio entre la velocidad de desplazamiento y la velocidad de impresión." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Ancho mínimo al que se reduce la base del área de soporte cónico. Las anchuras pequeñas pueden producir estructuras de soporte inestables." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidad de falda/borde" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Velocidad a la que se imprimen la falda y el borde. Normalmente, esto se hace a la velocidad de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una velocidad diferente." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ángulo del molde" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidad del salto en Z" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura del techo del molde" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Velocidad a la que se realiza el movimiento vertical en la dirección Z para los saltos en Z. Suele ser inferior a la velocidad de impresión porque la placa de impresión o el puente de la máquina es más difícil de desplazar." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Orden de planchado monotónico" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de capas más lentas" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Orden monotónica de la superficie superior" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Las primeras capas se imprimen más lentamente que el resto del modelo para obtener una mejor adhesión a la placa de impresión y mejorar la tasa de éxito global de las impresiones. La velocidad aumenta gradualmente en estas capas." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Orden monotónica superior e inferior" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporción de ecualización de flujo" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Líneas de falda múltiples sirven para preparar la extrusión mejor para modelos pequeños. Con un ajuste de 0 se desactivará la falda." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Factor de corrección del ancho de extrusión basado en la velocidad. Al 0 % de velocidad de movimiento se mantiene constante a la velocidad de impresión. Al 100 % de velocidad de movimiento se ajusta para mantener el flujo constante (en mm³/s), es decir, las líneas cuyo ancho es la mitad del ancho normal se imprimen el doble de rápido y las líneas que tienen el doble de ancho se imprimen a la mitad de la velocidad. Un valor superior al 100 % puede ayudar a compensar la mayor presión necesaria para extruir líneas anchas." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activar control de aceleración" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Factor de desplazamiento sin carga" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite ajustar la aceleración del cabezal de impresión. Aumentar las aceleraciones puede reducir el tiempo de impresión a costa de la calidad de impresión." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sin forro en huecos en Z" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Habilitar aceleración de desplazamiento" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas no tradicionales de imprimir sus modelos." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilice una tasa de aceleración independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de aceleración de la línea impresa en su destino." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Ninguno" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleración de la impresión" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Ninguno" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleración a la que se realiza la impresión." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleración del relleno" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Aceleración a la que se imprime el relleno." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción, se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleración de la pared" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "No en el forro" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleración a la que se imprimen las paredes." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "No en la superficie exterior" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleración de pared exterior" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ángulo de la tobera" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleración a la que se imprimen las paredes exteriores." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleración de pared interior" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas no permitidas para la tobera" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Aceleración a la que se imprimen las paredes interiores." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleración de la superficie superior del forro" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longitud de la tobera" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Volumen de cebado adicional tras cambio de tobera" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleración superior/inferior" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidad de cebado del cambio de tobera" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleración a la que se imprimen las capas superiores/inferiores." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidad de retracción del cambio de tobera" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleración de soporte" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distancia de retracción del cambio de tobera" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleración a la que se imprime la estructura de soporte." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidad de retracción del cambio de tobera" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleración de relleno de soporte" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleración a la que se imprime el relleno de soporte." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores habilitados" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleración de interfaz de soporte" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de capas más lentas" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Aceleración a la que se imprimen los techos y suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleración del techo del soporte" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de movimientos de la tobera a lo largo del cepillo." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleración del suelo del soporte" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Aceleración a la que se imprimen los suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la adhesión de soporte en la parte superior del modelo." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno de soporte a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno de soporte." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleración de la torre auxiliar" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleración a la que se imprime la torre auxiliar." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Apagado" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleración de desplazamiento" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Desplazamiento aplicado al objeto en la dirección x." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleración a la que se realizan los movimientos de desplazamiento." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Desplazamiento aplicado al objeto en la dirección y." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleración de la capa inicial" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleración de la capa inicial." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desplazamiento con extrusor" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleración de impresión de la capa inicial" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "En la placa de impresión, cuando sea posible" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleración durante la impresión de la capa inicial." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sobre el modelo, en caso de que sea necesario" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleración de desplazamiento de la capa inicial" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "De uno en uno" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Realizar un salto en Z solo al desplazarse por las partes impresas que no puede evitar el movimiento horizontal de la opción Evitar partes impresas al desplazarse." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleración de falda/borde" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Aceleración a la que se imprimen la falda y el borde. Normalmente, esto se hace a la aceleración de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una aceleración diferente." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Imprimir solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activar control de impulso" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ángulo de la placa de rezumado" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar el impulso del cabezal de impresión cuando la velocidad del eje X o Y cambia. Aumentar el impulso puede reducir el tiempo de impresión a costa de la calidad de impresión." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distancia de la placa de rezumado" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Activar impulso de desplazamiento" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Espaciado óptimo de ramas" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilice una tasa de impulso independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de impulso de la línea impresa en su destino." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimizar el orden de impresión de paredes" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Impulso de impresión" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización. La primera capa no está optimizada al elegir el borde como el tipo de adhesión de la placa de impresión." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diámetro exterior de la tobera" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Impulso de relleno" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleración de pared exterior" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor de pared exterior" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Impulso de pared" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flujo de pared exterior" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Entrante en la pared exterior" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Impulso de pared exterior" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ancho de línea de la pared exterior" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Impulso de pared interior" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidad de pared exterior" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distancia de pasada de la pared exterior" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Impulso de la superficie superior del forro" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Del exterior al interior" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Impulso superior/inferior" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ángulo de voladizo de pared" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidad de voladizo de pared" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Impulso de soporte" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa después de no haber retracción." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Impulso de relleno de soporte" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Impulso de interfaz de soporte" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Porcentaje para la velocidad de ventilador que se utiliza al imprimir las áreas del forro que se encuentran inmediatamente encima del soporte. Si utiliza una velocidad alta para el ventilador, será más fácil retirar el soporte." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Impulso del techo del soporte" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Se filtran los polígonos en capas segmentadas que tienen una circunferencia más pequeña que esta. Los valores más pequeños suponen una resolución de malla mayor a costa de un tiempo de segmentación. Está indicado, sobre todo, para impresoras SLA y modelos 3D muy pequeños con muchos detalles." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte." +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ángulo de rama preferido" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Impulso del suelo del soporte" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Evite la transición de ida y vuelta entre una pared extra y una menos. Este margen amplía el rango de anchos de línea después de [Ancho mínimo de línea perimetral - Margen, 2 * Ancho mínimo de línea perimetral + Margen]. Aumentar este margen reduce el número de transiciones, lo que reduce el número de arranques y paradas de la extrusión y el tiempo de recorrido. No obstante, las grandes variaciones en el ancho de la línea pueden provocar problemas de subextrusión o sobreextrusión." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleración de la torre auxiliar" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flujo de la torre auxiliar" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "Impulso de la torre auxiliar" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Impulso de desplazamiento" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ancho de línea de la torre auxiliar" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volumen mínimo de la torre auxiliar" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Impulso de capa inicial" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Cambio en la velocidad instantánea máxima de la capa inicial." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamaño de la torre auxiliar" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Impulso de impresión de capa inicial" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidad de la torre auxiliar" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posición de la torre auxiliar sobre el eje X" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Impulso de desplazamiento de capa inicial" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posición de la torre auxiliar sobre el eje Y" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Impulso de falda/borde" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleración de la impresión" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde." +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Impulso de impresión" -msgctxt "travel label" -msgid "Travel" -msgstr "Desplazamiento" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Secuencia de impresión" -msgctxt "travel description" -msgid "travel" -msgstr "desplazamiento" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidad de impresión" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar la retracción" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir paredes finas" -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." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retracción en el cambio de capa" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimir estructuras de relleno solo cuando se deban soportar las partes superiores del modelo. Habilitar esto reduce el tiempo de impresión y el uso de material, pero ocasiona que la resistencia del objeto no sea uniforme." -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." +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distancia de retracción" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimir modelos como un molde que se pueden fundir para obtener un modelo que se parezca a los modelos de la placa de impresión." -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." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidad de retracción" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente." -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." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidad de retracción" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie." -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." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." -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." +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de impresión" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Cantidad de cebado adicional de retracción" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de impresión de la capa inicial" -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í." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "La impresión de la línea más interna de la falda con varias capas facilita su eliminación." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Desplazamiento mínimo de retracción" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime una pared adicional cada dos capas. De este modo el relleno se queda atrapado entre estas paredes adicionales, lo que da como resultado impresiones más sólidas." -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." +msgctxt "resolution label" +msgid "Quality" +msgstr "Calidad" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Recuento máximo de retracciones" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Cúbico bitruncado" -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." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Balsa" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Ventana de distancia mínima de extrusión" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Cámara de aire de la balsa" -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." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor base de la balsa" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo Peinada" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidad del ventilador de la base de la balsa" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores o peinar solo en el relleno." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacio de la línea base de la balsa" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Apagado" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ancho de la línea base de la balsa" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Todo" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleración de la impresión de la base de la balsa" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "No en la superficie exterior" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Impulso de impresión de base de la balsa" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "No en el forro" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidad de impresión de la base de la balsa" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Sobre el relleno" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Grosor de la base de la balsa" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distancia de peinada máxima sin retracción" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Recuento de paredes base de balsa" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margen adicional de la balsa" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retracción antes de la pared exterior" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidad del ventilador de la balsa" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Retraer siempre al desplazarse para empezar una pared exterior." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor medio de la balsa" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar partes impresas al desplazarse" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidad del ventilador de balsa intermedia" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "La tobera evita las partes ya impresas al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Capas medias de la balsa" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar soportes al desplazarse" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ancho de la línea intermedia de la balsa" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "La tobera evita los soportes ya impresos al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleración de la impresión de la balsa intermedia" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distancia para evitar al desplazarse" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Impulso de impresión de balsa intermedia" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidad de impresión de la balsa intermedia" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X de inicio de capa" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaciado intermedio de la balsa" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Grosor intermedio de la balsa" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y de inicio de capa" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleración de impresión de la balsa" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Impulso de impresión de la balsa" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto en Z en la retracción" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidad de impresión de la balsa" -msgctxt "retraction_hop_enabled 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 "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavizado de la balsa" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto en Z solo en las partes impresas" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor superior de la balsa" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Realizar un salto en Z solo al desplazarse por las partes impresas que no puede evitar el movimiento horizontal de la opción Evitar partes impresas al desplazarse." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidad del ventilador de balsa superior" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura del salto en Z" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Grosor de las capas superiores de la balsa" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferencia de altura cuando se realiza un salto en Z." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Capas superiores de la balsa" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto en Z tras cambio de extrusor" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ancho de las líneas superiores de la balsa" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Cuando la máquina cambia de un extrusor a otro, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Esto impide que el material rezumado quede fuera de la impresión." +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleración de la impresión de la balsa superior" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto en Z tras altura de cambio de extrusor" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Impulso de impresión de balsa superior" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidad de impresión de la balsa superior" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeración" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaciado superior de la balsa" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeración" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatoria" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activar refrigeración de impresión" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Comienzo de relleno aleatorio" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Habilita ventiladores de refrigeración mientras se imprime. Los ventiladores mejoran la calidad de la impresión en capas con menores tiempos de capas y puentes o voladizos." +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Determine qué línea de relleno se imprime primero. Esto evita que un segmento se convierta en el más fuerte, pero a expensas de un movimiento adicional." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidad del ventilador" +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." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión." +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangular" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Velocidad normal del ventilador" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Velocidad a la que giran los ventiladores antes de alcanzar el umbral. Cuando una capa se imprime más rápido que el umbral, la velocidad del ventilador se inclina gradualmente hacia la velocidad máxima del ventilador." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidad máxima del ventilador" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidad normal del ventilador a altura" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Velocidad a la que giran los ventiladores en el tiempo mínimo de capa. La velocidad del ventilador aumenta gradualmente entre la velocidad normal y máxima del ventilador cuando se alcanza el umbral." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidad normal del ventilador por capa" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Umbral de velocidad normal/máxima del ventilador" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Tiempo de capa que establece el umbral entre la velocidad normal y la máxima del ventilador. Las capas que se imprimen más despacio que este tiempo utilizan la velocidad de ventilador regular. Para las capas más rápidas el ventilador aumenta la velocidad gradualmente hacia la velocidad máxima del ventilador." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusión relativa" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidad inicial del ventilador" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Eliminar todos los agujeros" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Velocidad a la que giran los ventiladores al comienzo de la impresión. En las capas posteriores, la velocidad del ventilador aumenta gradualmente hasta la capa correspondiente a la velocidad normal del ventilador a altura." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Eliminar primeras capas vacías" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidad normal del ventilador a altura" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Eliminar el cruce de mallas" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Altura a la que giran los ventiladores en la velocidad normal del ventilador. En las capas más bajas, la velocidad del ventilador aumenta gradualmente desde la velocidad inicial del ventilador hasta la velocidad normal del ventilador." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Quitar las esquinas internas de la balsa" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidad normal del ventilador por capa" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Capa en la que los ventiladores giran a velocidad normal del ventilador. Si la velocidad normal del ventilador a altura está establecida, este valor se calcula y redondea a un número entero." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tiempo mínimo de capa" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Elimina los agujeros en cada capa y mantiene solo la forma exterior. Esto ignorará cualquier geometría interna invisible. Sin embargo, también ignora los agujeros de la capa que pueden verse desde arriba o desde abajo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferencia de apoyo" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retracción antes de la pared exterior" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retracción en el cambio de capa" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Tiempo mínimo empleado en una capa. Esto fuerza a la impresora a ir más despacio, para emplear al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Es posible que el tiempo para cada capa sea inferior al tiempo mínimo si se desactiva Levantar el cabezal o si la velocidad mínima se ve modificada de otro modo." +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." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidad mínima" +msgctxt "wipe_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." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Velocidad de impresión mínima, a pesar de ir más despacio debido al tiempo mínimo de capa. Cuando la impresora vaya demasiado despacio, la presión de la tobera puede ser demasiado baja y resultar en una impresión de mala calidad." +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." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar el cabezal" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distancia de retracción" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Cuando se alcanza la velocidad mínima debido al tiempo mínimo de capa, levante el cabezal de la impresión y espere el tiempo adicional hasta que se alcance el tiempo mínimo de capa." +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Cantidad de cebado adicional de retracción" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de impresión de capas pequeñas" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Desplazamiento mínimo de retracción" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduzca gradualmente a esta temperatura cuando imprima a velocidades bajas debido al tiempo mínimo de capa." +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción" -msgctxt "support label" -msgid "Support" -msgstr "Soporte" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidad de retracción" -msgctxt "support description" -msgid "Support" -msgstr "Soporte" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidad de retracción" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generar soporte" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Derecha" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Escale la velocidad del ventilador a 0-1" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor del soporte" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Escale la velocidad del ventilador para que esté entre 0 y 1 en lugar de entre 0 y 256." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala para la compensación de la contracción" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor del relleno de soporte" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La escena tiene mallas de soporte" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferencia de esquina de costura" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor del soporte de la primera capa" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes utilizados en la impresión con varios extrusores." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de la interfaz de soporte" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura." -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple." +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retracción inicial de tobera compartida" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor del techo del soporte" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Esquina más pronunciada" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple." +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor del suelo del soporte" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Más corta" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar versiones de la máquina" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estructura de soporte" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Capas de soporte de los bordes del forro" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espesor de soporte de los bordes del forro" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distancia de expansión del forro" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árbol" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Superposición del forro" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ángulo máximo de la rama" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentaje de superposición del forro" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "El ángulo máximo de las ramas mientras crecen alrededor del modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para abarcar más." +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Anchura de retirada del forro" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diámetro de la rama" +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." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "El diámetro de las ramas más finas del soporte en árbol. Cuanto más gruesas sean las ramas, más robustas serán. Las ramas que estén cerca de la base serán más gruesas que esto." +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diámetro del tronco" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Omitir algunas conexiones de línea de soporte para que la estructura de soporte sea más fácil de descomponer. Este ajuste es aplicable al patrón de relleno del soporte en zigzag." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "El diámetro de las ramas más anchas del soporte en árbol. Un tronco más grueso es más resistente, pero uno más delgado ocupa menos espacio en la placa de impresión." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Falda" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ángulo del diámetro de la rama" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distancia de falda" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "El ángulo del diámetro de las ramas es gradualmente más alto según se acercan a la base. Un ángulo de 0 ocasionará que las ramas tengan un grosor uniforme en toda su longitud. Un poco de ángulo puede aumentar la estabilidad del soporte en árbol." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura de la falda" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocación del soporte" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Recuento de líneas de falda" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando la placa de impresión" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleración de falda/borde" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "En todos sitios" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor de falda o borde" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ángulo de rama preferido" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flujo de falda/borde" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "El ángulo para las ramas de preferencia cuando no tienen que evitar el modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para que las ramas se fusionen más rápido." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Impulso de falda/borde" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento del diámetro para el modelo" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ancho de línea de falda/borde" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "El diámetro máximo de una rama que debe conectarse al modelo puede aumentar al fusionarse con ramas que podrían llegar a la placa de impresión. Al aumentarlo, se reduce el tiempo de impresión, pero el área de soporte que descansa sobre el modelo aumenta" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longitud mínima de falda/borde" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidad de falda/borde" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura mínima para el modelo" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerancia de segmentación" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Qué altura debe tener una rama si se coloca sobre el modelo. Evita la formación de pequeñas gotas de soporte. Esta configuración se ignora cuando una rama está aguantando un techo de soporte." +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidad de la capa inicial de partes pequeñas" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diámetro de la capa inicial" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longitud máxima de pequeñas partes" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diámetro que cada rama trata de alcanzar al llegar a la placa de impresión. Mejora la adherencia a la plataforma." +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidad de pequeñas partes" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidad de la rama" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamaño máximo de agujero pequeño" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta la densidad de la estructura de soporte utilizada para generar las puntas de las ramas. Un valor más alto da como resultado mejores voladizos, pero los soportes son más difíciles de eliminar. Utilice el techo de soporte para valores muy altos o asegúrese de que la densidad del soporte sea igual de alta en la parte superior." +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de impresión de capas pequeñas" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diámetro de la punta" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Zonas pequeñas superiores/inferiores en superficie" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "El diámetro de la parte superior de la punta de las ramas de soporte en árbol." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Anchura superior/​inferior pequeña" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Alcance límite de la rama" +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." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Espaciado óptimo de ramas" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Las zonas pequeñas superiores/inferiores se rellenan con paredes en lugar de con el patrón predeterminado superior/inferior. Esto ayuda a evitar movimientos bruscos. Está desactivado para la capa superior (expuesta al aire) por defecto. (Consulte: \"Zonas pequeñas superiores/inferiores en superficie\")." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Borde inteligente" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferencia de apoyo" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Costura inteligente" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "La colocación preferida para las estructuras de soporte. Si las estructuras no se pueden poner en la colocación preferida, se pondrán en otro lugar, incluso si eso significa situarlas sobre el modelo." +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Contornos espiralizados suaves" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "En la placa de impresión, cuando sea posible" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suaviza los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sobre el modelo, en caso de que sea necesario" +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í." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ángulo de voladizo del soporte" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Ángulo mínimo de los voladizos para los que se agrega soporte. A partir de un valor de 0º todos los voladizos tendrán soporte, a 90º no se proporcionará ningún soporte." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos especiales" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patrón del soporte" +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidad" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Patrón de las estructuras del soporte de la impresión. Las diferentes opciones disponibles dan como resultado un soporte robusto o fácil de retirar." +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidad" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidad para mover el eje Z durante el salto." -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar el contorno exterior" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función solo se debería habilitar cuando cada capa contenga una única pieza." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura en modo de espera" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Iniciar GCode" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Punto de partida de cada trayectoria en una capa. Cuando las trayectorias en capas consecutivas comienzan en el mismo punto, puede aparecer una costura vertical en la impresión. Cuando se alinean cerca de una ubicación especificada por el usuario, es más fácil eliminar la costura. Si se colocan aleatoriamente, las inexactitudes del inicio de las trayectorias se notarán menos. Si se toma la trayectoria más corta, la impresión será más rápida." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pasos por milímetro (E)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Recuento de líneas de pared del soporte" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pasos por milímetro (X)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado." +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pasos por milímetro (Y)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Recuento de líneas de pared de la interfaz de soporte" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pasos por milímetro (Z)" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." +msgctxt "support description" +msgid "Support" +msgstr "Soporte" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Recuento de líneas de pared del techo de soporte" +msgctxt "support label" +msgid "Support" +msgstr "Soporte" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleración de soporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distancia inferior del soporte" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Recuento de líneas de pared de la base de soporte" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear el suelo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar líneas del soporte" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Recuento de líneas del borde de soporte" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Unión de los extremos de las líneas de soporte. Al habilitar este ajuste, puede conseguir que el soporte sea más sólido y reducir la infraextrusión, pero se necesitará más material." +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ancho del borde de soporte" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar zigzags del soporte" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Recuento de líneas de pedazos del soporte" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag." +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamaño de los pedazos de soporte" msgctxt "support_infill_rate label" msgid "Support Density" msgstr "Densidad del soporte" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta la densidad de la estructura del soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridad de las distancias del soporte" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distancia de línea del soporte" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor del soporte" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleración del suelo del soporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidad del suelo del soporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor del suelo del soporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flujo de suelo de soporte" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansión horizontal de los suelos de soporte" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distancia de línea del soporte de la capa inicial" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Impulso del suelo del soporte" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direcciones de línea del suelo de soporte" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Dirección de línea de relleno de soporte" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distancia de línea del suelo de soporte" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se usa el ángulo predeterminado de 0 grados." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ancho de línea del suelo de soporte" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar borde de soporte" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patrón del suelo del soporte" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genera un borde dentro de las zonas de relleno del soporte de la primera capa. Este borde se imprime por debajo del soporte y no a su alrededor. Si habilita esta configuración aumentará la adhesión del soporte a la placa de impresión." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidad del suelo del soporte" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ancho del borde de soporte" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Grosor del suelo del soporte" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flujo de soporte" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Recuento de líneas del borde de soporte" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansión horizontal del soporte" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de borde mejoran la adhesión a la placa de impresión, pero requieren material adicional." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleración de relleno de soporte" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distancia en Z del soporte" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor del relleno de soporte" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Este valor se redondea hacia el múltiplo de la altura de la capa." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Impulso de relleno de soporte" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distancia superior del soporte" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Grosor de la capa de relleno de soporte" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distancia desde la parte superior del soporte a la impresión." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Dirección de línea de relleno de soporte" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distancia inferior del soporte" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidad de relleno del soporte" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distancia desde la parte inferior del soporte a la impresión." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleración de interfaz de soporte" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distancia X/Y del soporte" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidad de la interfaz de soporte" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de la interfaz de soporte" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridad de las distancias del soporte" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flujo de interfaz de soporte" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Elija si quiere que la distancia X/Y del soporte prevalezca sobre la distancia Z del soporte o viceversa. Si X/Y prevalece sobre Z, la distancia X/Y puede separar el soporte del modelo, lo que afectaría a la distancia Z real con respecto al voladizo. Esta opción puede desactivarse si la distancia X/Y no se aplica a los voladizos." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansión horizontal de la interfaz de soporte" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y sobre Z" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Impulso de interfaz de soporte" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z sobre X/Y" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direcciones de línea de interfaz de soporte" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distancia X/Y mínima del soporte" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ancho de línea de interfaz de soporte" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patrón de la interfaz de soporte" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura del escalón de la escalera del soporte" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridad de la interfaz de soporte" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables. Configúrelo en cero para desactivar el comportamiento de escalera." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolución de la interfaz de soporte" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Ancho máximo del escalón de la escalera del soporte" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidad de interfaz del soporte" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Ancho máximo de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Grosor de la interfaz del soporte" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ángulo de pendiente mínimo del escalón de la escalera de soporte" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Recuento de líneas de pared de la interfaz de soporte" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pendiente mínima de la zona para un efecto del escalón de la escalera de soporte. Los valores más bajos deberían facilitar la extracción del soporte en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Impulso de soporte" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Distancia de unión del soporte" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando las estructuras separadas están más cerca entre sí que este valor, se combinan en una." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansión horizontal del soporte" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden suavizar las áreas del soporte y producir un soporte más robusto." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Grosor de la capa de relleno de soporte" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distancia de línea del soporte" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Grosor por capa de material de relleno de soporte. Este valor siempre debe ser un múltiplo de la altura de la capa; de lo contrario, se redondea." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ancho de línea de soporte" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Escalones de relleno de soporte" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malla de soporte" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno de soporte a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno de soporte." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ángulo de voladizo del soporte" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura necesaria de los escalones de relleno de soporte" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patrón del soporte" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocación del soporte" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área del soporte mínima" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleración del techo del soporte" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support 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 del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidad del techo del soporte" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar interfaz del soporte" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor del techo del soporte" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Genera una gruesa interfaz entre el modelo y el soporte. De esta forma, se crea un forro en la parte superior del soporte, donde se imprime el modelo, y en la parte inferior del soporte, donde se apoya el modelo." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flujo de techo de soporte" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar techo del soporte" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansión horizontal de los techos del soporte" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genere una placa densa de material entre la parte superior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Impulso del techo del soporte" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar suelo del soporte" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direcciones de línea del techo de soporte" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genere una placa densa de material entre la parte inferior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distancia de línea del techo del soporte" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Grosor de la interfaz del soporte" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ancho de línea del techo de soporte" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patrón del techo del soporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidad del techo del soporte" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Grosor del techo del soporte" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Grosor de los techos del soporte. Este valor controla el número de capas densas en la parte superior del soporte, donde apoya el modelo." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Recuento de líneas de pared del techo de soporte" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Grosor del suelo del soporte" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidad de soporte" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura del escalón de la escalera del soporte" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolución de la interfaz de soporte" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Ancho máximo del escalón de la escalera del soporte" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ángulo de pendiente mínimo del escalón de la escalera de soporte" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidad de la interfaz de soporte" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estructura de soporte" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta la densidad de los techos y suelos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distancia superior del soporte" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidad del techo del soporte" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Recuento de líneas de pared del soporte" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Densidad de los techos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distancia X/Y del soporte" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distancia de línea del techo del soporte" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distancia en Z del soporte" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distancia entre las líneas de techo de soporte impresas. Este ajuste se calcula por la densidad del techo del soporte pero se puede ajustar de forma independiente." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Líneas de soporte preferidas" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidad del suelo del soporte" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Soporte preferido" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Densidad de los suelos de la estructura de soporte. Un valor superior da como resultado una mejor adhesión del soporte en la parte superior del modelo." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidad del ventilador para forro con soporte" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distancia de línea del suelo de soporte" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distancia entre las líneas de suelo de soporte impresas. Este ajuste se calcula por la densidad del suelo del soporte pero se puede ajustar de forma independiente." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energía de la superficie" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patrón de la interfaz de soporte" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superficie" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendencia de adherencia de la superficie." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energía de la superficie." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Intercambie el orden de impresión de las líneas más internas y del segundo borde más interno. De ese modo se mejora la eliminación del borde." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Cambiar la malla a la que pertenecerán los volúmenes que se cruzan en cada capa, de forma que las mallas superpuestas se entrelacen. Desactivar esta opción dará lugar a que una de las mallas reciba todo el volumen de la superposición y que este se elimine de las demás mallas." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +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." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patrón del techo del soporte" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Patrón con el que se imprimen los techos del soporte." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleración durante la impresión de la capa inicial." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patrón del suelo del soporte" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleración de la capa inicial." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Patrón con el que se imprimen los suelos del soporte." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Aceleración a la que se imprimen las paredes interiores." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Aceleración a la que se imprime el relleno." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "La aceleración a la que se produce el alisado." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleración a la que se realiza la impresión." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Aceleración a la que se imprime la capa base de la balsa." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Aceleración a la que se imprimen los suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la adhesión de soporte en la parte superior del modelo." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Rejilla" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleración a la que se imprime el relleno de soporte." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Aceleración a la que se imprime la capa intermedia de la balsa." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleración a la que se imprimen las paredes exteriores." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleración a la que se imprime la torre auxiliar." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área de la interfaz de soporte mínima" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Aceleración a la que se imprime la balsa." -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." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Aceleración a la que se imprimen los techos y suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área de los techos del soporte mínima" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." -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 "Tamaño del área mínima para los techos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Aceleración a la que se imprimen la falda y el borde. Normalmente, esto se hace a la aceleración de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una aceleración diferente." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área de los suelos del soporte mínima" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleración a la que se imprime la estructura de soporte." -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 "Tamaño del área mínima para los suelos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansión horizontal de la interfaz de soporte" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansión horizontal de los techos del soporte" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleración a la que se imprimen las paredes." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Cantidad de desplazamiento aplicado a los techos del soporte." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansión horizontal de los suelos de soporte" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleración a la que se imprimen las capas superiores/inferiores." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleración a la que se realizan los movimientos de desplazamiento." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridad de la interfaz de soporte" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Cantidad de material (relativa a la línea del forro normal) que se extruye durante el alisado. Dejar la tobera llena permite rellenar algunas grietas de la superficie, pero llenarla demasiado puede provocar la sobrextrusión y afectar a la superficie." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Cómo interactuarán la interfaz y el soporte en caso de superposición. Actualmente, solo implantado para techos de soporte." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes son un porcentaje del ancho de la línea de relleno. Una ligera superposición permite que las paredes estén firmemente unidas al relleno." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Soporte preferido" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interfaz preferida" +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." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Líneas de soporte preferidas" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Líneas de interfaz preferidas" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Ángulo del techo superior de una torre. Un valor más alto da como resultado techos de torre en punta, un valor más bajo da como resultado techos de torre planos." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambos se solapan" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Ángulo del voladizo de las paredes exteriores creado para el molde. 0º hará el perímetro exterior del molde vertical, mientras que 90º hará el exterior del modelo seguido del contorno del modelo." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direcciones de línea de interfaz de soporte" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "El ángulo del diámetro de las ramas es gradualmente más alto según se acercan a la base. Un ángulo de 0 ocasionará que las ramas tengan un grosor uniforme en toda su longitud. Un poco de ángulo puede aumentar la estabilidad del soporte en árbol." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Ángulo de inclinación del soporte cónico. Donde 0 grados es vertical y 90 grados es horizontal. Cuanto más pequeños son los ángulos, más robusto es el soporte, pero consta de más material. Los ángulos negativos hacen que la base del soporte sea más ancha que la parte superior." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direcciones de línea del techo de soporte" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Densidad media de los puntos introducidos en cada polígono en una capa. Tenga en cuenta que los puntos originales del polígono se descartan, así que una baja densidad produce una reducción de la resolución." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direcciones de línea del suelo de soporte" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La temperatura predeterminada que se utiliza para imprimir. Debería ser la temperatura básica del material. Las demás temperaturas de impresión deberían calcularse a partir de este valor" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Alteración de velocidad del ventilador" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "La temperatura predeterminada que se utiliza en placa de impresión caliente. Debería ser la temperatura básica de una placa de impresión. Las demás temperaturas de impresión deberían calcularse a partir de este valor" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Al habilitar esta opción, la velocidad del ventilador de enfriamiento de impresión cambia para las áreas de forro que se encuentran inmediatamente encima del soporte." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidad del ventilador para forro con soporte" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Densidad de los suelos de la estructura de soporte. Un valor superior da como resultado una mejor adhesión del soporte en la parte superior del modelo." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Porcentaje para la velocidad de ventilador que se utiliza al imprimir las áreas del forro que se encuentran inmediatamente encima del soporte. Si utiliza una velocidad alta para el ventilador, será más fácil retirar el soporte." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Densidad de los techos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar torres" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Usa torres especializadas como soporte de pequeñas áreas de voladizo. Estas torres tienen un diámetro mayor que la región que soportan. El diámetro de las torres disminuye cerca del voladizo, formando un techo." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diámetro de la torre" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "Diámetro de una torre especial." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diámetro máximo soportado por la torre" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "El diámetro de las ramas más finas del soporte en árbol. Cuanto más gruesas sean las ramas, más robustas serán. Las ramas que estén cerca de la base serán más gruesas que esto." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Diámetro máximo en las direcciones X/Y de una pequeña área que debe ser soportada por una torre de soporte especializada." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "El diámetro de la parte superior de la punta de las ramas de soporte en árbol." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ángulo del techo de la torre" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "El diámetro de la rueda que dirige el material hacia el alimentador." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Ángulo del techo superior de una torre. Un valor más alto da como resultado techos de torre en punta, un valor más bajo da como resultado techos de torre planos." +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "El diámetro de las ramas más anchas del soporte en árbol. Un tronco más grueso es más resistente, pero uno más delgado ocupa menos espacio en la placa de impresión." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malla de soporte desplegable" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte." +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distancia entre las líneas del alisado." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La escena tiene mallas de soporte" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activar gotas de cebado" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo adherencia de la placa de impresión" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada, medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Opciones diferentes que ayudan a mejorar tanto la extrusión como la adherencia a la placa de impresión. El borde agrega una zona plana de una sola capa alrededor de la base del modelo para impedir que se deforme. La balsa agrega una rejilla gruesa con un techo por debajo del modelo. La falda es una línea impresa alrededor del modelo, pero que no está conectada al modelo." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde mayor mejora la adhesión a la plataforma de impresión, pero también reduce el área de impresión efectiva." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Falda" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "La distancia desde el exterior de un modelo en el que no se generarán estructuras entrelazadas, medida en celdas." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Borde" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Balsa" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "La distancia a la que los forros inferiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que el forro se adhiera mejor a las paredes de la capa inferior. Los valores inferiores ahorran material." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Ninguno" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "La distancia a la que los forros se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de las capas vecinas se adhieran mejor al forro. Los valores inferiores ahorran material." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de adherencia de la placa de impresión" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "La distancia a la que los forros superiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de la capa superior se adhieran mejor al forro. Los valores inferiores ahorran material." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la falda/borde/balsa. Se emplea en la extrusión múltiple." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor de falda o borde" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la falda o el borde. Se emplea en la extrusión múltiple." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Velocidad adicional a la que se enfría la tobera durante la extrusión. El mismo valor se utiliza para indicar la velocidad de calentamiento perdido cuando se calienta durante la extrusión." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor base de la balsa" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir la primera capa de la balsa. Se emplea en la extrusión múltiple." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor medio de la balsa" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir la capa media de la balsa. Se emplea en la extrusión múltiple." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor superior de la balsa" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la capa o capas superiores de la balsa. Se emplea en la extrusión múltiple." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Recuento de líneas de falda" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Líneas de falda múltiples sirven para preparar la extrusión mejor para modelos pequeños. Con un ajuste de 0 se desactivará la falda." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura de la falda" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "La impresión de la línea más interna de la falda con varias capas facilita su eliminación." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distancia de falda" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distancia horizontal entre la falda y la primera capa de la impresión.\nSe trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longitud mínima de falda/borde" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "La longitud mínima de la falda o el borde. Si el número de líneas de falda o borde no alcanza esta longitud, se agregarán más líneas de falda o borde hasta alcanzar esta longitud mínima. Nota: Si el número de líneas está establecido en 0, esto se ignora." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la falda o el borde. Se emplea en la extrusión múltiple." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ancho del borde" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la falda/borde/balsa. Se emplea en la extrusión múltiple." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde mayor mejora la adhesión a la plataforma de impresión, pero también reduce el área de impresión efectiva." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Recuento de líneas de borde" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la capa o capas superiores de la balsa. Se emplea en la extrusión múltiple." -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." +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distancia del borde" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple." -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 "La distancia horizontal entre la primera línea de borde y el contorno de la primera capa de la impresión. Un pequeño orificio puede facilitar la eliminación del borde al tiempo que proporciona ventajas térmicas." +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Sustituir soporte por borde" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Borde solo en el exterior" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Velocidad del ventilador para la capa base de la balsa." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Margen de distancia del borde interior" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Velocidad del ventilador para la capa intermedia de la balsa." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Una pieza completamente encerrada dentro de otra puede generar un borde exterior que toque el interior de la pieza exterior. Esto elimina cualquier borde dentro de esta distancia de los orificios internos." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Velocidad del ventilador para la balsa." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Borde inteligente" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Velocidad del ventilador para las capas superiores de la balsa." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Intercambie el orden de impresión de las líneas más internas y del segundo borde más interno. De ese modo se mejora la eliminación del borde." +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente en el relleno de la impresión." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margen adicional de la balsa" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente del soporte." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Las primeras capas se imprimen más lentamente que el resto del modelo para obtener una mejor adhesión a la placa de impresión y mejorar la tasa de éxito global de las impresiones. La velocidad aumenta gradualmente en estas capas." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavizado de la balsa" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Hueco entre la capa final de la balsa y la primera capa del modelo. Solo la primera capa se eleva según este valor para reducir la unión entre la capa de la balsa y el modelo y que sea más fácil despegar la balsa." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Altura (dimensión sobre el eje Z) del área de impresión." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Cámara de aire de la balsa" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Hueco entre la capa final de la balsa y la primera capa del modelo. Solo la primera capa se eleva según este valor para reducir la unión entre la capa de la balsa y el modelo y que sea más fácil despegar la balsa." +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Altura a la que giran los ventiladores en la velocidad normal del ventilador. En las capas más bajas, la velocidad del ventilador aumenta gradualmente desde la velocidad inicial del ventilador hasta la velocidad normal del ventilador." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Superposición de las capas iniciales en Z" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Capas superiores de la balsa" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferencia de altura cuando se realiza un salto en Z." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Grosor de las capas superiores de la balsa" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferencia de altura cuando se realiza un salto en Z." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Grosor de capa de las capas superiores de la balsa." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Altura de cada capa en mm. Los valores más altos producen impresiones más rápidas con una menor resolución, los valores más bajos producen impresiones más lentas con una mayor resolución." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ancho de las líneas superiores de la balsa" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaciado superior de la balsa" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Capas medias de la balsa" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "El número de capas entre la base y la superficie de la balsa. Estas comprenden el espesor principal de la balsa. Al aumentar este número se crea una balsa más gruesa y resistente." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Grosor intermedio de la balsa" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables. Configúrelo en cero para desactivar el comportamiento de escalera." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Grosor de la capa intermedia de la balsa." +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 "La distancia horizontal entre la primera línea de borde y el contorno de la primera capa de la impresión. Un pequeño orificio puede facilitar la eliminación del borde al tiempo que proporciona ventajas térmicas." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ancho de la línea intermedia de la balsa" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"La distancia horizontal entre la falda y la primera capa de la impresión.\n" +"Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Ancho de las líneas de la capa intermedia de la balsa. Haciendo la segunda capa con mayor extrusión las líneas se adhieren a la placa de impresión." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaciado intermedio de la balsa" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Grosor de la base de la balsa" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Impulso con el que se imprime la capa base de la balsa." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ancho de la línea base de la balsa" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Impulso con el que se imprime la capa intermedia de la balsa." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Impulso con el que se imprime la balsa." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacio de la línea base de la balsa" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Impulso con el que se imprimen las capas superiores de la balsa." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas inferiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro inferior en las superficies inclinadas del modelo." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidad de impresión de la balsa" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior/inferior en las superficies inclinadas del modelo." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Velocidad a la que se imprime la balsa." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior en las superficies inclinadas del modelo." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidad de impresión de la balsa superior" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Capa en la que los ventiladores giran a velocidad normal del ventilador. Si la velocidad normal del ventilador a altura está establecida, este valor se calcula y redondea a un número entero." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Tiempo de capa que establece el umbral entre la velocidad normal y la máxima del ventilador. Las capas que se imprimen más despacio que este tiempo utilizan la velocidad de ventilador regular. Para las capas más rápidas el ventilador aumenta la velocidad gradualmente hacia la velocidad máxima del ventilador." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidad de impresión de la balsa intermedia" +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." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidad de impresión de la base de la balsa" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Material de la placa de impresión colocado en la impresora." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleración de impresión de la balsa" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Ángulo de separación máximo de la placa de rezumado. Un valor 0° significa vertical y un valor de 90°, horizontal. Un ángulo más pequeño resultará en menos placas de rezumado con errores, pero más material." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Aceleración a la que se imprime la balsa." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Ángulo máximo de los voladizos una vez que se han hecho imprimibles. Un valor de 0º hace que todos los voladizos sean reemplazados por una pieza del modelo conectada a la placa de impresión y un valor de 90º no cambiará el modelo." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleración de la impresión de la balsa superior" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "El ángulo máximo de las ramas mientras crecen alrededor del modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para abarcar más." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "El área máxima de un agujero en la base del modelo antes de que se elimine mediante la herramienta Convertir voladizo en imprimible. Se conservarán los agujeros más pequeños. Con un valor de 0 mm² se rellenan todos los agujeros de la base del modelo." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleración de la impresión de la balsa intermedia" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de la resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño. La desviación máxima es un límite para la resolución máxima, por lo que si las dos entran en conflicto, la desviación máxima siempre tendrá prioridad." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Aceleración a la que se imprime la capa intermedia de la balsa." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando las estructuras separadas están más cerca entre sí que este valor, se combinan en una." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleración de la impresión de la base de la balsa" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Aceleración a la que se imprime la capa base de la balsa." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "La desviación máxima del área de extrusión permitida al eliminar puntos intermedios de una línea recta. Un punto intermedio puede actuar como un punto de cambio de ancho en una línea recta larga. Por lo tanto, si se elimina, la línea tendrá un ancho uniforme y, como resultado, perderá (o ganará) área de extrusión. En caso de incremento, es posible que observe una extrusión leve por debajo (o por encima) entre paredes paralelas rectas, ya que será posible eliminar múltiples puntos de cambio de ancho intermedio. La impresión será menos precisa, pero el GCode será más pequeño." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Impulso de impresión de la balsa" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Impulso con el que se imprime la balsa." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Cambio en la velocidad instantánea máxima durante el alisado." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Impulso de impresión de balsa superior" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Impulso con el que se imprimen las capas superiores de la balsa." +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Impulso de impresión de balsa intermedia" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Impulso con el que se imprime la capa intermedia de la balsa." +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Impulso de impresión de base de la balsa" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Impulso con el que se imprime la capa base de la balsa." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidad del ventilador de la balsa" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Velocidad del ventilador para la balsa." +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidad del ventilador de balsa superior" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Velocidad del ventilador para las capas superiores de la balsa." +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidad del ventilador de balsa intermedia" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Velocidad del ventilador para la capa intermedia de la balsa." +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidad del ventilador de la base de la balsa" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Velocidad del ventilador para la capa base de la balsa." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusión doble" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes utilizados en la impresión con varios extrusores." +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activar la torre auxiliar" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Velocidad máxima del motor de la dirección X." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Velocidad máxima del motor de la dirección Y." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamaño de la torre auxiliar" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Velocidad máxima del motor de la dirección Z." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Anchura de la torre auxiliar." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Velocidad máxima del filamento." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volumen mínimo de la torre auxiliar" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Ancho máximo de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posición de la torre auxiliar sobre el eje X" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidad mínima de movimiento del cabezal de impresión." -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Coordenada X de la posición de la torre auxiliar." +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión." -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posición de la torre auxiliar sobre el eje Y" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Tiempo mínimo que un extrusor debe permanecer inactivo antes de que la tobera se enfríe. Para que pueda enfriarse hasta alcanzar la temperatura en modo de espera, el extrusor deberá permanecer inactivo durante un tiempo superior al establecido." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Coordenada Y de la posición de la torre auxiliar." +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "El ángulo mínimo de los voladizos internos para los que se agrega relleno. A partir de un valor de 0 º todos los objetos estarán totalmente rellenos, a 90 º no se proporcionará ningún relleno." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpiar tobera inactiva de la torre auxiliar" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Ángulo mínimo de los voladizos para los que se agrega soporte. A partir de un valor de 0º todos los voladizos tendrán soporte, a 90º no se proporcionará ningún soporte." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." +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." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Borde de la torre auxiliar" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "La longitud mínima de la falda o el borde. Si el número de líneas de falda o borde no alcanza esta longitud, se agregarán más líneas de falda o borde hasta alcanzar esta longitud mínima. Nota: Si el número de líneas está establecido en 0, esto se ignora." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»." +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "La anchura mínima de línea para las paredes tipo polilínea para rellenar el hueco de la línea central. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de pared a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea de pared impar conduce a un ancho máximo más alto de la línea de pared par. El ancho máximo de línea de pared impar se calcula como el doble del ancho mínimo de línea de pared par." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activar placa de rezumado" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "El ancho de línea mínimo para paredes poligonales normales. Este ajuste determina a qué espesor de modelo pasamos de imprimir una sola línea de perímetro delgada a imprimir dos líneas de perímetro. Un ancho mínimo más alto de la línea perimetral par conduce a un ancho máximo más alto de la línea perimetral impar. El ancho máximo de la línea perimetral par se calcula como el ancho de la línea perimetral exterior + 0,5 * el ancho mínimo de la línea perimetral impar." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera." +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Velocidad de impresión mínima, a pesar de ir más despacio debido al tiempo mínimo de capa. Cuando la impresora vaya demasiado despacio, la presión de la tobera puede ser demasiado baja y resultar en una impresión de mala calidad." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ángulo de la placa de rezumado" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "El tamaño mínimo de un segmento de línea tras la segmentación. Si se aumenta, la resolución de la malla será menor. Esto puede permitir a la impresora mantener la velocidad que necesita para procesar GCode y aumentará la velocidad de segmentación al eliminar detalles de la malla que, de todas formas, no puede procesar." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Ángulo de separación máximo de la placa de rezumado. Un valor 0° significa vertical y un valor de 90°, horizontal. Un ángulo más pequeño resultará en menos placas de rezumado con errores, pero más material." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "El tamaño mínimo de un segmento de línea de desplazamiento tras la segmentación. Si se aumenta, los movimientos de desplazamiento tendrán esquinas menos suavizadas. Esto puede le permite a la impresora mantener la velocidad que necesita para procesar GCode pero puede ocasionar que evitar el modelo sea menos preciso." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distancia de la placa de rezumado" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pendiente mínima de la zona para un efecto del escalón de la escalera de soporte. Los valores más bajos deberían facilitar la extracción del soporte en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo." -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." +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Tiempo mínimo empleado en una capa. Esto fuerza a la impresora a ir más despacio, para emplear al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Es posible que el tiempo para cada capa sea inferior al tiempo mínimo si se desactiva Levantar el cabezal o si la velocidad mínima se ve modificada de otro modo." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distancia de retracción del cambio de tobera" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." -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." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "El diámetro máximo de una rama que debe conectarse al modelo puede aumentar al fusionarse con ramas que podrían llegar a la placa de impresión. Al aumentarlo, se reduce el tiempo de impresión, pero el área de soporte que descansa sobre el modelo aumenta" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidad de retracción del cambio de tobera" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nombre del modelo de la impresora 3D." -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." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidad de retracción del cambio de tobera" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "La tobera evita las partes ya impresas al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." -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." +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "La tobera evita los soportes ya impresos al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidad de cebado del cambio de tobera" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." -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." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Volumen de cebado adicional tras cambio de tobera" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "El número de capas de relleno que soportan los bordes del forro." -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." +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." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correcciones de malla" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "El número de capas entre la base y la superficie de la balsa. Estas comprenden el espesor principal de la balsa. Al aumentar este número se crea una balsa más gruesa y resistente." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Consiga las mallas más adecuadas para la impresión 3D." +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." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volúmenes de superposiciones de uniones" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de borde mejoran la adhesión a la placa de impresión, pero requieren material adicional." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Eliminar todos los agujeros" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Elimina los agujeros en cada capa y mantiene solo la forma exterior. Esto ignorará cualquier geometría interna invisible. Sin embargo, también ignora los agujeros de la capa que pueden verse desde arriba o desde abajo." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "El número de capas del nivel superior del forro. Normalmente es suficiente con una sola capa para generar superficies superiores con mayor calidad." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Cosido amplio" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando el agujero con polígonos que se tocan. Esta opción puede agregar una gran cantidad de tiempo de procesamiento." +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear el suelo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantener caras desconectadas" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción, se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado." +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Superponer mallas combinadas" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "El número de paredes, contadas desde el centro, en las que se distribuirá la variación. Los valores más bajos indican que el ancho de las paredes externas no cambia." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Eliminar el cruce de mallas" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Diámetro exterior de la punta de la tobera." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales." +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar la retirada de las mallas" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Patrón de las estructuras del soporte de la impresión. Las diferentes opciones disponibles dan como resultado un soporte robusto o fácil de retirar." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Cambiar la malla a la que pertenecerán los volúmenes que se cruzan en cada capa, de forma que las mallas superpuestas se entrelacen. Desactivar esta opción dará lugar a que una de las mallas reciba todo el volumen de la superposición y que este se elimine de las demás mallas." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "El patrón de las capas de nivel superior." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Eliminar primeras capas vacías" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Patrón de las capas superiores/inferiores." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio." +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolución máxima" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "El patrón que se usará para el alisado de las superficies superiores." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "El tamaño mínimo de un segmento de línea tras la segmentación. Si se aumenta, la resolución de la malla será menor. Esto puede permitir a la impresora mantener la velocidad que necesita para procesar GCode y aumentará la velocidad de segmentación al eliminar detalles de la malla que, de todas formas, no puede procesar." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Patrón con el que se imprimen los suelos del soporte." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolución de desplazamiento máximo" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "El tamaño mínimo de un segmento de línea de desplazamiento tras la segmentación. Si se aumenta, los movimientos de desplazamiento tendrán esquinas menos suavizadas. Esto puede le permite a la impresora mantener la velocidad que necesita para procesar GCode pero puede ocasionar que evitar el modelo sea menos preciso." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Patrón con el que se imprimen los techos del soporte." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desviación máxima" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de la resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño. La desviación máxima es un límite para la resolución máxima, por lo que si las dos entran en conflicto, la desviación máxima siempre tendrá prioridad." +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "El ángulo para las ramas de preferencia cuando no tienen que evitar el modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para que las ramas se fusionen más rápido." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desviación máxima del área de extrusión" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "La colocación preferida para las estructuras de soporte. Si las estructuras no se pueden poner en la colocación preferida, se pondrán en otro lugar, incluso si eso significa situarlas sobre el modelo." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "La desviación máxima del área de extrusión permitida al eliminar puntos intermedios de una línea recta. Un punto intermedio puede actuar como un punto de cambio de ancho en una línea recta larga. Por lo tanto, si se elimina, la línea tendrá un ancho uniforme y, como resultado, perderá (o ganará) área de extrusión. En caso de incremento, es posible que observe una extrusión leve por debajo (o por encima) entre paredes paralelas rectas, ya que será posible eliminar múltiples puntos de cambio de ancho intermedio. La impresión será menos precisa, pero el GCode será más pequeño." +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Cambio en la velocidad instantánea máxima de la capa inicial." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Activar movimiento fluido" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forma del cabezal de impresión. Estas son las coordenadas relativas a la posición del cabezal de impresión, que generalmente es la posición de su primer extrusor. Las dimensiones de la izquierda y de la parte delantera del cabezal de impresión deben ser coordenadas negativas." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Cambio de distancia del movimiento fluido" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Tamaño de las bolsas en cruces del patrón de cruz 3D en las alturas en las que el patrón coincide consigo mismo." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Menor Volumen que deberá tener una trayectoria de extrusión antes de permitir el depósito por inercia. Para trayectorias de extrusión más pequeñas, se acumula menos presión en el tubo guía y, por tanto, el volumen depositado por inercia se escala linealmente. Este valor debe ser siempre mayor que el Volumen de depósito por inercia." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Pequeña distancia del movimiento fluido" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidad (°C/s) de enfriamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidad (°C/s) de calentamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ángulo de movimiento fluido" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Si un segmento de la trayectoria de la herramienta se desvía más de este ángulo del movimiento general, se suaviza." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Velocidad a la que se imprimen las áreas de forro del puente." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos especiales" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidad a la que se imprime el relleno." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas no tradicionales de imprimir sus modelos." +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidad a la que se realiza la impresión." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Secuencia de impresión" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." -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 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 "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén a menos de la distancia entre la boquilla y los ejes X/Y." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Velocidad a la que se imprimen las paredes del puente." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Todos a la vez" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Velocidad a la que giran los ventiladores al comienzo de la impresión. En las capas posteriores, la velocidad del ventilador aumenta gradualmente hasta la capa correspondiente a la velocidad normal del ventilador a altura." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Velocidad a la que giran los ventiladores antes de alcanzar el umbral. Cuando una capa se imprime más rápido que el umbral, la velocidad del ventilador se inclina gradualmente hacia la velocidad máxima del ventilador." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "De uno en uno" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Velocidad a la que giran los ventiladores en el tiempo mínimo de capa. La velocidad del ventilador aumenta gradualmente entre la velocidad normal y máxima del ventilador cuando se alcanza el umbral." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malla de relleno" +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." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilice esta malla para modificar el relleno de otras mallas con las que se superpone. Reemplaza las zonas de relleno de otras mallas con zonas de esta malla. Se sugiere imprimir una pared y no un forro superior/inferior para esta malla." +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rango de procesamiento de la malla" +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." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de relleno superpuestas. Las áreas en las que se superponen varias mallas de relleno tomarán la configuración de la malla con el rango más alto. Una malla de relleno con un rango superior modificará el relleno de las mallas de relleno con un rango inferior y mallas normales." +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." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Cortar malla" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente." +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." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" +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." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimir modelos como un molde que se pueden fundir para obtener un modelo que se parezca a los modelos de la placa de impresión." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Ancho de molde mínimo" +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." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Velocidad a la que se imprimen los suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la adhesión del soporte en la parte superior del modelo." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura del techo del molde" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ángulo del molde" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Velocidad a la que se imprimen las paredes exteriores. Imprimir la pared exterior a una velocidad inferior mejora la calidad final del forro. Sin embargo, una gran diferencia entre la velocidad de la pared interior y de la pared exterior afectará negativamente a la calidad." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Ángulo del voladizo de las paredes exteriores creado para el molde. 0º hará el perímetro exterior del molde vertical, mientras que 90º hará el exterior del modelo seguido del contorno del modelo." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Velocidad a la que se imprime la torre auxiliar. Imprimir la torre auxiliar a una velocidad inferior puede conseguir más estabilidad si la adherencia entre los diferentes filamentos es insuficiente." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malla de soporte" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Velocidad a la que se imprime la balsa." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malla antivoladizo" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilice esta malla para especificar los lugares del modelo en los que no debería detectarse ningún voladizo. Esta opción puede utilizarse para eliminar estructuras de soporte no deseadas." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superficie" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Velocidad a la que se imprimen la falda y el borde. Normalmente, esto se hace a la velocidad de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una velocidad diferente." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar el modelo como una superficie solo, un volumen o volúmenes con superficies sueltas. El modo de impresión normal solo imprime volúmenes cerrados. «Superficie» imprime una sola pared trazando la superficie de la malla sin relleno ni forro superior/inferior. «Ambos» imprime volúmenes cerrados de la forma habitual y cualquier polígono restante como superficies." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Velocidad a la que se imprime la estructura de soporte. Imprimir el soporte a una mayor velocidad puede reducir considerablemente el tiempo de impresión. La calidad de superficie de la estructura de soporte no es importante, ya que se elimina después de la impresión." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar el contorno exterior" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Velocidad a la que se realiza el movimiento vertical en la dirección Z para los saltos en Z. Suele ser inferior a la velocidad de impresión porque la placa de impresión o el puente de la máquina es más difícil de desplazar." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función solo se debería habilitar cuando cada capa contenga una única pieza." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidad a la que se imprimen las paredes." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Contornos espiralizados suaves" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Velocidad a la que pasa por encima de la superficie superior." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suaviza los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie." +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente." -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusión relativa" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidad a la que se imprimen las capas superiores/inferiores." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Características que aún no se han desarrollado por completo." +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Velocidad a la que se desplaza durante el depósito por inercia con relación a la velocidad de la trayectoria de extrusión. Se recomienda un valor ligeramente por debajo del 100%, ya que la presión en el tubo guía disminuye durante el movimiento depósito por inercia." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerancia de segmentación" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión. No influye en las estructuras de adhesión de la placa de impresión en sí, como el borde y la balsa." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerancia vertical en las capas cortadas. Los contornos de una capa se generan normalmente pasando las secciones entrecruzadas a través del medio de cada espesor de capa (Media). Alternativamente, cada capa puede tener áreas ubicadas dentro del volumen a través de todo el grosor de la capa (Exclusiva) o una capa puede tener áreas ubicadas dentro en cualquier lugar de la capa (Inclusiva). La opción Inclusiva permite conservar la mayoría de los detalles, la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original." +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Media" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para evitar que las partes ya impresas se separen de la placa de impresión. El valor de este ajuste se puede calcular automáticamente a partir del ratio entre la velocidad de desplazamiento y la velocidad de impresión." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusiva" +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." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimización del desplazamiento del relleno" +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." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Cuando está habilitado, se optimiza el orden en el que se imprimen las líneas de relleno para reducir la distancia de desplazamiento. La reducción del tiempo de desplazamiento obtenido depende en gran parte del modelo que se está fragmentando, el patrón de relleno, la densidad, etc. Tenga en cuenta que, para algunos modelos que tienen pequeñas áreas de relleno, el tiempo para fragmentar el modelo se puede aumentar en gran medida." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de flujo y temperatura" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)." +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Temperatura de la impresión." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferencia mínima de polígono" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa. Si el valor es 0, la placa de impresión no se calentará en la primera capa." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Se filtran los polígonos en capas segmentadas que tienen una circunferencia más pequeña que esta. Los valores más pequeños suponen una resolución de malla mayor a costa de un tiempo de segmentación. Está indicado, sobre todo, para impresoras SLA y modelos 3D muy pequeños con muchos detalles." +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la placa de impresión no se calentará." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Generar estructura entrelazada" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "En las ubicaciones donde se tocan los modelos, genere una estructura de haz entrelazado. Esto mejora la adhesión entre los modelos, especialmente de aquellos impresos en materiales diferentes." +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Grosor de las capas inferiores en la impresión. Este valor dividido por la altura de capa define el número de capas inferiores." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Ancho del haz entrelazado" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "El grosor del relleno extra que soporta los bordes del forro." -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "El ancho de los haces de la estructura entrelazada." +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientación de estructura entrelazada" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Grosor de los techos del soporte. Este valor controla el número de capas densas en la parte superior del soporte, donde apoya el modelo." -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Recuento de capas de haz entrelazado" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Grosor de las capas superiores en la impresión. Este valor dividido por la altura de capa define el número de capas superiores." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Grosor de las capas superiores/inferiores en la impresión. Este valor dividido por la altura de la capa define el número de capas superiores/inferiores." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidad del entrelazado" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Grosor de las paredes en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada, medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Grosor por capa de material de relleno. Este valor siempre debe ser un múltiplo de la altura de la capa y, de lo contrario, se redondea." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Distancia a los límites de entrelazado" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Grosor por capa de material de relleno de soporte. Este valor siempre debe ser un múltiplo de la altura de la capa; de lo contrario, se redondea." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "La distancia desde el exterior de un modelo en el que no se generarán estructuras entrelazadas, medida en celdas." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Tipo de GCode que se va a generar." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Descomponer el soporte en pedazos" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Omitir algunas conexiones de línea de soporte para que la estructura de soporte sea más fácil de descomponer. Este ajuste es aplicable al patrón de relleno del soporte en zigzag." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Ancho (dimensión sobre el eje X) del área de impresión." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamaño de los pedazos de soporte" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Omitir una conexión entre líneas de soporte una vez cada N milímetros a fin de lograr que la estructura de soporte resulte más fácil de descomponer." +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "El ancho de los haces de la estructura entrelazada." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Recuento de líneas de pedazos del soporte" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Anchura de la torre auxiliar." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar parabrisas" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Ancho dentro de la cual se fluctúa. Se recomienda mantener este valor por debajo del ancho de la pared exterior, ya que las paredes interiores permanecen inalteradas." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Esto creará una pared alrededor del modelo que atrapa el aire (caliente) y lo protege contra flujos de aire exterior. Es especialmente útil para materiales que se deforman fácilmente." +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." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distancia X/Y del parabrisas" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Coordenada X de la posición de la torre auxiliar." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Coordenada Y de la posición de la torre auxiliar." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitación del parabrisas" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" +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." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura del parabrisas" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Esto creará una pared alrededor del modelo que atrapa el aire (caliente) y lo protege contra flujos de aire exterior. Es especialmente útil para materiales que se deforman fácilmente." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas." +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diámetro de la punta" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Convertir voladizo en imprimible" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección XY (horizontalmente)." -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Cambiar la geometría del modelo impreso de modo que se necesite un soporte mínimo. Los voladizos descendentes se convertirán en voladizos llanos y las áreas inclinadas caerán para ser más verticales." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección Z (verticalmente)." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ángulo máximo del modelo" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar la contracción del material a medida que se enfría, el modelo se escala con este factor." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Ángulo máximo de los voladizos una vez que se han hecho imprimibles. Un valor de 0º hace que todos los voladizos sean reemplazados por una pieza del modelo conectada a la placa de impresión y un valor de 90º no cambiará el modelo." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Capas superiores" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima del agujero en voladizo" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distancia de expansión del forro superior" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "El área máxima de un agujero en la base del modelo antes de que se elimine mediante la herramienta Convertir voladizo en imprimible. Se conservarán los agujeros más pequeños. Con un valor de 0 mm² se rellenan todos los agujeros de la base del modelo." +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Anchura de retirada del forro superior" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar depósito por inercia" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleración de la superficie interna superior de la pared" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Depósito por inercia sustituye la última parte de una trayectoria de extrusión por una trayectoria de desplazamiento. El material rezumado se utiliza para imprimir la última parte de la trayectoria de extrusión con el fin de reducir el encordado." +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Sacudida de la pared exterior más externa de la superficie superior" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volumen de depósito por inercia" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidad de la pared interna de la superficie superior" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flujo de la pared interior de la superficie superior" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volumen mínimo antes del depósito por inercia" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleración de la superficie externa superior de la pared" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Menor Volumen que deberá tener una trayectoria de extrusión antes de permitir el depósito por inercia. Para trayectorias de extrusión más pequeñas, se acumula menos presión en el tubo guía y, por tanto, el volumen depositado por inercia se escala linealmente. Este valor debe ser siempre mayor que el Volumen de depósito por inercia." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flujo de la pared exterior de la superficie superior" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidad de depósito por inercia" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Sacudida de la pared interior de la superficie superior" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Velocidad a la que se desplaza durante el depósito por inercia con relación a la velocidad de la trayectoria de extrusión. Se recomienda un valor ligeramente por debajo del 100%, ya que la presión en el tubo guía disminuye durante el movimiento depósito por inercia." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidad de la pared externa de la superficie superior" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamaño de las bolsas 3D en cruces" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleración de la superficie superior del forro" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Tamaño de las bolsas en cruces del patrón de cruz 3D en las alturas en las que el patrón coincide consigo mismo." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor de la superficie superior del forro" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagen de densidad de relleno cruzada" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flujo de forro de superficie superior" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente en el relleno de la impresión." +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Impulso de la superficie superior del forro" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagen de densidad de relleno cruzada para soporte" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Capas de la superficie superior del forro" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente del soporte." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direcciones de línea de la superficie superior del forro" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activar soporte cónico" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ancho de línea de la superficie superior del forro" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patrón de la superficie superior del forro" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ángulo del soporte cónico" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidad de la superficie superior del forro" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Ángulo de inclinación del soporte cónico. Donde 0 grados es vertical y 90 grados es horizontal. Cuanto más pequeños son los ángulos, más robusto es el soporte, pero consta de más material. Los ángulos negativos hacen que la base del soporte sea más ancha que la parte superior." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Grosor superior" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Anchura mínima del soporte cónico" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "El revestimiento superior e inferior no se expandirá cuando las superficies superior e inferior del objeto tengan un ángulo mayor que este valor. Esto evita la expansión de las pequeñas áreas de revestimiento que se crean cuando la superficie del modelo tiene una pendiente casi vertical. Un ángulo de 0° es horizontal y no provoca la extensión de ningún revestimiento exterior, mientras que un ángulo de 90 ° es vertical y provoca la extensión de todo el revestimiento exterior." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Ancho mínimo al que se reduce la base del área de soporte cónico. Las anchuras pequeñas pueden producir estructuras de soporte inestables." +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior o inferior" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Forro difuso" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior o inferior" -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." +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleración superior/inferior" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Forro difuso exterior únicamente" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor superior/inferior" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Use solo los contornos de las piezas, no los orificios de las piezas." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flujo superior o inferior" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Grosor del forro difuso" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Impulso superior/inferior" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Ancho dentro de la cual se fluctúa. Se recomienda mantener este valor por debajo del ancho de la pared exterior, ya que las paredes interiores permanecen inalteradas." +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direcciones de línea superior/inferior" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidad del forro difuso" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ancho de línea superior/inferior" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Densidad media de los puntos introducidos en cada polígono en una capa. Tenga en cuenta que los puntos originales del polígono se descartan, así que una baja densidad produce una reducción de la resolución." +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patrón superior/inferior" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distancia de punto del forro difuso" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidad superior/inferior" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Grosor superior/inferior" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando la placa de impresión" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diámetro de la torre" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Factor de compensación del caudal" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ángulo del techo de la torre" -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." +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 "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar capas de adaptación" +msgctxt "travel label" +msgid "Travel" +msgstr "Desplazamiento" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo." +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleración de desplazamiento" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variación máxima de las capas de adaptación" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distancia para evitar al desplazarse" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base." +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Impulso de desplazamiento" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamaño de pasos de variación de las capas de adaptación" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidad de desplazamiento" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior." +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar el modelo como una superficie solo, un volumen o volúmenes con superficies sueltas. El modo de impresión normal solo imprime volúmenes cerrados. «Superficie» imprime una sola pared trazando la superficie de la malla sin relleno ni forro superior/inferior. «Ambos» imprime volúmenes cerrados de la forma habitual y cualquier polígono restante como superficies." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamaño de la topografía de las capas de adaptación" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árbol" -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." +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ángulo de voladizo de pared" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -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." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidad de voladizo de pared" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal." +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar ajustes del puente" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detección de puentes y modificación de los ajustes de velocidad de impresión, flujo y ventilador durante la impresión de puentes." +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diámetro del tronco" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longitud mínima de la pared del puente" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volúmenes de superposiciones de uniones" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." msgstr "Las paredes no compatibles menores que este valor se imprimirán utilizando los ajustes de pared habituales. Las paredes no compatibles mayores se imprimirán utilizando los ajustes de pared de puente." -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Umbral del soporte del forro del puente" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar capas de adaptación" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilice una tasa de aceleración independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de aceleración de la línea impresa en su destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilice una tasa de impulso independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de impulso de la línea impresa en su destino." -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." +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidad máxima de relleno de puente escaso" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Usa torres especializadas como soporte de pequeñas áreas de voladizo. Estas torres tienen un diámetro mayor que la región que soportan. El diámetro de las torres disminuye cerca del voladizo, formando un techo." -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 "La máxima densidad de relleno que se considera escasa. El forro sobre el relleno escaso se considera sin soporte y, por lo tanto, se puede tratar como un forro de puente." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilice esta malla para modificar el relleno de otras mallas con las que se superpone. Reemplaza las zonas de relleno de otras mallas con zonas de esta malla. Se sugiere imprimir una pared y no un forro superior/inferior para esta malla." -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Depósito por inercia de la pared del puente" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal." +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilice esta malla para especificar los lugares del modelo en los que no debería detectarse ningún voladizo. Esta opción puede utilizarse para eliminar estructuras de soporte no deseadas." -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidad de pared del puente" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificada por el usuario" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Velocidad a la que se imprimen las paredes del puente." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala vertical para la compensación de la contracción" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flujo de pared del puente" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerancia vertical en las capas cortadas. Los contornos de una capa se generan normalmente pasando las secciones entrecruzadas a través del medio de cada espesor de capa (Media). Alternativamente, cada capa puede tener áreas ubicadas dentro del volumen a través de todo el grosor de la capa (Exclusiva) o una capa puede tener áreas ubicadas dentro en cualquier lugar de la capa (Inclusiva). La opción Inclusiva permite conservar la mayoría de los detalles, la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original." -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar a que la placa de impresión se caliente" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidad de forro del puente" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar a la que la tobera se caliente" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Velocidad a la que se imprimen las áreas de forro del puente." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleración de la pared" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flujo de forro del puente" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Recuento de distribución de pared" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor de pared" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidad de forro del puente" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flujo de pared" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Impulso de pared" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidad del ventilador del puente" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Recuento de líneas de pared" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente." +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ancho de línea de pared" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Puente con varias capas" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Orden de paredes" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Si esta opción está habilitada, la segunda y tercera capa por encima del aire se imprimen utilizando los siguientes ajustes. De lo contrario, estas capas se imprimen utilizando los ajustes habituales." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidad de pared" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidad del segundo forro del puente" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Grosor de la pared" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longitud de transición de la pared" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flujo del segundo forro del puente" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distancia del filtro de transición a la pared" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margen del filtro de transición de pared" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidad del segundo forro del puente" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ángulo de umbral de transición de pared" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidad del ventilador del segundo forro del puente" +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." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente." +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidad del tercer forro del puente" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente." +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Cuando está habilitado, se optimiza el orden en el que se imprimen las líneas de relleno para reducir la distancia de desplazamiento. La reducción del tiempo de desplazamiento obtenido depende en gran parte del modelo que se está fragmentando, el patrón de relleno, la densidad, etc. Tenga en cuenta que, para algunos modelos que tienen pequeñas áreas de relleno, el tiempo para fragmentar el modelo se puede aumentar en gran medida." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flujo del tercer forro del puente" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Al habilitar esta opción, la velocidad del ventilador de enfriamiento de impresión cambia para las áreas de forro que se encuentran inmediatamente encima del soporte." -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Cuando se habilita, las coordenadas de la costura en z son relativas al centro de cada pieza. De lo contrario, las coordenadas definen una posición absoluta en la placa de impresión." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidad del tercer forro del puente" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Cuando es mayor que cero, la expansión horizontal de los orificios se aplica gradualmente en orificios pequeños (los orificios pequeños se expanden más). Cuando se establezca en cero, la expansión horizontal de los orificios se aplicará a todos ellos. Los orificios mayores que el diámetro máximo de expansión horizontal de los orificios no se expanden." -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidad del ventilador del tercer forro del puente" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Cuando es mayor que cero, la Expansión horizontal de agujeros es la cantidad de desplazamiento aplicada a todos los agujeros de cada capa. Los valores positivos aumentan el tamaño de los agujeros y los negativos lo reducen. Cuando esta configuración está activada, se puede ajustar aún más con el Diámetro máximo de expansión horizontal de agujeros." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpiar tobera entre capas" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "clean_between_layers description" -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 "Posibilidad de incluir GCode de limpieza de tobera entre capas (máximo 1 por capa). 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 "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volumen de material entre limpiezas" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor." -msgctxt "max_extrusion_before_wipe description" -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 "Material máximo que puede extruirse antes de que se inicie otra limpieza de la tobera. Si este valor es inferior al volumen de material necesario en una capa, el ajuste no tiene efecto en esa capa, es decir, se limita a una limpieza por capa." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Cuando se alcanza la velocidad mínima debido al tiempo mínimo de capa, levante el cabezal de la impresión y espere el tiempo adicional hasta que se alcance el tiempo mínimo de capa." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitación de retracción de limpieza" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Cuando el modelo tiene pequeños huecos verticales de solo unas pocas capas, normalmente suele haber forro alrededor de ellas en el espacio estrecho. Active este ajuste para no generar forro si el hueco vertical es muy pequeño. Esto mejora el tiempo de impresión y de segmentación, pero deja el relleno expuesto al aire." -msgctxt "wipe_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." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Cuándo crear transiciones entre números de pared pares e impares. Una forma de cuña con un ángulo mayor que esta configuración no tiene transacciones y no se imprimirán paredes en el centro para rellenar el espacio restante. Reducir esta configuración reduce el número y la longitud de estas paredes centrales, pero puede dejar espacios o sobreextrusión." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Cuando se pasa de un número de paredes a otro a medida que la pieza se hace más delgada, se asigna una determinada cantidad de espacio para dividir o unir las líneas de contorno." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distancia de retracción de limpieza" +msgctxt "wipe_hop_enable description" +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 "Siempre que se limpia, 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 los movimientos de desplazamiento, reduciendo las posibilidades de golpear la impresión desde la placa de impresión." -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza." +msgctxt "retraction_hop_enabled 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 "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Cantidad de cebado adicional de retracción de limpieza" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Elija si quiere que la distancia X/Y del soporte prevalezca sobre la distancia Z del soporte o viceversa. Si X/Y prevalece sobre Z, la distancia X/Y puede separar el soporte del modelo, lo que afectaría a la distancia Z real con respecto al voladizo. Esta opción puede desactivarse si la distancia X/Y no se aplica a los voladizos." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Indica si las coordenadas X/Y de la posición inicial del cabezal de impresión se encuentran en el centro del área de impresión." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidad de retracción de limpieza" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidad de retracción en retracción de limpieza" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción de limpieza" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Indica si los extrusores comparten una única tobera en lugar de que cada uno tenga la suya propia. Cuando se establece en true, se espera que la secuencia de comandos gcode de inicio de la impresora establezca todos los extrusores en un estado de retracción inicial conocido y mutuamente compatible (ninguno o un solo filamento que no se retrae); en este caso, el estado de retracción inicial se describe, por extrusor, mediante el parámetro \"machine_extruders_shared_nozzle_initial_retraction\"." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza." +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Indica si la máquina tiene una placa de impresión caliente." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausar limpieza" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa después de no haber retracción." +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Centrar o no el objeto en el centro de la plataforma de impresión (0, 0), en vez de utilizar el sistema de coordenadas con el que se guardó el objeto." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Limpiar salto en Z" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción." -msgctxt "wipe_hop_enable description" -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 "Siempre que se limpia, 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 los movimientos de desplazamiento, reduciendo las posibilidades de golpear la impresión desde la placa de impresión." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Elija si desea incluir comandos de temperatura de la placa de impresión al iniciar el Gcode. Si start_gcode ya contiene comandos de temperatura de la placa de impresión, la interfaz de Cura desactivará este ajuste de forma automática." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Limpiar altura del salto en Z" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Elija si desea incluir comandos de temperatura de la tobera al inicio del Gcode. Si start_gcode ya contiene comandos de temperatura de la tobera, la interfaz de Cura desactivará este ajuste de forma automática." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferencia de altura cuando se realiza un salto en Z." +msgctxt "clean_between_layers description" +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 "Posibilidad de incluir GCode de limpieza de tobera entre capas (máximo 1 por capa). 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 "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Limpiar velocidad de salto" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidad para mover el eje Z durante el salto." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Limpiar posición X de cepillo" +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 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 "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén a menos de la distancia entre la boquilla y los ejes X/Y." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Ubicación X donde se iniciará la secuencia de limpieza." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Recuento de repeticiones de limpieza" +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." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de movimientos de la tobera a lo largo del cepillo." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distancia de movimiento de limpieza" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ancho de una sola línea de relleno." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo." +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Ancho de una sola línea de techo o suelo de soporte." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamaño máximo de agujero pequeño" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Ancho de una sola línea de las áreas superiores de la impresión." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Los agujeros y contornos de las piezas con un diámetro menor que estos se imprimen utilizando la función Velocidad de pequeñas partes." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Ancho de una única línea. Generalmente, el ancho de cada línea se debería corresponder con el ancho de la tobera. Sin embargo, reducir este valor ligeramente podría producir mejores impresiones." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longitud máxima de pequeñas partes" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Ancho de una sola línea de la torre auxiliar." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Los contornos de las partes que sean más cortos que esta longitud se imprimen utilizando la función Velocidad de pequeñas partes." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Ancho de una sola línea de falda o borde." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidad de pequeñas partes" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Ancho de una sola línea de suelo de soporte." -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Ancho de una sola línea de techo de soporte." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidad de la capa inicial de partes pequeñas" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ancho de una sola línea de estructura de soporte." -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." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ancho de una sola línea superior/inferior." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternar direcciones de pared" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Le permite alternar las direcciones de las paredes entre capas o insertos. Útil para materiales que pueden acumular tensión, como para imprimir en metal." +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ancho de una sola línea de pared." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Quitar las esquinas internas de la balsa" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Ancho de las líneas de la capa intermedia de la balsa. Haciendo la segunda capa con mayor extrusión las líneas se adhieren a la placa de impresión." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Recuento de paredes base de balsa" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de la línea de comandos" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Ancho de la pared que reemplazará las características delgadas (según el tamaño mínimo de la característica) del modelo. Si el ancho mínimo de la línea perimetral es más delgado que el grosor de la característica, la pared se volverá tan gruesa como la propia característica." -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura." +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Limpiar posición X de cepillo" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centrar objeto" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Limpiar velocidad de salto" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Centrar o no el objeto en el centro de la plataforma de impresión (0, 0), en vez de utilizar el sistema de coordenadas con el que se guardó el objeto." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpiar tobera inactiva de la torre auxiliar" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distancia de movimiento de limpieza" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posición X en la malla" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpiar tobera entre capas" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Desplazamiento aplicado al objeto en la dirección x." +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausar limpieza" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posición Y en la malla" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Recuento de repeticiones de limpieza" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Desplazamiento aplicado al objeto en la dirección y." +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distancia de retracción de limpieza" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posición Z en la malla" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitación de retracción de limpieza" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»." +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Cantidad de cebado adicional de retracción de limpieza" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz de rotación de la malla" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción de limpieza" -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 "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidad de retracción en retracción de limpieza" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flujo gradual activado" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidad de retracción de limpieza" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Limpiar salto en Z" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleración máxima del flujo gradual" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Limpiar altura del salto en Z" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleración máxima para los cambios de flujo graduales" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Sobre el relleno" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleración máxima del flujo de la capa inicial" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escriba la herramienta activa después de enviar comandos temporales a la herramienta inactiva. Requerido para la impresión de extrusión dual con Smoothie u otro firmware con comandos de herramientas modales." -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Tope de X en dirección positiva" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamaño del paso de discretización del flujo gradual" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Ubicación X donde se iniciará la secuencia de limpieza." -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duración de cada paso en el cambio de flujo gradual" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y sobre Z" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Restablecer duración del flujo" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Tope de Y en dirección positiva" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Tope de Z en dirección positiva" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto en Z tras cambio de extrusor" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto en Z tras altura de cambio de extrusor" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta la colocación de las estructuras del soporte. La colocación se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte también se imprimirán en el modelo." +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura del salto en Z" -msgctxt "material description" -msgid "Material" -msgstr "Material" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto en Z solo en las partes impresas" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidad del salto en Z" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto en Z en la retracción" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alineación de costuras en Z" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posición de costura en Z" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costuras relativas en Z" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X de la costura Z" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y de la costura Z" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z sobre X/Y" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "material label" -msgid "Material" -msgstr "Material" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar las paredes exteriores" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flujo de la pared exterior de la superficie superior" +msgctxt "travel description" +msgid "travel" +msgstr "desplazamiento" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Distancia desde la parte inferior del soporte a la impresión." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flujo de la pared interior de la superficie superior" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Este valor se redondea hacia el múltiplo de la altura de la capa." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duración de cada paso en el cambio de flujo gradual" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidad de la pared externa de la superficie superior" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Activar cambios graduales de flujo. Cuando está activado, el flujo aumenta/disminuye gradualmente hasta el flujo objetivo. Esto es útil para impresoras con un tubo bowden donde el flujo no cambia inmediatamente cuando el motor del extrusor se enciende/apaga." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo de material se restablece con el flujo objetivo de las trayectorias" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidad de la pared interna de la superficie superior" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamaño del paso de discretización del flujo gradual" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Flujo gradual activado" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleración de la superficie externa superior de la pared" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleración máxima del flujo gradual" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleración máxima del flujo de la capa inicial" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleración de la superficie interna superior de la pared" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleración máxima para los cambios de flujo graduales" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidad mínima para los cambios de flujo graduales de la primera capa" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Sacudida de la pared interior de la superficie superior" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Borde de la torre auxiliar" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Sacudida de la pared exterior más externa de la superficie superior" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Restablecer duración del flujo" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial." diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index d3078381b4d..ec906fc71b3 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1777,7 +1777,7 @@ msgid "Printing Temperature Initial Layer" msgstr "" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +msgid "The temperature used for printing the first layer." msgstr "" msgctxt "material_initial_print_temperature label" @@ -2020,6 +2020,22 @@ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." msgstr "" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "" @@ -2188,6 +2204,22 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "" + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "" @@ -2372,6 +2404,22 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "" @@ -2532,6 +2580,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "" + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "" @@ -3313,7 +3377,7 @@ msgid "Support Z Distance" msgstr "" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." msgstr "" msgctxt "support_top_distance label" @@ -3329,7 +3393,7 @@ msgid "Support Bottom Distance" msgstr "" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." msgstr "" msgctxt "support_xy_distance label" @@ -4269,11 +4333,43 @@ msgid "After printing the prime tower with one nozzle, wipe the oozed material f msgstr "" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" +msgid "Prime Tower Base" msgstr "" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." msgstr "" msgctxt "ooze_shield_enabled label" @@ -5324,6 +5420,14 @@ msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "" + msgctxt "command_line_settings label" msgid "Command Line Settings" msgstr "" @@ -5372,118 +5476,3 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "" - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index 2be1863b49b..c3f331c1eff 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -548,6 +548,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Järjestä valinta" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -612,6 +616,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "" +msgctxt "@label" +msgid "Balanced" +msgstr "Tasapainotettu" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Pohja (mm)" @@ -996,6 +1004,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1240,10 +1252,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "" -msgctxt "@label" -msgid "Default" -msgstr "" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "" @@ -2331,6 +2339,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Hallitse materiaaleja..." @@ -3408,6 +3432,10 @@ msgctxt "description" msgid "Provides support for writing 3MF files." msgstr "Tukee 3MF-tiedostojen kirjoittamista." +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." msgstr "" @@ -4291,6 +4319,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Tasapainotettu profiili on suunniteltu tasapainottamaan tuottavuutta, pinnanlaatua, mekaanisia ominaisuuksia ja dimensionaalista tarkkuutta." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Pohjan korkeus alustasta millimetreinä." @@ -5503,18 +5535,6 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" -msgctxt "@label" -msgid "Balanced" -msgstr "Tasapainotettu" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Tasapainotettu profiili on suunniteltu tasapainottamaan tuottavuutta, pinnanlaatua, mekaanisia ominaisuuksia ja dimensionaalista tarkkuutta." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Järjestä valinta" - #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin." diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 98f4de3e8cc..e38e6b1af5b 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -743,16 +743,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Tulostettujen tukirakenteiden linjojen välinen etäisyys. Tämä asetus lasketaan tuen tiheyden perusteella." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Etäisyys tulosteesta tuen alaosaan." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Etäisyys tuen yläosasta tulosteeseen." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään ylöspäin kerroksen korkeuden kerrannaiseksi." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1094,6 +1094,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Virtauksen kompensointi yläpinnan uloimman seinän linjalla." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Virtauksen kompensointi yläpinnan seinälinjoilla kaikille seinälinjoille paitsi uloimman linjalle." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "" @@ -1278,6 +1286,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Ryhmittele ulkoseinät" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "" @@ -2442,6 +2454,10 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Ulkoseinämän täyttöliikkeen etäisyys" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Samaan kerrokseen kuuluvat eri saarten ulkoseinät tulostetaan peräkkäin. Kun toiminto on käytössä, virtauksen muutosten määrä on rajoitettu, koska seinät tulostetaan yksi kerrallaan. Kun toiminto on pois päältä, matkojen määrä saarten välillä vähenee, koska saman saaren seinät ryhmitellään." + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2495,7 +2511,19 @@ msgid "Prime Tower Acceleration" msgstr "Esitäyttötornin kiihtyvyys" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" msgstr "" msgctxt "prime_tower_flow label" @@ -2514,6 +2542,10 @@ msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Esitäyttötornin minimiainemäärä" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Esitäyttötornin koko" @@ -2531,7 +2563,7 @@ msgid "Prime Tower Y Position" msgstr "Esitäyttötornin Y-sijainti" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." msgstr "" msgctxt "acceleration_print label" @@ -3602,6 +3634,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "Kiihtyvyys, jolla pohjaristikon pintakerrokset tulostetaan." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Yläpinnan sisäseinien tulostamisen kiihtyvyys." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Yläpinnan uloimpien seinien tulostamisen kiihtyvyys." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Kiihtyvyys, jolla seinämät tulostetaan." @@ -3742,6 +3782,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Pohjaristikon pintakerrosten linjojen välinen etäisyys. Linjajaon tulisi olla sama kuin linjaleveys, jotta pinta on kiinteä." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3938,6 +3982,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "Alkukerroksen korkeus milleinä. Paksumpi alkukerros helpottaa alustaan kiinnittymistä." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin. Poista porrasmainen ominaisuus käytöstä valitsemalla asetukseksi nolla." @@ -4008,6 +4056,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "" @@ -4100,6 +4152,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "Tukirakenteen tulostuksen nopeuden hetkellinen maksimimuutos." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Yläpinnan uloimman seinän tulostuksessa tapahtuva suurin välitön nopeuden muutos." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Yläpinnan sisäseinien tulostuksessa tapahtuva suurin välitön nopeuden muutos." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "Seinämien tulostuksen nopeuden hetkellinen maksimimuutos." @@ -4484,6 +4544,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "Nopeus, jolla pohjaristikon pintakerrokset tulostetaan. Nämä tulisi tulostaa hieman hitaammin, jotta suutin voi hitaasti tasoittaa vierekkäisiä pintalinjoja." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Yläpinnan sisäseinien tulostusnopeus." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Yläpinnan uloimpien seinien tulostusnopeus." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "" @@ -4545,8 +4613,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Lämpötila, johon jäähdytetään jo ennen tulostuksen loppumista." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Ensimmäisen kerroksen tulostuksessa käytettävä lämpötila. Aseta arvoon 0, jos et halua käyttää alkukerroksen erikoiskäsittelyä." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4624,6 +4692,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Esitäyttötornin leveys." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Esitäyttötornin leveys." @@ -4692,6 +4764,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Yläpintakalvon poistoleveys" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Yläpinnan sisäseinän kiihtyvyys" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Yläpinnan uloimman seinän nykäys" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Yläpinnan sisäseinän nopeus" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Yläpinnan sisäseinän virtaus" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Yläpinnan ulkoseinän kiihtyvyys" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Yläpinnan uloimman seinän virtaus" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Yläpinnan sisäseinän nykäys" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Yläpinnan pintakalvon kiihtyvyys" @@ -5380,124 +5484,6 @@ msgctxt "travel description" msgid "travel" msgstr "siirtoliike" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Ryhmittele ulkoseinät" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Samaan kerrokseen kuuluvat eri saarten ulkoseinät tulostetaan peräkkäin. Kun toiminto on käytössä, virtauksen muutosten määrä on rajoitettu, koska seinät tulostetaan yksi kerrallaan. Kun toiminto on pois päältä, matkojen määrä saarten välillä vähenee, koska saman saaren seinät ryhmitellään." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Yläpinnan uloimman seinän virtaus" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Virtauksen kompensointi yläpinnan uloimman seinän linjalla." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Yläpinnan sisäseinän virtaus" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Virtauksen kompensointi yläpinnan seinälinjoilla kaikille seinälinjoille paitsi uloimman linjalle." - -msgctxt "speed_wall_0_roofing label" -msgid "Yläpinnan uloimman seinän nopeus" -msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Yläpinnan uloimpien seinien tulostusnopeus." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Yläpinnan sisäseinän nopeus" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Yläpinnan sisäseinien tulostusnopeus." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Yläpinnan ulkoseinän kiihtyvyys" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Yläpinnan uloimpien seinien tulostamisen kiihtyvyys." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Yläpinnan sisäseinän kiihtyvyys" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Yläpinnan sisäseinien tulostamisen kiihtyvyys." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Yläpinnan sisäseinän nykäys" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Yläpinnan sisäseinien tulostuksessa tapahtuva suurin välitön nopeuden muutos." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Yläpinnan uloimman seinän nykäys" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Yläpinnan uloimman seinän tulostuksessa tapahtuva suurin välitön nopeuden muutos." - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - - #~ 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)" @@ -5666,10 +5652,18 @@ msgstr "" #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." #~ msgstr "Tulostettujen tukiliittymän linjojen välinen etäisyys. Tämä asetus lasketaan tukiliittymän tiheysarvosta, mutta sitä voidaan säätää erikseen." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Etäisyys tulosteesta tuen alaosaan." + #~ msgctxt "support_z_distance description" #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." #~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään alaspäin kerroksen korkeuden kerrannaiseksi." +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään ylöspäin kerroksen korkeuden kerrannaiseksi." + #~ msgctxt "wireframe_up_half_speed description" #~ msgid "" #~ "Distance of an upward move which is extruded with half speed.\n" @@ -6226,6 +6220,10 @@ msgstr "" #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." #~ msgstr "Alkukerroksen nopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Ensimmäisen kerroksen tulostuksessa käytettävä lämpötila. Aseta arvoon 0, jos et halua käyttää alkukerroksen erikoiskäsittelyä." + #~ msgctxt "material_print_temperature description" #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." #~ msgstr "Tulostuksessa käytettävä lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti." @@ -6406,6 +6404,10 @@ msgstr "" #~ msgid "Wire Printing" #~ msgstr "Rautalankatulostus" +#~ msgctxt "speed_wall_0_roofing label" +#~ msgid "Yläpinnan uloimman seinän nopeus" +#~ msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" + #~ msgctxt "z_offset_taper_layers label" #~ msgid "Z Offset Taper Layers" #~ msgstr "Z-siirtymän kapenevat kerrokset" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index f57b50bcf9c..8b622fb4f8a 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -137,7 +138,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Vous devez redémarrer l'application pour appliquer ces changements." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace- Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins- Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" msgctxt "@heading" @@ -164,6 +168,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Fichier 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Lecteur 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Générateur 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Le plugin 3MF Writer est corrompu." @@ -184,29 +196,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Seuls les paramètres modifiés par l'utilisateur seront enregistrés dans le profil personnalisé.
    Pour les matériaux qui le permettent, le nouveau profil personnalisé héritera des propriétés de %1." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Moteur de rendu OpenGL: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Revendeur OpenGL: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Version OpenGL: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

    \n

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Une erreur fatale est survenue dans Cura. Veuillez nous envoyer ce rapport d'incident pour résoudre le problème

    \n" +"

    Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Oups, un problème est survenu dans UltiMaker Cura.

    \n

    Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

    \n

    Les sauvegardes se trouvent dans le dossier de configuration.

    \n

    Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Oups, un problème est survenu dans UltiMaker Cura.

    \n" +"

    Une erreur irrécupérable est survenue lors du démarrage. Elle peut avoir été causée par des fichiers de configuration incorrects. Nous vous suggérons de sauvegarder et de réinitialiser votre configuration.

    \n" +"

    Les sauvegardes se trouvent dans le dossier de configuration.

    \n" +"

    Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle:

    \n

    {model_names}

    \n

    Découvrez comment optimiser la qualité et la fiabilité de l'impression.

    \n

    Consultez le guide de qualité d'impression

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle:

    \n" +"

    {model_names}

    \n" +"

    Découvrez comment optimiser la qualité et la fiabilité de l'impression.

    \n" +"

    Consultez le guide de qualité d'impression

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -226,6 +266,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Fichier AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Lecteur AMF" + msgctxt "@label" msgid "Abort" msgstr "Abandonner" @@ -262,6 +306,10 @@ msgctxt "@button" msgid "Accept" msgstr "Accepter" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." + msgctxt "@label" msgid "Account synced" msgstr "Compte synchronisé" @@ -354,6 +402,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Ajouter l'imprimante manuellement" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte" @@ -390,10 +439,23 @@ msgctxt "@button" msgid "Agree" msgstr "Accepter" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tous les fichiers (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tous les types supportés ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Autoriser l'envoi de données anonymes" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permet le chargement et l'affichage de fichiers G-Code." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Toujours me demander" @@ -466,6 +528,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement?" @@ -474,6 +537,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Voulez-vous vraiment supprimer l'objet {0}? Cette action est irréversible!" @@ -486,6 +554,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organiser tous les modèles sur une grille" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Posez une question" @@ -534,6 +606,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Sauvegarder et réinitialiser la configuration" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sauvegardez et restaurez votre configuration." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plugins" @@ -546,6 +622,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Sauvegardes" +msgctxt "@label" +msgid "Balanced" +msgstr "Équilibré" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -622,10 +702,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Impossible de vous connecter à votre imprimante UltiMaker ?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossible d'importer le profil depuis {0} avant l'ajout d'une imprimante." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée" @@ -634,6 +716,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Impossible d'écrire dans le fichier UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuler" + msgctxt "@button" msgid "Cancel" msgstr "Annuler" @@ -694,8 +780,21 @@ msgctxt "@label" msgid "Checking..." msgstr "Vérification en cours..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Vérifie les mises à jour du firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Choisit entre les stratégies de support disponibles. Le support « Normal » créé une structure de support directement sous les zones en porte-à-faux et fait descendre les supports directement vers le bas. Le support « Arborescent » génère une structure de branches depuis le plateau tout autour du modèle qui vont supporter les portes-à-faux sans toucher le modèle ailleur que les zones supportées." msgctxt "@action:inmenu menubar:edit" @@ -774,6 +873,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Fichier G-Code compressé" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lecteur G-Code compressé" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Générateur de G-Code compressé" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Modifications de configuration" @@ -810,6 +917,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmer le changement de diamètre" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmer la suppression" + msgctxt "@action:button" msgid "Connect" msgstr "Connecter" @@ -842,6 +953,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Connecté via le cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consultez la communauté UltiMaker." @@ -882,6 +997,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}." @@ -894,6 +1010,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Impossible d'interpréter la réponse du serveur." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Impossible d'accéder à la Marketplace." @@ -906,6 +1026,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossible d'enregistrer l'archive du matériau dans {} :" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossible d'enregistrer {0} : {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" @@ -914,17 +1040,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossible de transférer les données à l'imprimante." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}\nIl n'y a pas d'autorisation pour exécuter le processus." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Impossible de démarrer EnginePlugin : {self._plugin_id}\n" +"Il n'y a pas d'autorisation pour exécuter le processus." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}\nLe système d'exploitation le bloque (antivirus ?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Impossible de démarrer EnginePlugin : {self._plugin_id}\n" +"Le système d'exploitation le bloque (antivirus ?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}\nLa ressource est temporairement indisponible" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Impossible de démarrer EnginePlugin : {self._plugin_id}\n" +"La ressource est temporairement indisponible" msgctxt "@title:window" msgid "Crash Report" @@ -966,6 +1107,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Créez des projets d'impression dans Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Création de votre sauvegarde..." @@ -978,10 +1123,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Sauvegardes Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profil Cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lecteur de profil Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Générateur de profil Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Projet Cura fichier 3MF" @@ -994,13 +1151,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Échec du démarrage de Cura" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\nCura est fier d'utiliser les projets open source suivants :" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n" +"Cura est fier d'utiliser les projets open source suivants :" msgctxt "@label" msgid "Cura language" @@ -1010,6 +1172,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Version Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Système CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Devise:" @@ -1090,10 +1264,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Défaut" -msgctxt "@label" -msgid "Default" -msgstr "Défaut" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : " @@ -1266,10 +1436,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Ejecter" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejecter le lecteur amovible {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité." @@ -1294,6 +1466,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Activé" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "G-Code de fin" @@ -1322,6 +1498,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Saisissez l'adresse IP de votre imprimante." +msgctxt "@info:title" +msgid "Error" +msgstr "Erreur" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Retraçage de l'erreur" @@ -1366,6 +1546,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "L'exportation a réussi" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil exporté vers {0}" @@ -1374,6 +1555,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Étendez UltiMaker Cura avec des plugins et des profils de matériaux." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" + msgctxt "@label" msgid "Extruder" msgstr "Extrudeuse" @@ -1410,6 +1595,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Échec de la création de l'archive des matériaux à synchroniser avec les imprimantes." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur." @@ -1418,22 +1604,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Échec de l'exportation de matériau vers %1 : %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Échec de l'exportation du profil vers {0} : {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Échec de l'exportation du profil vers {0}: le plugin du générateur a rapporté une erreur." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0} :" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossible d'importer le profil depuis {0}: {1}" @@ -1466,6 +1657,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Poids du filament" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Le fichier existe déjà" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Fichier enregistré" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Le fichier {0} ne contient pas de profil valide." @@ -1498,6 +1698,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Mise à jour du firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Vérificateur des mises à jour du firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Programme de mise à jour du firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante." @@ -1594,6 +1802,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Fichier GCode" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lecteur de profil G-Code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lecteur G-Code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Générateur de G-Code" + msgctxt "@label" msgid "G-code flavor" msgstr "Parfum G-Code" @@ -1626,6 +1846,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Hauteur du portique" +msgctxt "@title:tab" +msgid "General" +msgstr "Général" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." @@ -1658,6 +1882,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Positionnement de la grille" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groupe nº {group_nr}" @@ -1730,6 +1955,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le guide de dépannage de l'impression en réseau" +msgctxt "name" +msgid "Image Reader" +msgstr "Lecteur d'images" + msgctxt "@action:button" msgid "Import" msgstr "Importer" @@ -1978,6 +2207,10 @@ msgctxt "@action" msgid "Learn more" msgstr "En savoir plus" +msgctxt "@action:button" +msgid "Learn more" +msgstr "En savoir plus" + msgctxt "@button" msgid "Learn more" msgstr "En savoir plus" @@ -2006,6 +2239,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vue gauche" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lecteur de profil Cura antérieur" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informez les développeurs en cas de problème." @@ -2086,6 +2323,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Journaux" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Connexion avec l'imprimante perdue" @@ -2094,6 +2335,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Paramètres de la machine" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Action Paramètres de la machine" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Machines" @@ -2106,6 +2351,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gérer les matériaux..." @@ -2154,6 +2415,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gérez vos plug-ins Ultimaker Cura et vos profils matériaux ici. Assurez-vous de maintenir vos plug-ins à jour et de sauvegarder régulièrement votre configuration." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gère les connexions réseau vers les imprimantes UltiMaker en réseau." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabricant" @@ -2166,6 +2435,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + msgctxt "@action:label" msgid "Material" msgstr "Matériau" @@ -2182,6 +2455,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Couleur du matériau" +msgctxt "name" +msgid "Material Profiles" +msgstr "Profils matériels" + msgctxt "@label" msgid "Material Type" msgstr "Type de matériau" @@ -2226,6 +2503,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Mode" +msgctxt "name" +msgid "Model Checker" +msgstr "Contrôleur de modèle" + msgctxt "@info:title" msgid "Model Errors" msgstr "Erreurs du modèle" @@ -2242,6 +2523,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Surveiller" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Étape de surveillance" + msgctxt "@action:button" msgid "Monitor print" msgstr "Surveiller l'impression" @@ -2316,6 +2601,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Erreur de réseau" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nouveau %s firmware stable disponible" @@ -2328,6 +2614,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Les nouvelles imprimantes UltiMaker peuvent être connectées à Digital Factory et contrôlées à distance." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne l'avez pas encore fait, il est recommandé de mettre à jour le micrologiciel de votre imprimante avec la version {latest_version}." @@ -2374,6 +2661,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Aucune estimation des coûts n'est disponible" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Aucun profil personnalisé à importer dans le fichier {0}" @@ -2482,7 +2770,11 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Nombre d'extrudeuses" -msgctxt "@label" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +msgctxt "@label" msgid "OS language" msgstr "Langue du SE" @@ -2502,6 +2794,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Afficher uniquement les couches supérieures" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée" @@ -2635,7 +2928,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Coller depuis le presse-papiers" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Mettre en pause" @@ -2660,6 +2952,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Paramètres par modèle" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Outil de paramètres par modèle" + msgid "Perspective" msgstr "Perspective" @@ -2696,8 +2992,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Assurez-vous que votre imprimante est connectée:\n- Vérifiez si l'imprimante est sous tension.\n- Vérifiez si l'imprimante est connectée au réseau.\n- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Assurez-vous que votre imprimante est connectée:\n" +"- Vérifiez si l'imprimante est sous tension.\n" +"- Vérifiez si l'imprimante est connectée au réseau.\n" +"- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +3015,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Veuillez fournir un nom pour ce profil." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Veuillez lire et accepter la licence du plugin." @@ -2720,8 +3028,16 @@ msgid "Please remove the print" msgstr "Supprimez l'imprimante" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Veuillez vérifier les paramètres et si vos modèles:\n- S'intègrent dans le volume de fabrication\n- Sont affectés à un extrudeur activé\n- N sont pas tous définis comme des mailles de modificateur" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Veuillez vérifier les paramètres et si vos modèles:\n" +"- S'intègrent dans le volume de fabrication\n" +"- Sont affectés à un extrudeur activé\n" +"- N sont pas tous définis comme des mailles de modificateur" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2771,6 +3087,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-traitement" +msgctxt "name" +msgid "Post Processing" +msgstr "Post-traitement" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plugin de post-traitement" @@ -2787,6 +3107,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Préparer" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Étape de préparation" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Préparation..." @@ -2807,6 +3131,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Aperçu" +msgctxt "name" +msgid "Preview Stage" +msgstr "Étape de prévisualisation" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Tour primaire" @@ -2935,6 +3263,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Les paramètres de l'imprimante seront mis à jour pour correspondre aux paramètres enregistrés pour le projet." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Imprimantes" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Imprimantes ajoutées à partir de Digital Factory:" @@ -2995,6 +3327,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Paramètres du profil" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu." @@ -3019,18 +3352,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Langage de programmation" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Le fichier projet {0} contient un type de machine inconnu {1}. Impossible d'importer la machine. Les modèles seront importés à la place." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Le fichier de projet {0} est corrompu: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Le fichier de projet {0} a été réalisé en utilisant des profils inconnus de cette version d'UltiMaker Cura." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Le fichier de projet {0} est soudainement inaccessible: {1}." @@ -3039,6 +3376,106 @@ msgctxt "@label" msgid "Properties" msgstr "Propriétés" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fournit une étape de surveillance dans Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Affiche une vue en maille solide normale." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fournit une étape de préparation dans Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fournit une étape de prévisualisation dans Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fournit la prise en charge de l'exportation de profils Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fournit la prise en charge de l'importation de profils Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fournit la prise en charge de la lecture de fichiers AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fournit un support pour la lecture des paquets de format UltiMaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fournit la prise en charge de la lecture de fichiers X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Permet l'écriture de fichiers 3MF." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permet l'écriture de fichiers UltiMaker Format Package." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fournit les paramètres par modèle." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permet la vue Rayon-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fournit l'aperçu des données du slice." + msgctxt "@label" msgid "PyQt version" msgstr "Version PyQt" @@ -3059,6 +3496,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Version Qt" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Le type de qualité '{0}' n'est pas compatible avec la définition actuelle de la machine active '{1}'." @@ -3075,6 +3513,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Quitter %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lit le G-Code à partir d'une archive compressée." + msgctxt "@button" msgid "Recommended" msgstr "Recommandé" @@ -3127,6 +3569,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Lecteur amovible" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin de périphérique de sortie sur disque amovible" + msgctxt "@action:button" msgid "Remove" msgstr "Supprimer" @@ -3143,6 +3589,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Renommer" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Renommer le profil" @@ -3279,14 +3729,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Enregistrer sur un lecteur amovible" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Enregistrer sur un lecteur amovible {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Enregistré sur le lecteur amovible {0} sous {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Enregistrement" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Enregistrement sur le lecteur amovible {0}" @@ -3379,6 +3836,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Envoi de matériaux à l'imprimante" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Journal d'événements dans Sentry" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothèque de communication série" @@ -3411,6 +3872,10 @@ msgctxt "@label" msgid "Settings" msgstr "Paramètres" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Paramètres" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles:" @@ -3571,6 +4036,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Connectez-vous à la plateforme UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Vue simulation" + msgctxt "@tooltip" msgid "Skin" msgstr "Couche extérieure" @@ -3599,6 +4068,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Découper automatiquement si les paramètres sont modifiés." +msgctxt "name" +msgid "Slice info" +msgstr "Information sur le découpage" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Échec de la découpe" @@ -3615,13 +4088,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Lissage" +msgctxt "name" +msgid "Solid View" +msgstr "Vue solide" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vue solide" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n\nCliquez pour rendre ces paramètres visibles." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.\n" +"\n" +"Cliquez pour rendre ces paramètres visibles." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3636,8 +4119,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Certaines valeurs de paramètres définies dans %1 ont été remplacées." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n\nCliquez pour ouvrir le gestionnaire de profils." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n" +"\n" +"Cliquez pour ouvrir le gestionnaire de profils." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +4152,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Parrainer Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Parrainer Cura" @@ -3709,6 +4196,10 @@ msgctxt "@label" msgid "Strength" msgstr "Résistance" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Matériau exporté avec succès vers %1" @@ -3717,6 +4208,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Matériau %1 importé avec succès" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." @@ -3737,6 +4229,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Blocage des supports" +msgctxt "name" +msgid "Support Eraser" +msgstr "Effaceur de support" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Remplissage du support" @@ -3843,6 +4339,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "La sauvegarde dépasse la taille de fichier maximale." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Le profil équilibré est conçu pour trouver un équilibre entre la productivité, la qualité de surface, les propriétés mécaniques et la précision dimensionnelle." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "La hauteur de la base à partir du plateau en millimètres." @@ -3899,6 +4399,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Le chemin d'extrusion à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations." @@ -3958,8 +4463,22 @@ msgid "The nozzle inserted in this extruder." msgstr "Buse insérée dans cet extrudeur." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Motif de remplissage de la pièce :\n\nPour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair.\n\nPour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal.\n\nPour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"Motif de remplissage de la pièce :\n" +"\n" +"Pour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair.\n" +"\n" +"Pour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal.\n" +"\n" +"Pour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4111,6 +4630,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Le profil {0} contient des données incorrectes ; échec de l'importation." @@ -4124,8 +4644,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Ce projet comporte des contenus ou des plugins qui ne sont pas installés dans Cura pour le moment.
    Installez les packages manquants et ouvrez à nouveau le projet." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Ce paramètre possède une valeur qui est différente du profil.\n\nCliquez pour restaurer la valeur du profil." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Ce paramètre possède une valeur qui est différente du profil.\n" +"\n" +"Cliquez pour restaurer la valeur du profil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4142,8 +4668,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n\nCliquez pour restaurer la valeur calculée." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie.\n" +"\n" +"Cliquez pour restaurer la valeur calculée." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4169,6 +4701,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Pour synchroniser automatiquement les profils de matériaux avec toutes vos imprimantes connectées à Digital Factory, vous devez être connecté à Cura." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Pour établir une connexion, veuillez visiter le site {website_link}" @@ -4181,6 +4714,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}" @@ -4229,6 +4763,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lecteur de Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Dépannage" @@ -4245,10 +4783,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Type" +msgctxt "@label" +msgid "Type" +msgstr "Type" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Lecteur UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Générateur UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impression par USB" +msgctxt "name" +msgid "USB printing" +msgstr "Impression par USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Compte UltiMaker" @@ -4265,6 +4819,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connexion réseau UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Package UltiMaker vérifié" @@ -4273,6 +4831,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plugin UltiMaker vérifié" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Actions de la machine UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Imprimante UltiMaker" @@ -4285,6 +4847,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossible d'ajouter le profil." @@ -4293,13 +4859,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "L'exécutable du serveur EnginePlugin local est introuvable pour : {self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}\nL'accès est refusé." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}\n" +"L'accès est refusé." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4321,10 +4893,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Impossible de couper en raison de certains paramètres par modèle. Les paramètres suivants contiennent des erreurs sur un ou plusieurs modèles: {error_labels}" @@ -4333,6 +4907,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs: {0}" @@ -4381,6 +4956,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Dossier inconnu" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression: {0}" @@ -4445,13 +5021,117 @@ msgctxt "@button" msgid "Updating..." msgstr "Mise à jour..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Charger le firmware personnalisé" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Téléchargement de la tâche d'impression sur l'imprimante." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Charger le firmware personnalisé" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Téléchargement de la tâche d'impression sur l'imprimante." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4477,6 +5157,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Bibliothèque d'utilitaires, y compris la génération d'un diagramme Voronoï" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Mise à niveau vers 2.1 vers 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Mise à niveau de 2.2 vers 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Mise à niveau de 2.5 vers 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Mise à niveau de 2.6 vers 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Mise à niveau de version, de 2.7 vers 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Mise à niveau de version, de 3.0 vers 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Mise à niveau de 3.2 vers 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Mise à niveau de 3.3 vers 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Mise à niveau de 3.4 vers 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Mise à niveau de 3.5 vers 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Mise à niveau de 4.0 vers 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Mise à jour de 4.1 vers 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Mise à niveau de la version 4.11 vers la version 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Mise à niveau de la version 4.13 vers la version 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Mise à jour de 4.2 vers 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Mise à niveau de 4.3 vers 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Mise à niveau de 4.4 vers 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Mise à niveau de 4.5 vers 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Mise à niveau de 4.6.0 vers 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Mise à niveau de 4.6.2 vers 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Mise à niveau de 4.7 vers 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Mise à niveau de 4.8 vers 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Mise à niveau de 4.9 vers 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Mise à niveau de 5.2 vers 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Mise à niveau de la version 5.3 vers 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Mise à niveau de la version 5.4 vers 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Afficher les imprimantes dans Digital Factory" @@ -4525,6 +5309,11 @@ msgctxt "@button" msgid "Want more?" msgstr "Vous en voulez plus ?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Avertissement" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avertissement: le profil n'est pas visible car son type de qualité '{0}' n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité." @@ -4585,6 +5374,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Largeur (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Enregistre le G-Code dans une archive compressée." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Enregistre le G-Code dans un fichier." + msgctxt "@label" msgid "X (Width)" msgstr "X (Largeur)" @@ -4597,6 +5394,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vue Rayon-X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Visualisation par rayons X" @@ -4609,6 +5410,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Fichier X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lecteur X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondeur)" @@ -4626,19 +5431,33 @@ msgid "Yes" msgstr "Oui" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n" +"Voulez-vous vraiment continuer?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" -msgstr[1] "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\n" +"Voulez-vous vraiment continuer?" +msgstr[1] "" +"Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n" +"Voulez-vous vraiment continuer?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas UltiMaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe." @@ -4649,7 +5468,10 @@ msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauve msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Vous avez personnalisé certains paramètres de profil.\nSouhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\nVous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." +msgstr "" +"Vous avez personnalisé certains paramètres de profil.\n" +"Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n" +"Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4679,9 +5501,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Votre nouvelle imprimante apparaîtra automatiquement dans Cura" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Votre imprimante {printer_name} pourrait être connectée via le cloud.\n Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Votre imprimante {printer_name} pourrait être connectée via le cloud.\n" +" Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" msgctxt "@label" msgid "Z" @@ -4739,6 +5566,7 @@ msgctxt "@label" msgid "version: %1" msgstr "version : %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte." @@ -4747,630 +5575,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Échec de téléchargement des plugins {}" -msgid "Provides support for exporting Cura profiles." -msgstr "Fournit une assistance pour l’exportation de profils Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Générateur de profil Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." - -msgctxt "name" -msgid "Slice info" -msgstr "Information sur le découpage" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Défaut" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lecteur de profil Cura antérieur" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fournit la prise en charge de la lecture de fichiers X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lecteur X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permet l'écriture de fichiers UltiMaker Format Package." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Générateur UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Mise à niveau de 3.5 vers 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Mise à jour de 4.1 vers 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Mise à niveau de 4.7 vers 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Mise à niveau de 4.9 vers 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Mise à niveau de 3.2 vers 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Mise à niveau de version, de 2.7 vers 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Mise à niveau de la version 4.11 vers la version 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Mise à niveau de 2.6 vers 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Mise à niveau de 4.8 vers 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Mise à niveau de 4.3 vers 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Mise à niveau de 3.3 vers 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Mise à niveau de 4.4 vers 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Mise à niveau de 2.5 vers 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Mise à niveau vers 2.1 vers 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Mise à jour de 4.2 vers 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Mise à niveau de 5.2 vers 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Mise à niveau de 4.0 vers 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Mise à niveau de 2.2 vers 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Mise à niveau de 3.4 vers 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Mise à niveau de la version 4.13 vers la version 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Mise à niveau de la version 5.4 vers 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Mise à niveau de 4.5 vers 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Mise à niveau de version, de 3.0 vers 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Mise à niveau de 4.6.0 vers 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Mise à niveau de 4.6.2 vers 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Mise à niveau de la version 5.3 vers 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" - -msgctxt "name" -msgid "Post Processing" -msgstr "Post-traitement" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fournit l'aperçu des données du slice." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vue simulation" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fournit la prise en charge de l'importation de profils Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lecteur de profil Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fournit les paramètres par modèle." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Outil de paramètres par modèle" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fournit une étape de prévisualisation dans Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Étape de prévisualisation" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Effaceur de support" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permet le chargement et l'affichage de fichiers G-Code." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lecteur G-Code" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sauvegardez et restaurez votre configuration." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin de périphérique de sortie sur disque amovible" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Profils matériels" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Actions de la machine UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permet la vue Rayon-X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vue Rayon-X" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gère les connexions réseau vers les imprimantes UltiMaker en réseau." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Connexion réseau UltiMaker" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Action Paramètres de la machine" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lecteur de Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fournit une étape de surveillance dans Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Étape de surveillance" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lecteur d'images" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Programme de mise à jour du firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Système CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fournit une étape de préparation dans Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Étape de préparation" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Vérifie les mises à jour du firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Vérificateur des mises à jour du firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Enregistre le G-Code dans un fichier." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Générateur de G-Code" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." - -msgctxt "name" -msgid "Model Checker" -msgstr "Contrôleur de modèle" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lecteur 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impression par USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fournit la prise en charge de la lecture de fichiers AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lecteur AMF" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lecteur de profil G-Code" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Affiche une vue en maille solide normale." - -msgctxt "name" -msgid "Solid View" -msgstr "Vue solide" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Journal d'événements dans Sentry" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lit le G-Code à partir d'une archive compressée." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lecteur G-Code compressé" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fournit un support pour la lecture des paquets de format UltiMaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Lecteur UFP" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Permet l'écriture de fichiers 3MF." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Générateur 3MF" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Enregistre le G-Code dans une archive compressée." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Générateur de G-Code compressé" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fournit la prise en charge de l'exportation de profils Cura." - -msgctxt "@info:title" -msgid "Error" -msgstr "Erreur" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuler" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Paramètres" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "En savoir plus" - -msgctxt "@title:tab" -msgid "General" -msgstr "Général" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !" - -msgctxt "@label" -msgid "Type" -msgstr "Type" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Enregistrement" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Le fichier existe déjà" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tous les types supportés ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Impossible d'enregistrer {0} : {1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Avertissement" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Imprimantes" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Fichier enregistré" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmer la suppression" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tous les fichiers (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Équilibré" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Le profil équilibré est conçu pour trouver un équilibre entre la productivité, la qualité de surface, les propriétés mécaniques et la précision dimensionnelle." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Fournit une assistance pour l’exportation de profils Cura." diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index 20461396919..51ad90b86b6 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extrudeuse" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extrudeuse" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Extrudeuse G-Code de fin" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Extrudeuse Position de fin absolue" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Extrudeuse Position de fin X" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extrudeuse Position de fin Y" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Extrudeuse G-Code de démarrage" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Extrudeuse Position de départ absolue" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Extrudeuse Position de départ X" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Extrudeuse Position de départ Y" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." + +msgctxt "material description" +msgid "Material" +msgstr "Matériau" + +msgctxt "material label" +msgid "Material" +msgstr "Matériau" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID buse" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Buse Décalage X" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Les coordonnées X du décalage de la buse." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Buse Décalage Y" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Les coordonnées Y du décalage de la buse." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." -msgctxt "material label" -msgid "Material" -msgstr "Matériau" - -msgctxt "material description" -msgid "Material" -msgstr "Matériau" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Les coordonnées X du décalage de la buse." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Les coordonnées Y du décalage de la buse." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 779d650d98a..78c34cb64f6 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5470 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type de machine" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Distance à garder à partir des bords du modèle. Étirer jusqu'au bord de la maille peut entraîner l'apparition d'un bord denté sur votre impression." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Le nom du modèle de votre imprimante 3D." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Un facteur indiquant la quantité de filament compressée entre le chargeur et la chambre de la buse ; utilisé pour déterminer jusqu'où faire avancer le matériau pour changer de filament." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Afficher les variantes de la machine" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches extérieures de la surface supérieure utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Afficher ou non les différentes variantes de cette machine qui sont décrites dans des fichiers json séparés." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches du haut / bas utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code de démarrage" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que l'angle par défaut est utilisé (0 degré)." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Commandes G-Code à exécuter au tout début, séparées par \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code de fin" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Commandes G-Code à exécuter tout à la fin, séparées par \n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID matériau" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés pour les motifs en lignes et en zig zag et 45 degrés pour tout autre motif)." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID du matériau. Cela est configuré automatiquement." +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." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendre le chauffage du plateau" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'impression n'a pas le droit de pénétrer." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Insérer ou non une commande pour attendre que la température du plateau soit atteinte au démarrage." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendre le chauffage de la buse" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Il s'agit de la distance recommandée à laquelle les branches peuvent s'éloigner des points qu'elles soutiennent. Les branches peuvent ne pas respecter cette valeur pour atteindre leur emplacement cible (plateau ou partie plate du modèle). L'abaissement de cette valeur rendra le support plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Attendre ou non que la température de la buse soit atteinte au démarrage." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Position d'amorçage absolue de l'extrudeuse" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Inclure les températures du matériau" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variation maximale des couches adaptatives" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Inclure ou non les commandes de température de la buse au début du gcode. Si le gcode_démarrage contient déjà les commandes de température de la buse, l'interface Cura désactive automatiquement ce paramètre." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Taille de la topographie des couches adaptatives" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Inclure la température du plateau" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Taille des étapes de variation des couches adaptatives" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Inclure ou non les commandes de température du plateau au début du gcode. Si le gcode_démarrage contient déjà les commandes de température du plateau, l'interface Cura désactive automatiquement ce paramètre." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Cette option calcule la hauteur des couches en fonction de la forme du modèle." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largeur de la machine" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Ajoutez des parois supplémentaires autour de la zone de remplissage. De telles parois peuvent réduire l'affaissement des lignes de couche extérieure supérieure / inférieure, réduisant le nombre de couches extérieures supérieures / inférieures nécessaires pour obtenir la même qualité, au prix d'un peu de matériau supplémentaire.\n" +"Configurée correctement, cette fonctionnalité peut être combinée avec « Relier les polygones de remplissage » pour relier tous les remplissages en un seul mouvement d'extrusion sans avoir besoin de déplacements ou de rétractions." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La largeur (sens X) de la zone imprimable." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondeur de la machine" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendance à l'adhérence" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondeur (sens Y) de la zone imprimable." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure, en pourcentage de la largeur des lignes de la couche extérieure et de la paroi intérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, un pourcentage supérieur à 50 % peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Hauteur de la machine" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, une valeur supérieure à la moitié de la largeur de la paroi peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "La hauteur (sens Z) de la zone imprimable." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Adapte la densité de remplissage de l'impression." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forme du plateau" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajuste la densité des plafonds et bas de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forme du plateau sans prendre les zones non imprimables en compte." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ce paramètre ajuste la densité de la structure de support utilisée pour générer les extrémités des branches. Une valeur plus élevée permet d'obtenir de meilleurs porte-à-faux, mais les supports seront plus difficiles à retirer. Utilisez un plafond de support en cas de valeurs très élevées ou veillez à ce que la densité du support soit tout aussi élevée aux extrémités." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangulaire" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajuste la densité du support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptique" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Matériau du plateau" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Matériau du plateau installé sur l'imprimante." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Après l'impression de la tour d'amorçage à l'aide d'une buse, nettoyer le matériau qui suinte de l'autre buse sur la tour d'amorçage." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Verre" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Une fois que la machine est passée d'une extrudeuse à l'autre, le plateau s'abaisse pour créer un dégagement entre la buse et l'impression. Cela évite que la buse ne ressorte avec du matériau suintant sur l'extérieur d'une impression." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tout" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "A un plateau chauffé" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Tout en même temps" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Si la machine a un plateau chauffé présent." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Tous les paramètres qui influent sur la résolution de l'impression. Ces paramètres ont un impact conséquent sur la qualité (et la durée d'impression)." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Est dotée de la stabilisation de la température du volume d'impression" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alterner les parois supplémentaires" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Si la machine est capable de stabiliser la température du volume d'impression." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alterner le retrait des maillages" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alterner les directions des parois" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alternez les directions des parois, une couche et un insert sur deux. Utile pour les matériaux qui peuvent accumuler des contraintes, comme pour l'impression de métal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Toujours écrire l'outil actif" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Écrivez l'outil actif après avoir envoyé des commandes temporaires à l'outil inactif. Requis pour l'impression à double extrusion avec Smoothie ou un autre micrologiciel avec des commandes d'outils modaux." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Toujours rétracter lors du déplacement pour commencer une paroi externe." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Est l'origine du centre" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Le décalage appliqué à tous les polygones dans chaque couche. Une valeur positive peut compenser les trous trop gros ; une valeur négative peut compenser les trous trop petits." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Si les coordonnées X/Y de la position zéro de l'imprimante se situent au centre de la zone imprimable." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Le décalage appliqué à tous les polygones dans la première couche. Une valeur négative peut compenser l'écrasement de la première couche, appelé « patte d'éléphant »." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Nombre d'extrudeuses" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Le décalage appliqué à tous les polygones pour chaque couche. Une valeur positive peut lisser les zones de support et rendre le support plus solide." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Nombre de trains d'extrudeuse. Un train d'extrudeuse est la combinaison d'un chargeur, d'un tube bowden et d'une buse." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantité de décalage appliqué aux bas du support." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Nombre d'extrudeuses activées" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantité de décalage appliqué aux plafonds du support." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Nombre de trains d'extrusion activés ; automatiquement défini dans le logiciel" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantité de décalage appliquée aux polygones de l'interface de support." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diamètre extérieur de la buse" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "La distance de rétraction du filament afin qu'il ne suinte pas pendant la séquence d'essuyage." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Le diamètre extérieur de la pointe de la buse." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Une addition au rayon à partir du centre de chaque cube pour vérifier la bordure du modèle, afin de décider si ce cube doit être subdivisé. Des valeurs plus importantes entraînent une coque plus épaisse de petits cubes à proximité de la bordure du modèle." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longueur de la buse" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maillage anti-surplomb" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "La différence de hauteur entre la pointe de la buse et la partie la plus basse de la tête d'impression." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Position anti-suintage rétractée" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angle de la buse" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Vitesse de rétraction de l'anti-suintage" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "L'angle entre le plan horizontal et la partie conique juste au-dessus de la pointe de la buse." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affecte toutes les extrudeuses." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longueur de la zone chauffée" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Aux endroits où les modèles 3D se touchent, générez une structure d'attaches de connexion. Cette fonctionnalité améliore l'adhérence entre les modèles 3D, en particulier ceux imprimés avec des matériaux différents." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distance depuis la pointe du bec d'impression sur laquelle la chaleur du bec d'impression est transférée au filament." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Éviter les pièces imprimées lors du déplacement" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Permettre le contrôle de la température de la buse" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Éviter les supports lors du déplacement" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Contrôler ou non la température depuis Cura. Désactivez cette option pour contrôler la température de la buse depuis une source autre que Cura." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Arrière" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Vitesse de chauffage" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Arrière gauche" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La vitesse (°C/s) à laquelle la buse chauffe, sur une moyenne de la plage de températures d'impression normales et la température en veille." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Arrière droit" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Vitesse de refroidissement" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La vitesse (°C/s) à laquelle la buse refroidit, sur une moyenne de la plage de températures d'impression normales et la température en veille." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Les deux" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Durée minimale température de veille" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Chevauchement" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "La durée minimale pendant laquelle une extrudeuse doit être inactive avant que la buse ait refroidi. Ce n'est que si une extrudeuse n'est pas utilisée pendant une durée supérieure à celle-ci qu'elle pourra refroidir jusqu'à la température de veille." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Couches inférieures" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Parfum G-Code" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Couche initiale du motif du dessous" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Type de G-Code à générer." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure inférieure" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure inférieure" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrique)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Épaisseur du dessous" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densité des branches" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diamètre des branches" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Angle de diamètre des branches" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Préparation de rupture Position rétractée" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Vitesse de rétraction de préparation de rupture" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Température de préparation de rupture" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Position rétractée de rupture" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Rétraction du firmware" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Vitesse de rétraction de rupture" -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." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Température de rupture" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Les extrudeurs partagent le chauffage" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Démantèlement du support en morceaux" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Si les extrudeurs partagent un seul chauffage au lieu que chaque extrudeur ait son propre chauffage." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Vitesse du ventilateur du pont" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Les extrudeuses partagent la buse" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Le pont possède plusieurs couches" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Lorsque les extrudeuses partagent une seule buse au lieu que chaque extrudeuse ait sa propre buse. Lorsqu'il est défini à true, le script gcode de démarrage de l'imprimante doit configurer correctement toutes les extrudeuses dans un état de rétraction initial connu et mutuellement compatible (zéro ou un filament non rétracté) ; dans ce cas, l'état de rétraction initial est décrit, par extrudeuse, par le paramètre 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densité de la deuxième couche extérieure du pont" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rétraction initiale de la buse partagée" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Vitesse du ventilateur de la deuxième couche extérieure du pont" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La quantité de filament de chaque extrudeuse qui est supposée avoir été rétractée de l'extrémité de la buse partagée à la fin du script gcode de démarrage de l'imprimante ; la valeur doit être égale ou supérieure à la longueur de la partie commune des conduits de la buse." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Débit de la deuxième couche extérieure du pont" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Zones interdites" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Vitesse de la deuxième couche extérieure du pont" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'impression n'a pas le droit de pénétrer." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densité de la couche extérieure du pont" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Zones interdites au bec d'impression" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Débit de la couche extérieure du pont" -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." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Vitesse de la couche extérieure du pont" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polygone de la tête de la machine et du ventilateur" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limite de support de la couche extérieure du pont" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de son premier extrudeur. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densité maximale du remplissage mince du pont" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Hauteur du portique" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Décalage avec extrudeuse" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affecte toutes les extrudeuses." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Position d'amorçage absolue de l'extrudeuse" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position d'amorçage de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Vitesse maximale X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "La vitesse maximale pour le moteur du sens X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Vitesse maximale Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "La vitesse maximale pour le moteur du sens Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Vitesse maximale Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "La vitesse maximale pour le moteur du sens Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Vitesse maximale E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "La vitesse maximale du filament." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accélération maximale X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Accélération maximale pour le moteur du sens X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accélération maximale Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Accélération maximale pour le moteur du sens Y." +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densité de la troisième couche extérieure du pont" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accélération maximale Z" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Vitesse du ventilateur de la troisième couche extérieure du pont" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Accélération maximale pour le moteur du sens Z." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Débit de la troisième couche extérieure du pont" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accélération maximale du filament" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Vitesse de la troisième couche extérieure du pont" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Accélération maximale pour le moteur du filament." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Roue libre pour paroi du pont" -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accélération par défaut" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Débit de paroi du pont" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "L'accélération par défaut du mouvement de la tête d'impression." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Vitesse de paroi du pont" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Saccade X-Y par défaut" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Bordure" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Saccade par défaut pour le mouvement sur le plan horizontal." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distance de la bordure" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Saccade Z par défaut" +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Marge d'évitement de la bordure intérieure" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Saccade par défaut pour le moteur du sens Z." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Nombre de lignes de la bordure" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Saccade par défaut du filament" +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Bordure uniquement sur l'extérieur" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Saccade par défaut pour le moteur du filament." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "La bordure remplace le support" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pas par millimètre (X)" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largeur de la bordure" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction X." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pas par millimètre (Y)" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrudeuse d'adhérence du plateau" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Y." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type d'adhérence du plateau" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pas par millimètre (Z)" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Matériau du plateau" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Z." +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forme du plateau" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pas par millimètre (E)" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Température du plateau" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Nombre de pas des moteurs pas à pas correspondant au déplacement de la roue du chargeur d'un millimètre sur sa circonférence." +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Température du plateau couche initiale" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Butée X en sens positif" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Température du volume d'impression" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Détermine si la butée de l'axe X est en sens positif (haute coordonnée X) ou négatif (basse coordonnée X)." +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centrer l'objet" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Butée Y en sens positif" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Change la géométrie du modèle imprimé de manière à nécessiter un support minimal. Les porte-à-faux abrupts deviendront des porte-à-faux minces. Les zones en porte-à-faux descendront pour devenir plus verticales." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Détermine si la butée de l'axe Y est en sens positif (haute coordonnée Y) ou négatif (basse coordonnée Y)." +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Choisit entre les techniques disponibles pour générer un support. Le support « Normal » créer une structure de support directement sous les pièces en porte-à-faux et fait descendre ces zones directement vers le bas. Le support « Arborescent » crée des branches vers les zones en porte-à-faux qui supportent le modèle à l'extrémité de ces branches et permet aux branches de ramper autour du modèle afin de les supporter le plus possible sur le plateau de fabrication." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Butée Z en sens positif" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Vitesse de roue libre" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Détermine si la butée de l'axe Z est en sens positif (haute coordonnée Z) ou négatif (basse coordonnée Z)." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume en roue libre" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Taux d'alimentation minimal" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "L'option « roue libre » remplace la dernière partie d'un mouvement d'extrusion par un mouvement de déplacement. Le matériau qui suinte de la buse est alors utilisé pour imprimer la dernière partie du tracé du mouvement d'extrusion, ce qui réduit le stringing." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "La vitesse minimale de mouvement de la tête d'impression." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Mode de détours" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diamètre de roue du chargeur" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Les détours maintiennent la buse dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et la buse se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous ou d'effectuer les détours uniquement dans le remplissage." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Diamètre de la roue qui entraîne le matériau dans le chargeur." +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Paramètres de ligne de commande" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Mise à l'échelle de la vitesse du ventilateur à 0-1" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Mettez à l'échelle la vitesse du ventilateur de 0 à 1 au lieu de 0 à 256." +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualité" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Tous les paramètres qui influent sur la résolution de l'impression. Ces paramètres ont un impact conséquent sur la qualité (et la durée d'impression)." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Hauteur de la couche" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "La hauteur de chaque couche en mm. Des valeurs plus élevées créent des impressions plus rapides dans une résolution moindre, tandis que des valeurs plus basses entraînent des impressions plus lentes dans une résolution plus élevée." +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hauteur de la couche initiale" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaisse adhère plus facilement au plateau." +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largeur de ligne" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrique" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Largeur d'une ligne. Généralement, la largeur de chaque ligne doit correspondre à la largeur de la buse. Toutefois, le fait de diminuer légèrement cette valeur peut fournir de meilleures impressions." +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angle des supports coniques" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largeur de ligne de la paroi" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largeur minimale des supports coniques" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largeur d'une seule ligne de la paroi." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Relier les lignes de remplissage" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largeur de ligne de la paroi externe" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Relier les polygones de remplissage" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Largeur de la ligne la plus à l'extérieur de la paroi. Le fait de réduire cette valeur permet d'imprimer des niveaux plus élevés de détails." +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Relier les lignes de support" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Relier les zigzags de support" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largeur d'une seule ligne de la paroi pour toutes les lignes de paroi, à l’exception de la ligne la plus externe." +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Relier les polygones supérieurs / inférieurs" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largeur de la ligne du dessus/dessous" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Relier les voies de remplissage lorsqu'elles sont côte à côte. Pour les motifs de remplissage composés de plusieurs polygones fermés, ce paramètre permet de réduire considérablement le temps de parcours." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largeur d'une seule ligne du dessus/dessous." +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Relie les zigzags. Cela augmente la solidité des supports en zigzag." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largeur de ligne de remplissage" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Relie les extrémités des lignes de support. L'activation de ce paramètre peut rendre votre support plus robuste et réduire la sous-extrusion, mais cela demandera d'utiliser plus de matériau." -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largeur d'une seule ligne de remplissage." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Relie les extrémités où le motif de remplissage touche la paroi interne, à l'aide d'une ligne épousant la forme de la paroi interne. Activer ce paramètre peut faire mieux coller le remplissage aux parois, et réduit les effets du remplissage sur la qualité des surfaces verticales. Désactiver ce paramètre diminue la quantité de matière utilisée." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largeur des lignes de jupe/bordure" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largeur d'une seule ligne de jupe ou de bordure." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Vérifie si les angles du contour du modèle influencent l'emplacement de la jointure. « Aucune » signifie que les angles n'ont aucune influence sur l'emplacement de la jointure. « Masquer la jointure » génère le positionnement de la jointure sur un angle intérieur. « Exposer la jointure » génère le positionnement de la jointure sur un angle extérieur. « Masquer ou exposer la jointure » génère le positionnement de la jointure sur un angle intérieur ou extérieur. « Jointure intelligente » autorise les angles intérieurs et extérieurs, mais choisit plus fréquemment les angles intérieurs, le cas échéant." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largeur de ligne de support" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Convertir chaque ligne de remplissage en ce nombre de lignes. Les lignes supplémentaires ne se croisent pas entre elles, mais s'évitent mutuellement. Cela rend le remplissage plus rigide, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largeur d'une seule ligne de support." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Vitesse de refroidissement" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largeur de ligne d'interface de support" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refroidissement" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Largeur d'une seule ligne de plafond ou de bas de support." +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refroidissement" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largeur de ligne de plafond de support" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largeur d'une seule ligne de plafond de support." +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largeur de ligne de bas de support" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Entrecroisé 3D" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largeur d'une seule ligne de bas de support." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Taille de poches entrecroisées 3D" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largeur de ligne de la tour d'amorçage" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Image de densité du remplissage croisé pour le support" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largeur d'une seule ligne de tour d'amorçage." +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Image de densité du remplissage croisé" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largeur de ligne couche initiale" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Matériau cristallin" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicateur de la largeur de la ligne sur la première couche. Augmenter le multiplicateur peut améliorer l'adhésion au plateau." +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubique" -msgctxt "shell label" -msgid "Walls" -msgstr "Parois" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivision cubique" -msgctxt "shell description" -msgid "Shell" -msgstr "Coque" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Coque de la subdivision cubique" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrudeuse de paroi" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Maille de coupe" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois. Cela est utilisé en multi-extrusion." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Données reliant le flux de matériau (en mm3 par seconde) à la température (degrés Celsius)." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrudeuse de paroi externe" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accélération par défaut" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois externes. Cela est utilisé en multi-extrusion." +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Température du plateau par défaut" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrudeuse de paroi interne" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Saccade par défaut du filament" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois internes. Cela est utilisé en multi-extrusion." +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Température d’impression par défaut" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Épaisseur de la paroi" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Saccade X-Y par défaut" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Épaisseur des parois en sens horizontal. Cette valeur divisée par la largeur de la ligne de la paroi définit le nombre de parois." +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Saccade Z par défaut" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Nombre de lignes de la paroi" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Saccade par défaut pour le mouvement sur le plan horizontal." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Le nombre de parois. Lorsqu'elle est calculée par l'épaisseur de la paroi, cette valeur est arrondie à un nombre entier." +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Saccade par défaut pour le moteur du sens Z." -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longueur de transition de la paroi" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Saccade par défaut pour le moteur du filament." -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Lorsque l'on passe d'un nombre de parois à un autre, au fur et à mesure que la pièce s'amincit, un certain espace est alloué pour diviser ou joindre les lignes de parois." +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Détecter les ponts et modifier la vitesse d'impression, le débit et les paramètres du ventilateur pendant l'impression des ponts." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Nombre de distributions des parois" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Détermine l'ordre dans lequel les parois sont imprimées. L'impression des parois extérieures plus tôt permet une précision dimensionnelle car les défauts des parois intérieures ne peuvent pas se propager à l'extérieur. Cependant, le fait de les imprimer plus tard leur permet de mieux s'empiler lorsque les saillies sont imprimées. Lorsqu'il y a une quantité totale inégale de parois intérieures, la « dernière ligne centrale » est toujours imprimée en dernier." -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Le nombre de parois, comptées à partir du centre, sur lesquelles la variation doit être répartie. Les valeurs inférieures signifient que les parois extérieures ne changent pas en termes de largeur." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Détermine la priorité de cette maille lorsque plusieurs chevauchements de mailles de remplissage sont pris en considération. Les zones comportant plusieurs chevauchements de mailles de remplissage prendront en compte les paramètres du maillage ayant l'ordre le plus élevé. Une maille de remplissage possédant un ordre plus élevé modifiera le remplissage des mailles de remplissage ayant un ordre plus bas et des mailles normales." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angle du seuil de transition de la paroi" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir tout ce qui se trouve au-dessus. Mesuré dans l'angle au vu de l'épaisseur d'une couche." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quand créer des transitions entre un nombre uniforme et impair de parois. Une forme de coin dont l'angle est supérieur à ce paramètre n'aura pas de transitions et aucune paroi ne sera imprimée au centre pour remplir l'espace restant. En réduisant ce paramètre, on réduit le nombre et la longueur de ces parois centrales, mais on risque de laisser des trous ou sur-extruder." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir le modèle au-dessus. Mesuré dans l'angle au vu de l'épaisseur." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distance du filtre de transition des parois" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "S'il s'agit d'une transition d'avant en arrière entre différents nombres de parois en succession rapide, ne faites pas du tout la transition. Supprimez les transitions si elles sont plus proches les unes des autres que cette distance." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Augmentation du diamètre des branches rattachées au modèle" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Marge du filtre de transition des parois" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Il s'agit du diamètre que chaque branche essaie d'atteindre au niveau du plateau. Ce paramètre améliore l'adhérence au plateau." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Empêchez la transition d'avant en arrière entre une paroi supplémentaire et une paroi en moins. Cette marge étend la gamme des largeurs de ligne qui suivent à [Largeur minimale de la ligne de paroi - marge, 2 * Largeur minimale de la ligne de paroi + marge]. L'augmentation de cette marge réduit le nombre de transitions, ce qui réduit le nombre de démarrages/arrêts d'extrusion et le temps de trajet. Cependant, une grande variation de la largeur de la ligne peut entraîner des problèmes de sous-extrusion ou de sur-extrusion." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Différentes options qui permettent d'améliorer la préparation de votre extrusion et l'adhérence au plateau. La bordure ajoute une zone plate d'une seule couche autour de la base de votre modèle, afin de l'empêcher de se redresser. Le radeau ajoute une grille épaisse avec un toit sous le modèle. La jupe est une ligne imprimée autour du modèle mais qui n'est pas rattachée au modèle." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distance d'essuyage paroi extérieure" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Zones interdites" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distance d'un déplacement inséré après la paroi extérieure, pour mieux masquer la jointure en Z." +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distance entre les lignes de remplissage imprimées. Ce paramètre est calculé par la densité du remplissage et la largeur de ligne de remplissage." -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Insert de paroi externe" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distance entre les lignes de la structure de support de la couche initiale imprimée. Ce paramètre est calculé en fonction de la densité du support." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Insert appliqué sur le passage de la paroi externe. Si la paroi externe est plus petite que la buse et imprimée après les parois intérieures, utiliser ce décalage pour que le trou dans la buse chevauche les parois internes et non l'extérieur du modèle." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distance entre les lignes du bas de support imprimées. Ce paramètre est calculé par la densité du bas de support mais peut également être défini séparément." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimiser l'ordre d'impression des parois" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distance entre les lignes du plafond de support imprimées. Ce paramètre est calculé par la densité du plafond de support mais peut également être défini séparément." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimiser l'ordre dans lequel des parois sont imprimées de manière à réduire le nombre de retraits et les distances parcourues. La plupart des pièces bénéficieront de cette possibilité, mais certaines peuvent en fait prendre plus de temps à l'impression ; veuillez dès lors comparer les estimations de durée d'impression avec et sans optimisation. La première couche n'est pas optimisée lorsque le type d'adhérence au plateau est défini sur bordure." +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calculé par la densité du support." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordre des parois" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Détermine l'ordre dans lequel les parois sont imprimées. L'impression des parois extérieures plus tôt permet une précision dimensionnelle car les défauts des parois intérieures ne peuvent pas se propager à l'extérieur. Cependant, le fait de les imprimer plus tard leur permet de mieux s'empiler lorsque les saillies sont imprimées. Lorsqu'il y a une quantité totale inégale de parois intérieures, la « dernière ligne centrale » est toujours imprimée en dernier." +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distance entre l’impression et le haut des supports." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De l'intérieur vers l'extérieur" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De l'extérieur vers l'intérieur" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distance de déplacement à insérer après chaque ligne de remplissage, pour s'assurer que le remplissage collera mieux aux parois externes. Cette option est similaire au chevauchement du remplissage, mais sans extrusion et seulement à l'une des deux extrémités de la ligne de remplissage." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alterner les parois supplémentaires" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distance d'un déplacement inséré après la paroi extérieure, pour mieux masquer la jointure en Z." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime une paroi supplémentaire une couche sur deux. Ainsi, le remplissage est pris entre ces parois supplémentaires pour créer des impressions plus solides." +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distance entre la pièce et le bouclier dans les directions X et Y." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi" +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." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distance entre la structure de support et le porte-à-faux dans les directions X/Y." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi uniforme" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distance entre le support et l'impression dans les directions X/Y." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Largeur de ligne minimale pour les murs polygonaux normaux. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Les points de distance sont décalés pour lisser le chemin" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi impaire" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Les points de distance sont décalés pour lisser le chemin" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Largeur de ligne minimale pour les parois de polyligne de remplissage de l'espace de ligne médiane. Ce paramètre détermine à partir de quelle épaisseur de modèle 3D nous passons de l'impression de deux lignes de parois à l'impression de deux parois extérieures et d'une seule paroi centrale au milieu. Une largeur de ligne de paroi impaire minimale plus élevée conduit à une largeur de ligne de paroi paire plus élevée. La largeur maximale de la ligne de paroi impaire représente 2 fois la largeur minimale de la ligne de paroi paire." +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Ne pas générer de zones de remplissage plus petites que cela (utiliser plutôt une couche extérieure)" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimer parois fines" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hauteur du bouclier" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprimer les parties du modèle qui sont horizontalement plus fines que la taille de la buse." +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite du bouclier" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Taille minimale des entités" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distance X/Y du bouclier" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Épaisseur minimale des entités fines. Les entités de modèle qui sont plus fines que cette valeur ne seront pas imprimées, tandis que les entités plus épaisses que la taille d'entité minimale seront élargies à la largeur minimale de la ligne de paroi." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maillage de support descendant" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi fine" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Double extrusion" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "La largeur de la paroi qui remplacera les entités fines (selon la taille minimale des entités) du modèle. Si la largeur minimale de la ligne de paroi est plus fine que l'épaisseur de l'entité, la paroi deviendra aussi épaisse que l'entité elle-même." +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptique" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansion horizontale" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activer le contrôle d'accélération" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Le décalage appliqué à tous les polygones dans chaque couche. Une valeur positive peut compenser les trous trop gros ; une valeur négative peut compenser les trous trop petits." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Activer les paramètres du pont" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansion horizontale de la couche initiale" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Activer la roue libre" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Le décalage appliqué à tous les polygones dans la première couche. Une valeur négative peut compenser l'écrasement de la première couche, appelé « patte d'éléphant »." +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activer les supports coniques" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansion horizontale des trous" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Activer le bouclier" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Lorsqu'elle est supérieure à zéro, l'expansion horizontale du trou correspond à la quantité de décalage appliquée à la totalité des trous de chaque couche. Les valeurs positives augmentent la taille des trous, les valeurs négatives réduisent la taille des trous. Lorsque ce paramètre est activé, il peut être ajusté davantage avec le diamètre maximum d'expansion horizontale du trou." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Activer le mouvement fluide" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diamètre maximal de l'expansion horizontale des trous" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Activer l'étirage" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Lorsque le diamètre est supérieur à zéro, l'expansion horizontale des trous est progressivement appliquée aux petits trous (ces derniers sont élargis). Lorsque le diamètre est défini sur zéro, l'expansion horizontale des trous est appliquée à tous les trous. Les trous dont le diamètre est supérieur au diamètre maximal défini pour l'expansion horizontale des trous ne sont pas élargis." +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activer le contrôle de saccade" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alignement de la jointure en Z" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Permettre le contrôle de la température de la buse" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Point de départ de chaque voie dans une couche. Quand les voies dans les couches consécutives démarrent au même endroit, une jointure verticale peut apparaître sur l'impression. En alignant les points de départ près d'un emplacement défini par l'utilisateur, la jointure sera plus facile à faire disparaître. Lorsqu'elles sont disposées de manière aléatoire, les imprécisions de départ des voies seront moins visibles. En choisissant la voie la plus courte, l'impression se fera plus rapidement." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activer le bouclier de suintage" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Utilisateur spécifié" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activer la goutte de préparation" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Plus court" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activer la tour d'amorçage" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aléatoire" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activer le refroidissement de l'impression" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angle le plus aigu" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Activer la rétraction" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position de la jointure en Z" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Activer la bordure du support" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La position près de laquelle démarre l'impression de chaque partie dans une couche." +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Activer les bas de support" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Arrière gauche" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Activer l'interface de support" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Arrière" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Activer les plafonds de support" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Arrière droit" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Activer l'accélération des déplacements" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Droite" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activer les saccades de déplacement" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avant droit" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Activer le bouclier de suintage extérieur. Cela créera une coque autour du modèle qui est susceptible d'essuyer une deuxième buse si celle-ci est à la même hauteur que la première buse." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avant" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Permet aux petites zones (jusqu'à « Petite largeur Haut/Bas ») de la couche supérieure (exposée à l'air) d'être remplies avec des parois au lieu du motif par défaut." -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avant gauche" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Active le réglage de la saccade de la tête d'impression lorsque la vitesse sur l'axe X ou Y change. Augmenter les saccades peut réduire la durée d'impression au détriment de la qualité d'impression." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Gauche" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Active le réglage de l'accélération de la tête d'impression. Augmenter les accélérations peut réduire la durée d'impression au détriment de la qualité d'impression." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X Jointure en Z" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Active les ventilateurs de refroidissement de l'impression pendant l'impression. Les ventilateurs améliorent la qualité de l'impression sur les couches présentant des durées de couche courtes et des ponts / porte-à-faux." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Coordonnée X de la position près de laquelle démarrer l'impression de chaque partie dans une couche." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code de fin" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y Jointure en Z" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longueur de purge de l'extrémité du filament" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Coordonnée Y de la position près de laquelle démarrer l'impression de chaque partie dans une couche." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Vitesse de purge de l'extrémité du filament" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Préférence de jointure d'angle" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Vérifie si les angles du contour du modèle influencent l'emplacement de la jointure. « Aucune » signifie que les angles n'ont aucune influence sur l'emplacement de la jointure. « Masquer la jointure » génère le positionnement de la jointure sur un angle intérieur. « Exposer la jointure » génère le positionnement de la jointure sur un angle extérieur. « Masquer ou exposer la jointure » génère le positionnement de la jointure sur un angle intérieur ou extérieur. « Jointure intelligente » autorise les angles intérieurs et extérieurs, mais choisit plus fréquemment les angles intérieurs, le cas échéant." +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Partout" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Aucun" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusif" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Masquer jointure" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Expérimental" msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" msgstr "Exposer jointure" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Masquer ou exposer jointure" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Masquage intelligent" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatif à la jointure en Z" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Si cette option est activée, les coordonnées de la jointure z sont relatives au centre de chaque partie. Si elle est désactivée, les coordonnées définissent une position absolue sur le plateau." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Haut / bas" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Raccommodage" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Haut / bas" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Le raccommodage consiste en la suppression des trous dans le maillage en tentant de fermer le trou avec des intersections entre polygones existants. Cette option peut induire beaucoup de temps de calcul." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrudeuse de couche extérieure de la surface supérieure" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Nombre de parois de remplissage supplémentaire" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure supérieure. Cela est utilisé en multi-extrusion." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Nombre supplémentaire de parois extérieures" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Couches extérieures de la surface supérieure" +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." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Nombre de couches extérieures supérieures. En général, une seule couche supérieure est suffisante pour générer des surfaces supérieures de qualité." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largeur de ligne de couche extérieure de la surface supérieure" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Largeur d'une seule ligne de la zone en haut de l'impression." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Motif de couche extérieure de surface supérieure" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Les extrudeurs partagent le chauffage" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Le motif des couches supérieures." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Les extrudeuses partagent la buse" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificateur de vitesse de refroidissement de l'extrusion" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Facteur de correction de la largeur d'extrusion en fonction de la vitesse. À 0 %, la vitesse de mouvement reste constante à la vitesse d'impression. À 100 %, la vitesse de mouvement est ajustée de sorte que le débit (en mm³/s) reste constant, c'est-à-dire que les lignes à la moitié de la largeur de ligne normale sont imprimées deux fois plus vite et que les lignes à la moitié de la largeur sont imprimées aussi vite. Une valeur supérieure à 100 % peut aider à compenser la pression plus élevée requise pour extruder les lignes larges." -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Vitesse du ventilateur" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordre monotone de la surface supérieure" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Annulation de la vitesse du ventilateur" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes de la surface supérieure dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Les contours des structures dont le diamètre est inférieur à cette longueur seront imprimés en utilisant l'option Vitesse de petite structure." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Sens de lignes de couche extérieure de surface supérieure" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Des fonctionnalités qui n'ont pas encore été complètement développées." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches extérieures de la surface supérieure utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diamètre de roue du chargeur" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrudeuse du dessus/dessous" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Température d’impression finale" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure du haut et du bas. Cela est utilisé en multi-extrusion." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Rétraction du firmware" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Épaisseur du dessus/dessous" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrudeuse de support de la première couche" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "L’épaisseur des couches du dessus/dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus/dessous." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Débit" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Épaisseur du dessus" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapport d'égalisation des débits" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "L’épaisseur des couches du dessus dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Facteur de compensation du débit" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Couches supérieures" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Décalage d'extrusion max. pour compensation du débit" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches supérieures. Lorsqu'elle est calculée par l'épaisseur du dessus, cette valeur est arrondie à un nombre entier." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Graphique de la température du flux" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Épaisseur du dessous" +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." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "L’épaisseur des couches du dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessous." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensation de débit sur les lignes inférieures de la première couche" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Couches inférieures" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensation de débit sur les lignes de remplissage." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches inférieures. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensation de débit sur les lignes de plafond ou de bas de support." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Couches inférieures initiales" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensation de débit sur les lignes des zones en haut de l'impression." -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." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensation de débit sur les lignes de la tour d'amorçage." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Motif du dessus/dessous" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensation de débit sur les lignes de jupe ou bordure." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Le motif des couches du dessus/dessous." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensation de débit sur les lignes de bas de support." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensation de débit sur les lignes du plafond de support." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensation de débit sur les lignes de support." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensation de débit sur la ligne de paroi la plus externe de la première couche." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Couche initiale du motif du dessous" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensation de débit sur la ligne de la paroi la plus à l'extérieur." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Motif au bas de l'impression sur la première couche." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrique" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensation de débit sur les lignes du dessus/dessous." -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensation de débit sur les lignes de paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus plus externe, mais uniquement pour la première couche" -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Relier les polygones supérieurs / inférieurs" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensation de débit sur les lignes de la paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus externe." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensation de débit sur les lignes de la paroi." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordre monotone dessus / dessous" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Angle de mouvement fluide" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes supérieures et inférieures dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distance de décalage du mouvement fluide" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Sens de la ligne du dessus / dessous" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Faible distance de décalage du mouvement fluide" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches du haut / bas utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longueur de la purge d'insertion" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Petite largeur du dessus/dessous" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Vitesse de purge d'insertion" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Les petites zones haut/bas sont remplies avec des parois au lieu du motif haut/bas par défaut. Cela permet d'éviter les mouvements saccadés. Par défaut, l'option est désactivée pour la couche supérieure (exposée à l'air) (voir « Petit Haut/Bas sur la surface »)." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Petit Haut/Bas sur la surface" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avant" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Permet aux petites zones (jusqu'à « Petite largeur Haut/Bas ») de la couche supérieure (exposée à l'air) d'être remplies avec des parois au lieu du motif par défaut." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avant gauche" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Aucune couche dans les trous en Z" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avant droit" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Lorsque le modèle comporte de petits trous verticaux de quelques couches seulement, il doit normalement y avoir une couche autour de celles-ci dans l'espace étroit. Activez ce paramètre pour ne pas générer de couche si le trou vertical est très petit. Cela améliore le temps d'impression et le temps de découpage, mais laisse techniquement le remplissage exposé à l'air." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Pleine hauteur" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Nombre supplémentaire de parois extérieures" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Surfaces floues" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Remplace la partie la plus externe du motif du dessus/dessous par un certain nombre de lignes concentriques. Le fait d'utiliser une ou deux lignes améliore les plafonds qui commencent sur du matériau de remplissage." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densité de la couche floue" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Activer l'étirage" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Couche floue à l'extérieur uniquement" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Allez au-dessus de la surface une fois supplémentaire, mais en extrudant très peu de matériau. Cela signifie de faire fondre le plastique en haut un peu plus, pour créer une surface lisse. La pression dans la chambre de la buse est maintenue élevée afin que les plis de la surface soient remplis de matériau." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distance entre les points de la couche floue" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "N'étirer que la couche supérieure" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Épaisseur de la couche floue" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "N'exécute un étirage que sur l'ultime couche du maillage. Ceci économise du temps si les couches inférieures ne nécessitent pas de fini lisse de surface." +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Parfum G-Code" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Motif d'étirage" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Commandes G-Code à exécuter tout à la fin, séparées par \n" +"." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Le motif à utiliser pour étirer les surfaces supérieures." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Commandes G-Code à exécuter au tout début, séparées par \n" +"." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID du matériau. Cela est configuré automatiquement." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Hauteur du portique" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordre d'étirage monotone" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Générer une structure de connexion" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes d'étirage dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Générer les supports" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Interligne de l'étirage" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Générer un bord à l'intérieur des zones de remplissage du support de la première couche. Cette bordure est imprimée sous le support et non autour de celui-ci, ce qui augmente l'adhérence du support au plateau." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "La distance entre les lignes d'étirage." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Générer une interface dense entre le modèle et le support. Cela créera une couche sur le dessus du support sur lequel le modèle est imprimé et sur le dessous du support sur lequel le modèle repose." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flux d'étirage" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Générer une plaque dense de matériau entre le bas du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "La quantité de matériau, relative à une ligne de couche extérieure normale, à extruder pendant l'étirage. Le fait de garder la buse pleine aide à remplir certaines des crevasses de la surface supérieure ; mais si la quantité est trop importante, cela entraînera une surextrusion et l'apparition de coupures sur le côté de la surface." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Générer une plaque dense de matériau entre le plafond du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Insert d'étirage" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Distance à garder à partir des bords du modèle. Étirer jusqu'au bord de la maille peut entraîner l'apparition d'un bord denté sur votre impression." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Verre" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Vitesse d'étirage" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Allez au-dessus de la surface une fois supplémentaire, mais en extrudant très peu de matériau. Cela signifie de faire fondre le plastique en haut un peu plus, pour créer une surface lisse. La pression dans la chambre de la buse est maintenue élevée afin que les plis de la surface soient remplis de matériau." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "La vitesse à laquelle passer sur la surface supérieure." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Hauteur de l'étape de remplissage progressif" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accélération d'étirage" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Étapes de remplissage progressif" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L'accélération selon laquelle l'étirage est effectué." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Hauteur d'étape de remplissage graduel du support" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Saccade d'étirage" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Étapes de remplissage graduel du support" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Le changement instantané maximal de vitesse lors de l'étirage." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Réduisez progressivement à cette température lors de l'impression à des vitesses réduites en raison de la durée minimale d’une couche." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Pourcentage de chevauchement de la couche extérieure" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure, en pourcentage de la largeur des lignes de la couche extérieure et de la paroi intérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, un pourcentage supérieur à 50 % peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Chevauchement de la couche extérieure" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, une valeur supérieure à la moitié de la largeur de la paroi peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grille" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure/inférieure sur les surfaces obliques du modèle." +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure supérieure" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Regrouper les parois extérieures" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure supérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure sur les surfaces obliques du modèle." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure inférieure" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Est dotée de la stabilisation de la température du volume d'impression" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure inférieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure inférieure sur les surfaces obliques du modèle." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "A un plateau chauffé" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Vitesse de chauffage" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois des couches voisines. Des valeurs faibles économisent la quantité de matériau utilisé." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longueur de la zone chauffée" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure supérieure" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Hauteur limite du bouclier. Au-delà de cette hauteur, aucun bouclier ne sera imprimé." -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures supérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche supérieure. Des valeurs faibles économisent la quantité de matériau utilisé." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Masquer jointure" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure inférieure" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Masquer ou exposer jointure" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures inférieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche inférieure. Des valeurs faibles économisent la quantité de matériau utilisé." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansion horizontale des trous" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angle maximum de la couche extérieure pour l'expansion" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diamètre maximal de l'expansion horizontale des trous" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Les couches extérieures supérieures / inférieures des surfaces supérieures et / ou inférieures de votre objet possédant un angle supérieur à ce paramètre 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. Un angle de 0° est horizontal et évitera l'extension des couches ; un angle de 90° est vertical et entraînera l'extension de toutes les couches." +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Les trous et les contours des pièces dont le diamètre est inférieur à celui-ci seront imprimés en utilisant l'option Vitesse de petite structure." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largeur minimum de la couche extérieure pour l'expansion" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansion horizontale" -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." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" -msgctxt "infill label" -msgid "Infill" -msgstr "Remplissage" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Jusqu'où le filament peut être étiré avant qu'il ne se casse, pendant qu'il est chauffé." -msgctxt "infill description" -msgid "Infill" -msgstr "Remplissage" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Jusqu'où le matériau doit être rétracté avant qu'il cesse de suinter." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrudeuse de remplissage" +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." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression du remplissage. Cela est utilisé en multi-extrusion." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Jusqu'où rétracter le filament afin de le casser proprement." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densité du remplissage" +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." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Adapte la densité de remplissage de l'impression." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "À quelle vitesse le matériau doit-il être rétracté lors d'un changement de filament pour empêcher le suintage." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distance d'écartement de ligne de remplissage" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "La vitesse d'amorçage du matériau après le remplacement d'une bobine vide par une nouvelle bobine du même matériau." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distance entre les lignes de remplissage imprimées. Ce paramètre est calculé par la densité du remplissage et la largeur de ligne de remplissage." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "La vitesse d'amorçage du matériau après le passage à un autre matériau." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Motif de remplissage" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "La durée pendant laquelle le matériau peut être conservé à l'abri de la sécheresse." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage, en ne supportant que le plafond de l'objet." +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction X." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Y." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Z." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Nombre de pas des moteurs pas à pas correspondant au déplacement de la roue du chargeur d'un millimètre sur sa circonférence." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du remplacement d'une bobine vide par une nouvelle bobine du même matériau." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubique" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du passage à un autre matériau." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivision cubique" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La quantité de filament de chaque extrudeuse qui est supposée avoir été rétractée de l'extrémité de la buse partagée à la fin du script gcode de démarrage de l'imprimante ; la valeur doit être égale ou supérieure à la longueur de la partie commune des conduits de la buse." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octaédrique" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Ce paramètre détermine la façon dont l'interface de support et le support interagissent en cas de chevauchement. Il n'est actuellement disponible que pour le plafond de support." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quart cubique" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Il s'agit de la hauteur minimale que doit atteindre une branche si elle est rattachée au modèle. Ce paramètre empêche la formation de petites gouttes de support. Il est ignoré lorsqu'une branche soutient un plafond de support." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +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." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Si un segment du parcours d'outil s'écarte d'une valeur supérieure à cet angle par rapport au mouvement général, il est lissé." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Si cette option est activée, les deuxième et troisième couches au-dessus de la zone d'air seront imprimées selon les paramètres suivants. Sinon, ces couches seront imprimées selon les paramètres normaux." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Entrecroisé 3D" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "S'il s'agit d'une transition d'avant en arrière entre différents nombres de parois en succession rapide, ne faites pas du tout la transition. Supprimez les transitions si elles sont plus proches les unes des autres que cette distance." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Éclair" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignorer la géométrie interne pouvant découler de volumes se chevauchant à l'intérieur d'un maillage et imprimer les volumes comme un seul. Cela peut entraîner la disparition des cavités internes accidentelles." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Relier les lignes de remplissage" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Inclure la température du plateau" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Relie les extrémités où le motif de remplissage touche la paroi interne, à l'aide d'une ligne épousant la forme de la paroi interne. Activer ce paramètre peut faire mieux coller le remplissage aux parois, et réduit les effets du remplissage sur la qualité des surfaces verticales. Désactiver ce paramètre diminue la quantité de matière utilisée." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Inclure les températures du matériau" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Relier les polygones de remplissage" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusif" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Relier les voies de remplissage lorsqu'elles sont côte à côte. Pour les motifs de remplissage composés de plusieurs polygones fermés, ce paramètre permet de réduire considérablement le temps de parcours." +msgctxt "infill description" +msgid "Infill" +msgstr "Remplissage" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Sens de ligne de remplissage" +msgctxt "infill label" +msgid "Infill" +msgstr "Remplissage" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accélération de remplissage" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés pour les motifs en lignes et en zig zag et 45 degrés pour tout autre motif)." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Imprimer le remplissage avant les parois" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Remplissage Décalage X" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densité du remplissage" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Le motif de remplissage est décalé de cette distance sur l'axe X." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrudeuse de remplissage" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Remplissage Décalage Y" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Débit de remplissage" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Saccade de remplissage" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Randomiser le démarrage du remplissage" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Randomisez la ligne de remplissage qui est imprimée en premier. Cela empêche un segment de devenir plus fort, mais cela se fait au prix d'un déplacement supplémentaire." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Sens de ligne de remplissage" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distance d'écartement de ligne de remplissage" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Multiplicateur de ligne de remplissage" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Convertir chaque ligne de remplissage en ce nombre de lignes. Les lignes supplémentaires ne se croisent pas entre elles, mais s'évitent mutuellement. Cela rend le remplissage plus rigide, mais augmente le temps d'impression et la quantité de matériau utilisé." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Nombre de parois de remplissage supplémentaire" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largeur de ligne de remplissage" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Ajoutez des parois supplémentaires autour de la zone de remplissage. De telles parois peuvent réduire l'affaissement des lignes de couche extérieure supérieure / inférieure, réduisant le nombre de couches extérieures supérieures / inférieures nécessaires pour obtenir la même qualité, au prix d'un peu de matériau supplémentaire.\nConfigurée correctement, cette fonctionnalité peut être combinée avec « Relier les polygones de remplissage » pour relier tous les remplissages en un seul mouvement d'extrusion sans avoir besoin de déplacements ou de rétractions." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maille de remplissage" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Coque de la subdivision cubique" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angle de porte-à-faux de remplissage" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Une addition au rayon à partir du centre de chaque cube pour vérifier la bordure du modèle, afin de décider si ce cube doit être subdivisé. Des valeurs plus importantes entraînent une coque plus épaisse de petits cubes à proximité de la bordure du modèle." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Chevauchement du remplissage" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Pourcentage de chevauchement du remplissage" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Le degré de chevauchement entre le remplissage et les parois exprimé en pourcentage de la largeur de ligne de remplissage. Un chevauchement faible permet aux parois de se connecter fermement au remplissage." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Motif de remplissage" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Chevauchement du remplissage" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vitesse de remplissage" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Le degré de chevauchement entre le remplissage et les parois. Un léger chevauchement permet de lier fermement les parois au remplissage." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Support de remplissage" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimisation du déplacement de remplissage" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Distance de remplissage" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distance de déplacement à insérer après chaque ligne de remplissage, pour s'assurer que le remplissage collera mieux aux parois externes. Cette option est similaire au chevauchement du remplissage, mais sans extrusion et seulement à l'une des deux extrémités de la ligne de remplissage." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Remplissage Décalage X" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Remplissage Décalage Y" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "L'épaisseur par couche de matériau de remplissage. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Couches inférieures initiales" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Étapes de remplissage progressif" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Vitesse des ventilateurs initiale" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Nombre de fois pour réduire la densité de remplissage de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité du remplissage." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accélération de la couche initiale" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Hauteur de l'étape de remplissage progressif" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Débit inférieur de la couche initiale" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "La hauteur de remplissage d'une densité donnée avant de passer à la moitié de la densité." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diamètre de la couche initiale" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Imprimer le remplissage avant les parois" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Débit de la couche initiale" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime le remplissage avant d'imprimer les parois. Imprimer les parois d'abord permet d'obtenir des parois plus précises, mais les porte-à-faux s'impriment plus mal. Imprimer le remplissage d'abord entraîne des parois plus résistantes, mais le motif de remplissage se verra parfois à travers la surface." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hauteur de la couche initiale" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Zone de remplissage minimum" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansion horizontale de la couche initiale" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Ne pas générer de zones de remplissage plus petites que cela (utiliser plutôt une couche extérieure)" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Débit de la paroi intérieure de la couche initiale" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Support de remplissage" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Saccade de la couche initiale" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimer les structures de remplissage uniquement là où le haut du modèle doit être supporté, ce qui permet de réduire le temps d'impression et l'utilisation de matériau, mais conduit à une résistance uniforme de l'objet." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largeur de ligne couche initiale" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angle de porte-à-faux de remplissage" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Débit de la paroi extérieure de la couche initiale" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Angle minimal des porte-à-faux internes pour lesquels le remplissage est ajouté. À une valeur de 0°, les objets sont totalement remplis, 90° ne fournira aucun remplissage." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accélération de l'impression de la couche initiale" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Épaisseur de soutien des bords de la couche" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Saccade d’impression de la couche initiale" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "L'épaisseur du remplissage supplémentaire qui soutient les bords de la couche." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Vitesse d’impression de la couche initiale" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Couches de soutien des bords de la couche extérieure" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Vitesse de la couche initiale" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distance d'écartement de ligne du support de la couche initiale" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angle de support du remplissage éclair" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accélération de déplacement de la couche initiale" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Détermine quand une couche de remplissage éclair doit soutenir tout ce qui se trouve au-dessus. Mesuré dans l'angle au vu de l'épaisseur d'une couche." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Saccade de déplacement de la couche initiale" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angle de saillie du remplissage éclair" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Vitesse de déplacement de la couche initiale" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Détermine quand une couche de remplissage éclair doit soutenir le modèle au-dessus. Mesuré dans l'angle au vu de l'épaisseur." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Chevauchement Z de la couche initiale" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angle d'élagage du remplissage éclair" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Température d’impression initiale" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Les extrémités des lignes de remplissage sont raccourcies pour économiser du matériau. Ce paramètre est l'angle de saillie des extrémités de ces lignes." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accélération de la paroi intérieure" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrudeuse de paroi interne" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Saccade de paroi intérieure" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Vitesse d'impression de la paroi interne" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angle de redressement du remplissage éclair" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Débit de paroi(s) interne(s)" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne de remplissage." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Température d’impression par défaut" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Insert appliqué sur le passage de la paroi externe. Si la paroi externe est plus petite que la buse et imprimée après les parois intérieures, utiliser ce décalage pour que le trou dans la buse chevauche les parois internes et non l'extérieur du modèle." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La température par défaut utilisée pour l'impression. Il doit s'agir de la température de « base » d'un matériau. Toutes les autres températures d'impression doivent utiliser des décalages basés sur cette valeur" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De l'intérieur vers l'extérieur" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Température du volume d'impression" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Priorité aux lignes d'interface" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La température de l'environnement d'impression. Si cette valeur est 0, la température du volume d'impression ne sera pas ajustée." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Priorité à l'interface" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Température d’impression" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Nombre de couches des attaches de connexion" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Température utilisée pour l'impression." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largeur des attaches de connexion" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Température d’impression couche initiale" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distance limite de connexion" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Température utilisée pour l'impression de la première couche. Définissez-la sur 0 pour désactiver le traitement spécial de la couche initiale." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondeur de connexion" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Température d’impression initiale" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientation de la structure de connexion" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La température minimale pendant le chauffage jusqu'à la température d'impression à laquelle l'impression peut démarrer." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "N'étirer que la couche supérieure" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Température d’impression finale" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accélération d'étirage" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La température à laquelle le refroidissement commence juste avant la fin de l'impression." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flux d'étirage" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificateur de vitesse de refroidissement de l'extrusion" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Insert d'étirage" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "La vitesse supplémentaire à laquelle la buse refroidit pendant l'extrusion. La même valeur est utilisée pour indiquer la perte de vitesse de chauffage pendant l'extrusion." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Saccade d'étirage" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Température du plateau par défaut" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Interligne de l'étirage" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Température par défaut utilisée pour le plateau chauffant. Il doit s'agir de la température de « base » d'un plateau. Toutes les autres températures d'impression sont définies en fonction de cette valeur" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Motif d'étirage" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Température du plateau" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Vitesse d'étirage" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Température utilisée pour le plateau de fabrication chauffé. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Est l'origine du centre" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Température du plateau couche initiale" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Matériau de support" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Température utilisée pour le plateau de fabrication chauffé à la première couche. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé lors de la première couche." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendance à l'adhérence" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Ce paramètre permet-il d'indiquer si un matériau est généralement utilisé comme matériau de support pendant l'impression." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendance à l'adhérence de la surface." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "N'agitez que les contours des pièces et non les trous des pièces." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Énergie de la surface" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Conserver les faces disjointes" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Énergie de la surface." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Hauteur de la couche" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Mise à l'échelle du facteur de compensation de contraction" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X début couche" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Pour compenser la contraction du matériau lors de son refroidissement, le modèle est mis à l'échelle avec ce facteur." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y début couche" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction XY (horizontalement)." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Épaisseur de la couche intermédiaire du radeau." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle verticale" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Épaisseur des couches supérieures du radeau." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction Z (verticalement)." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Ignorer une connexion entre lignes du support tous les N millimètres, pour rendre la structure de support plus facile à casser." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Matériau cristallin" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Gauche" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Relever la tête" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Position anti-suintage rétractée" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Éclair" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Jusqu'où le matériau doit être rétracté avant qu'il cesse de suinter." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angle de saillie du remplissage éclair" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Vitesse de rétraction de l'anti-suintage" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angle d'élagage du remplissage éclair" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "À quelle vitesse le matériau doit-il être rétracté lors d'un changement de filament pour empêcher le suintage." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angle de redressement du remplissage éclair" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Préparation de rupture Position rétractée" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angle de support du remplissage éclair" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Jusqu'où le filament peut être étiré avant qu'il ne se casse, pendant qu'il est chauffé." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitation de la portée des branches" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Vitesse de rétraction de préparation de rupture" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Ce paramètre limite la distance parcourue par chaque branche à partir du point qu'elle soutient. Le support peut ainsi être plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)" -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." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limiter le volume de ce maillage à celui des autres maillages. Cette option permet de faire en sorte que certaines zones d'un maillage s'impriment avec des paramètres différents et avec une extrudeuse entièrement différente." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Température de préparation de rupture" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitée" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La température utilisée pour purger le matériau devrait être à peu près égale à la température d'impression la plus élevée possible." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largeur de ligne" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Position rétractée de rupture" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Jusqu'où rétracter le filament afin de le casser proprement." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Vitesse de rétraction de rupture" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "La vitesse à laquelle rétracter le filament afin de le rompre proprement." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Température de rupture" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lignes" -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." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Vitesse de purge d'insertion" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "La vitesse d'amorçage du matériau après le passage à un autre matériau." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lignes" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longueur de la purge d'insertion" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du passage à un autre matériau." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Vitesse de purge de l'extrémité du filament" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondeur de la machine" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "La vitesse d'amorçage du matériau après le remplacement d'une bobine vide par une nouvelle bobine du même matériau." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polygone de la tête de la machine et du ventilateur" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longueur de purge de l'extrémité du filament" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Hauteur de la machine" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du remplacement d'une bobine vide par une nouvelle bobine du même matériau." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type de machine" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durée maximum du stationnement" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largeur de la machine" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "La durée pendant laquelle le matériau peut être conservé à l'abri de la sécheresse." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Facteur de déplacement sans chargement" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendre le porte-à-faux imprimable" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Un facteur indiquant la quantité de filament compressée entre le chargeur et la chambre de la buse ; utilisé pour déterminer jusqu'où faire avancer le matériau pour changer de filament." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faire de sorte que les maillages qui se touchent se chevauchent légèrement. Cela permet aux maillages de mieux adhérer les uns aux autres." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Débit" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Rendre les aires de support plus petites en bas qu'au niveau du porte-à-faux à supporter." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Inclure du support à tout emplacement sous le maillage de support, de sorte à ce qu'il n'y ait pas de porte-à-faux dans le maillage de support." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Débit de paroi" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position d'amorçage de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensation de débit sur les lignes de la paroi." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Débit de paroi externe" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendez les mailles plus adaptées à l'impression 3D." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensation de débit sur la ligne de la paroi la plus à l'extérieur." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Débit de paroi(s) interne(s)" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensation de débit sur les lignes de la paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus externe." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrique)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Débit du dessus/dessous" +msgctxt "material description" +msgid "Material" +msgstr "Matériau" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensation de débit sur les lignes du dessus/dessous." +msgctxt "material label" +msgid "Material" +msgstr "Matériau" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Débit de la surface du dessus" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID matériau" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensation de débit sur les lignes des zones en haut de l'impression." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de matériau entre les essuyages" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Débit de remplissage" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distance de détour max. sans rétraction" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensation de débit sur les lignes de remplissage." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accélération maximale X" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Débit de la jupe/bordure" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accélération maximale Y" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensation de débit sur les lignes de jupe ou bordure." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accélération maximale Z" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Débit du support" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Angle maximal des branches" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensation de débit sur les lignes de support." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Écart maximum" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Débit de l'interface de support" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Écart maximal de la surface d'extrusion" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensation de débit sur les lignes de plafond ou de bas de support." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Vitesse maximale du ventilateur" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Débit du plafond de support" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accélération maximale du filament" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensation de débit sur les lignes du plafond de support." +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Angle maximal du modèle" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Débit du bas de support" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Surface maximale du trou en porte-à-faux" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durée maximum du stationnement" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensation de débit sur les lignes de bas de support." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Résolution maximum" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Débit de la tour d'amorçage" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Nombre maximal de rétractions" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensation de débit sur les lignes de la tour d'amorçage." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angle maximum de la couche extérieure pour l'expansion" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Débit de la couche initiale" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Vitesse maximale E" -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." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Vitesse maximale X" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Débit de la paroi intérieure de la couche initiale" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Vitesse maximale Y" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensation de débit sur les lignes de paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus plus externe, mais uniquement pour la première couche" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Vitesse maximale Z" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Débit de la paroi extérieure de la couche initiale" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diamètre maximal supporté par la tour" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensation de débit sur la ligne de paroi la plus externe de la première couche." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Résolution de déplacement maximum" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Débit inférieur de la couche initiale" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Accélération maximale pour le moteur du sens X" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensation de débit sur les lignes inférieures de la première couche" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Accélération maximale pour le moteur du sens Y." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Température de veille" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Accélération maximale pour le moteur du sens Z." -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." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Accélération maximale pour le moteur du filament." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Matériau de support" +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 "Densité maximale du remplissage considéré comme étant mince. La couche sur le remplissage mince est considérée comme non soutenue et peut donc être traitée comme une couche du pont." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Ce paramètre permet-il d'indiquer si un matériau est généralement utilisé comme matériau de support pendant l'impression." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Le diamètre maximal sur les axes X/Y d’une petite zone qui doit être soutenue par une tour de soutien spéciale." -msgctxt "speed label" -msgid "Speed" -msgstr "Vitesse" +msgctxt "max_extrusion_before_wipe description" +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 "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé. Si cette valeur est inférieure au volume de matériau nécessaire dans une couche, le paramètre n'a aucun effet dans cette couche, c'est-à-dire qu'il est limité à un essuyage par couche." -msgctxt "speed description" -msgid "Speed" -msgstr "Vitesse" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Chevauchement des mailles fusionnées" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Vitesse d’impression" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Corrections" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "La vitesse à laquelle l'impression s'effectue." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Position X de la maille" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vitesse de remplissage" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Position Y de la maille" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "La vitesse à laquelle le remplissage est imprimé." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Position Z de la maille" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Vitesse d'impression de la paroi" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rang de traitement du maillage" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "La vitesse à laquelle les parois sont imprimées." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrice de rotation de la maille" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Vitesse d'impression de la paroi externe" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Milieu" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "La vitesse à laquelle les parois externes sont imprimées. L’impression de la paroi externe à une vitesse inférieure améliore la qualité finale de la coque. Néanmoins, si la différence entre la vitesse de la paroi interne et la vitesse de la paroi externe est importante, la qualité finale sera réduite." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largeur minimale de moule" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Vitesse d'impression de la paroi interne" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Durée minimale température de veille" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "La vitesse à laquelle toutes les parois internes seront imprimées. L’impression de la paroi interne à une vitesse supérieure réduira le temps d'impression global. Il est bon de définir cette vitesse entre celle de l'impression de la paroi externe et du remplissage." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longueur minimale de la paroi du pont" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Vitesse de la couche extérieure de la surface supérieure" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi uniforme" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "La vitesse à laquelle les couches extérieures de la surface supérieure sont imprimées." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalle de distance minimale d'extrusion" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Vitesse d'impression du dessus/dessous" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Taille minimale des entités" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "La vitesse à laquelle les couches du dessus/dessous sont imprimées." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Taux d'alimentation minimal" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Vitesse d'impression des supports" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Hauteur minimale par rapport au modèle" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "La vitesse à laquelle les supports sont imprimés. Imprimer les supports à une vitesse supérieure peut fortement accélérer l’impression. Par ailleurs, la qualité de la structure des supports n’a généralement pas beaucoup d’importance du fait qu'elle est retirée après l'impression." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Zone de remplissage minimum" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vitesse d'impression du remplissage de support" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Durée minimale d’une couche" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "La vitesse à laquelle le remplissage de support est imprimé. L'impression du remplissage à une vitesse plus faible permet de renforcer la stabilité." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi impaire" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vitesse d'impression de l'interface de support" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonférence minimale du polygone" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "La vitesse à laquelle les plafonds et bas de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largeur minimum de la couche extérieure pour l'expansion" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Vitesse d'impression des plafonds de support" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Vitesse minimale" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "La vitesse à laquelle les plafonds de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Surface minimale de support" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Vitesse d'impression des bas de support" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Surface minimale du bas de support" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "La vitesse à laquelle le bas de support est imprimé. L'impression à une vitesse plus faible permet de renforcer l'adhésion du support au-dessus de votre modèle." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Surface minimale de l'interface de support" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Vitesse de la tour d'amorçage" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Surface minimale du plafond de support" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distance X/Y minimale des supports" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "La vitesse à laquelle la tour d'amorçage est imprimée. L'impression plus lente de la tour d'amorçage peut la rendre plus stable lorsque l'adhérence entre les différents filaments est sous-optimale." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi fine" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Vitesse de déplacement" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimal avant roue libre" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "La vitesse à laquelle les déplacements s'effectuent." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Vitesse de la couche initiale" +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." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La vitesse de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau de fabrication. N'affecte pas les structures d'adhérence au plateau, comme la bordure et le radeau." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Taille minimale de la surface des polygones de support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Vitesse d’impression de la couche initiale" +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 "Taille minimale de la surface des bas du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "La vitesse d'impression de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau." +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." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Vitesse de déplacement de la couche initiale" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Épaisseur minimale des entités fines. Les entités de modèle qui sont plus fines que cette valeur ne seront pas imprimées, tandis que les entités plus épaisses que la taille d'entité minimale seront élargies à la largeur minimale de la ligne de paroi." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Vitesse des mouvements de déplacement dans la couche initiale. Une valeur plus faible est recommandée pour éviter que les pièces déjà imprimées ne s'écartent du plateau. La valeur de ce paramètre peut être calculée automatiquement à partir du ratio entre la vitesse des mouvements et la vitesse d'impression." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Largeur minimale à laquelle la base du support conique est réduite. Des largeurs étroites peuvent entraîner des supports instables." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Vitesse d'impression de la jupe/bordure" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Moule" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "La vitesse à laquelle la jupe et la bordure sont imprimées. Normalement, cette vitesse est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une vitesse différente." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angle du moule" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Vitesse du décalage en Z" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Hauteur du plafond de moule" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "La vitesse à laquelle le mouvement vertical en Z est effectué pour des décalages en Z. Cette vitesse est généralement inférieure à la vitesse d'impression car le plateau ou le portique de la machine est plus difficile à déplacer." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordre d'étirage monotone" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Nombre de couches plus lentes" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordre monotone de la surface supérieure" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Les premières couches sont imprimées plus lentement que le reste du modèle afin d’obtenir une meilleure adhérence au plateau et d’améliorer le taux de réussite global des impressions. La vitesse augmente graduellement à chacune de ces couches." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordre monotone dessus / dessous" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapport d'égalisation des débits" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Une jupe à plusieurs lignes vous aide à mieux préparer votre extrusion pour les petits modèles. Définissez celle valeur sur 0 pour désactiver la jupe." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Facteur de correction de la largeur d'extrusion en fonction de la vitesse. À 0 %, la vitesse de mouvement reste constante à la vitesse d'impression. À 100 %, la vitesse de mouvement est ajustée de sorte que le débit (en mm³/s) reste constant, c'est-à-dire que les lignes à la moitié de la largeur de ligne normale sont imprimées deux fois plus vite et que les lignes à la moitié de la largeur sont imprimées aussi vite. Une valeur supérieure à 100 % peut aider à compenser la pression plus élevée requise pour extruder les lignes larges." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicateur de la largeur de la ligne sur la première couche. Augmenter le multiplicateur peut améliorer l'adhésion au plateau." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activer le contrôle d'accélération" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Facteur de déplacement sans chargement" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Active le réglage de l'accélération de la tête d'impression. Augmenter les accélérations peut réduire la durée d'impression au détriment de la qualité d'impression." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Aucune couche dans les trous en Z" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Activer l'accélération des déplacements" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Des moyens non traditionnels d'imprimer vos modèles." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilisez un taux d'accélération distinct pour les déplacements. Si cette option est désactivée, les déplacements utiliseront la même accélération que celle de la ligne imprimée à l'emplacement cible." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Aucun" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accélération de l'impression" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Aucun" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L'accélération selon laquelle l'impression s'effectue." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accélération de remplissage" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L'accélération selon laquelle le remplissage est imprimé." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalement, Cura essaye de raccommoder les petits trous dans le maillage et supprime les parties des couches contenant de gros trous. Activer cette option pousse Cura à garder les parties qui ne peuvent être raccommodées. Cette option doit être utilisée en dernier recours quand tout le reste échoue à produire un G-Code correct." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accélération de la paroi" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Pas dans la couche extérieure" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "L'accélération selon laquelle les parois sont imprimées." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Pas sur la surface extérieure" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accélération de la paroi externe" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angle de la buse" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "L'accélération selon laquelle les parois externes sont imprimées." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accélération de la paroi intérieure" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Zones interdites au bec d'impression" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "L'accélération selon laquelle toutes les parois intérieures sont imprimées." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accélération de couche extérieure de surface supérieure" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longueur de la buse" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "La vitesse à laquelle les couches extérieures de surface supérieure sont imprimées." +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" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accélération du dessus/dessous" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Vitesse d'amorçage de changement de buse" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "L'accélération selon laquelle les couches du dessus/dessous sont imprimées." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Vitesse de rétraction de changement de buse" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accélération du support" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distance de rétraction de changement de buse" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "L'accélération selon laquelle la structure de support est imprimée." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Vitesse de rétraction de changement de buse" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accélération de remplissage du support" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Nombre d'extrudeuses" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "L'accélération selon laquelle le remplissage de support est imprimé." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Nombre d'extrudeuses activées" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accélération de l'interface du support" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Nombre de couches plus lentes" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "L'accélération selon laquelle les plafonds et bas de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Nombre de trains d'extrusion activés ; automatiquement défini dans le logiciel" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accélération des plafonds de support" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Nombre de trains d'extrudeuse. Un train d'extrudeuse est la combinaison d'un chargeur, d'un tube bowden et d'une buse." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "L'accélération selon laquelle les plafonds de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Le nombre de déplacements de la buse à travers la brosse." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accélération des bas de support" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Nombre de fois pour réduire la densité de remplissage de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité du remplissage." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "L'accélération selon laquelle les bas de support sont imprimés. Les imprimer avec une accélération plus faible renforce l'adhésion du support au-dessus du modèle." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Nombre de fois pour réduire la densité de remplissage du support de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité de remplissage du support." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accélération de la tour d'amorçage" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octaédrique" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "L'accélération selon laquelle la tour d'amorçage est imprimée." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Désactivé" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accélération de déplacement" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset appliqué à l'objet dans la direction X." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "L'accélération selon laquelle les déplacements s'effectuent." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset appliqué à l'objet dans la direction Y." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accélération de la couche initiale" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Décalage appliqué à l'objet dans le sens z. Cela vous permet d'exécuter ce que l'on appelait « Affaissement de l'objet »." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "L'accélération pour la couche initiale." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Décalage avec extrudeuse" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accélération de l'impression de la couche initiale" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Sur le plateau si possible" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "L'accélération durant l'impression de la couche initiale." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sur le modèle si nécessaire" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accélération de déplacement de la couche initiale" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Un à la fois" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "L'accélération pour les déplacements dans la couche initiale." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Appliquer un décalage en Z uniquement lors du mouvement au-dessus de pièces imprimées qui ne peuvent être évitées par le mouvement horizontal, via Éviter les pièces imprimées lors du déplacement." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accélération de la jupe/bordure" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "N'exécute un étirage que sur l'ultime couche du maillage. Ceci économise du temps si les couches inférieures ne nécessitent pas de fini lisse de surface." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "L'accélération selon laquelle la jupe et la bordure sont imprimées. Normalement, cette accélération est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une accélération différente." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activer le contrôle de saccade" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angle du bouclier de suintage" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Active le réglage de la saccade de la tête d'impression lorsque la vitesse sur l'axe X ou Y change. Augmenter les saccades peut réduire la durée d'impression au détriment de la qualité d'impression." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distance du bouclier de suintage" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Activer les saccades de déplacement" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Portée optimale des branches" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilisez un taux de saccades différent pour les déplacements. Si cette option est désactivée, les déplacements utiliseront les mêmes saccades que celles de la ligne imprimée à l'emplacement cible." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimiser l'ordre d'impression des parois" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Imprimer en saccade" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimiser l'ordre dans lequel des parois sont imprimées de manière à réduire le nombre de retraits et les distances parcourues. La plupart des pièces bénéficieront de cette possibilité, mais certaines peuvent en fait prendre plus de temps à l'impression ; veuillez dès lors comparer les estimations de durée d'impression avec et sans optimisation. La première couche n'est pas optimisée lorsque le type d'adhérence au plateau est défini sur bordure." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Le changement instantané maximal de vitesse de la tête d'impression." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diamètre extérieur de la buse" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Saccade de remplissage" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accélération de la paroi externe" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage est imprimé." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrudeuse de paroi externe" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Saccade de paroi" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Débit de paroi externe" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois sont imprimées." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Insert de paroi externe" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Saccade de paroi externe" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois externes sont imprimées." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largeur de ligne de la paroi externe" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Saccade de paroi intérieure" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures sont imprimées." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distance d'essuyage paroi extérieure" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Saccade de couches extérieures de la surface supérieure" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les couches extérieures de surface supérieure sont imprimées." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De l'extérieur vers l'intérieur" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Saccade du dessus/dessous" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angle de parois en porte-à-faux" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les couches du dessus/dessous sont imprimées." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Vitesse de paroi en porte-à-faux" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Saccade des supports" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Les parois en porte-à-faux seront imprimées à ce pourcentage de leur vitesse d'impression normale." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la structure de support est imprimée." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pause après l'irrétraction." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Saccade de remplissage du support" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression des parois et de la couche extérieure du pont." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage de support est imprimé." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la deuxième couche extérieure du pont." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Saccade de l'interface de support" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Pourcentage de la vitesse du ventilateur à utiliser lors de l'impression des zones de couche extérieure situées immédiatement au-dessus du support. Une vitesse de ventilateur élevée facilite le retrait du support." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds et bas sont imprimés." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la troisième couche extérieure du pont." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Saccade des plafonds de support" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Les polygones en couches tranchées dont la circonférence est inférieure à cette valeur seront filtrés. Des valeurs élevées permettent d'obtenir un maillage de meilleure résolution mais augmentent le temps de découpe. Cette option est principalement destinée aux imprimantes SLA haute résolution et aux modèles 3D de très petite taille avec beaucoup de détails." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds de support sont imprimés." +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Angle des branches souhaité" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Saccade des bas de support" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Empêchez la transition d'avant en arrière entre une paroi supplémentaire et une paroi en moins. Cette marge étend la gamme des largeurs de ligne qui suivent à [Largeur minimale de la ligne de paroi - marge, 2 * Largeur minimale de la ligne de paroi + marge]. L'augmentation de cette marge réduit le nombre de transitions, ce qui réduit le nombre de démarrages/arrêts d'extrusion et le temps de trajet. Cependant, une grande variation de la largeur de la ligne peut entraîner des problèmes de sous-extrusion ou de sur-extrusion." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les bas de support sont imprimés." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accélération de la tour d'amorçage" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Débit de la tour d'amorçage" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "Saccade de la tour d'amorçage" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la tour d'amorçage est imprimée." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Saccade de déplacement" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largeur de ligne de la tour d'amorçage" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Le changement instantané maximal de vitesse selon lequel les déplacements s'effectuent." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimum de la tour d'amorçage" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Saccade de la couche initiale" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Le changement instantané maximal de vitesse pour la couche initiale." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Taille de la tour d'amorçage" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Saccade d’impression de la couche initiale" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Vitesse de la tour d'amorçage" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Le changement instantané maximal de vitesse durant l'impression de la couche initiale." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Position X de la tour d'amorçage" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Saccade de déplacement de la couche initiale" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Position Y de la tour d'amorçage" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "L'accélération pour les déplacements dans la couche initiale." +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Saccade de la jupe/bordure" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accélération de l'impression" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la jupe et la bordure sont imprimées." +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Imprimer en saccade" -msgctxt "travel label" -msgid "Travel" -msgstr "Déplacement" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Séquence d'impression" -msgctxt "travel description" -msgid "travel" -msgstr "déplacement" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Vitesse d’impression" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Activer la rétraction" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimer parois fines" -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." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Rétracter au changement de couche" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimer les structures de remplissage uniquement là où le haut du modèle doit être supporté, ce qui permet de réduire le temps d'impression et l'utilisation de matériau, mais conduit à une résistance uniforme de l'objet." -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." +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes d'étirage dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distance de rétraction" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimer les modèles comme moule, qui peut être coulé afin d'obtenir un modèle ressemblant à ceux présents sur le plateau." -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." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprimer les parties du modèle qui sont horizontalement plus fines que la taille de la buse." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Vitesse de rétraction" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Vitesse d'impression à utiliser lors de l'impression de la deuxième couche extérieure du pont." -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." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Vitesse d'impression à utiliser lors de l'impression de la troisième couche extérieure du pont." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Vitesse de rétraction" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime le remplissage avant d'imprimer les parois. Imprimer les parois d'abord permet d'obtenir des parois plus précises, mais les porte-à-faux s'impriment plus mal. Imprimer le remplissage d'abord entraîne des parois plus résistantes, mais le motif de remplissage se verra parfois à travers la surface." -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." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes de la surface supérieure dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Vitesse de rétraction d'amorçage" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes supérieures et inférieures dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." -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." +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Température d’impression" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Volume supplémentaire à l'amorçage" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Température d’impression couche initiale" -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." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "La jupe est plus facile à retirer lorsque sa ligne la plus intérieure est imprimée en plusieurs couches." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Déplacement minimal de rétraction" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime une paroi supplémentaire une couche sur deux. Ainsi, le remplissage est pris entre ces parois supplémentaires pour créer des impressions plus solides." -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." +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualité" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Nombre maximal de rétractions" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quart cubique" -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." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radeau" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalle de distance minimale d'extrusion" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Lame d'air du radeau" -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." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrudeur de la base du raft" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Mode de détours" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Vitesse du ventilateur pour la base du radeau" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Les détours maintiennent la buse dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et la buse se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous ou d'effectuer les détours uniquement dans le remplissage." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacement des lignes de base du radeau" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Désactivé" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largeur de la ligne de base du radeau" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tout" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accélération de l'impression de la base du radeau" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Pas sur la surface extérieure" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Saccade d’impression de la base du radeau" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Pas dans la couche extérieure" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Vitesse d’impression de la base du radeau" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "À l'intérieur du remplissage" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Épaisseur de la base du radeau" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distance de détour max. sans rétraction" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Nombre de parois à la base du radeau" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Marge supplémentaire du radeau" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Rétracter avant la paroi externe" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Vitesse du ventilateur pendant le radeau" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Toujours rétracter lors du déplacement pour commencer une paroi externe." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrudeur du milieu du radeau" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Éviter les pièces imprimées lors du déplacement" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Vitesse du ventilateur pour le milieu du radeau" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "La buse contourne les pièces déjà imprimées lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Couches du milieu du radeau" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Éviter les supports lors du déplacement" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largeur de la ligne intermédiaire du radeau" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "La buse contourne les supports déjà imprimés lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accélération de l'impression du milieu du radeau" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distance d'évitement du déplacement" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Saccade d’impression du milieu du radeau" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "La distance entre la buse et les pièces déjà imprimées lors du contournement pendant les déplacements." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Vitesse d’impression du milieu du radeau" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X début couche" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Interligne intermédiaire du radeau" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordonnée X de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Épaisseur intermédiaire du radeau" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y début couche" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accélération de l'impression du radeau" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordonnée Y de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Saccade d’impression du radeau" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Décalage en Z lors d’une rétraction" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Vitesse d’impression du radeau" -msgctxt "retraction_hop_enabled 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 "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Lissage de radeau" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Décalage en Z uniquement sur les pièces imprimées" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrudeur du haut du radeau" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Appliquer un décalage en Z uniquement lors du mouvement au-dessus de pièces imprimées qui ne peuvent être évitées par le mouvement horizontal, via Éviter les pièces imprimées lors du déplacement." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Vitesse du ventilateur pour le dessus du radeau" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hauteur du décalage en Z" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Épaisseur de la couche supérieure du radeau" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Couches supérieures du radeau" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Décalage en Z après changement d'extrudeuse" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largeur de la ligne supérieure du radeau" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Une fois que la machine est passée d'une extrudeuse à l'autre, le plateau s'abaisse pour créer un dégagement entre la buse et l'impression. Cela évite que la buse ne ressorte avec du matériau suintant sur l'extérieur d'une impression." +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accélération de l'impression du dessus du radeau" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Décalage en Z après changement de hauteur d'extrudeuse" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Saccade d’impression du dessus du radeau" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z après changement d'extrudeuse." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Vitesse d’impression du dessus du radeau" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refroidissement" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Interligne supérieur du radeau" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refroidissement" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aléatoire" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activer le refroidissement de l'impression" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Randomiser le démarrage du remplissage" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Active les ventilateurs de refroidissement de l'impression pendant l'impression. Les ventilateurs améliorent la qualité de l'impression sur les couches présentant des durées de couche courtes et des ponts / porte-à-faux." +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Randomisez la ligne de remplissage qui est imprimée en premier. Cela empêche un segment de devenir plus fort, mais cela se fait au prix d'un déplacement supplémentaire." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Vitesse du ventilateur" +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." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "La vitesse à laquelle les ventilateurs de refroidissement de l'impression tournent." +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangulaire" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Vitesse régulière du ventilateur" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "La vitesse à laquelle les ventilateurs tournent avant d'atteindre la limite. Lorsqu'une couche s'imprime plus rapidement que la limite, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Vitesse maximale du ventilateur" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Vitesse régulière du ventilateur à la hauteur" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "La vitesse à laquelle les ventilateurs tournent sur la durée minimale d'une couche. La vitesse du ventilateur augmente progressivement entre la vitesse régulière du ventilateur et la vitesse maximale lorsque la limite est atteinte." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Vitesse régulière du ventilateur à la couche" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Limite de vitesse régulière/maximale du ventilateur" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "La durée de couche qui définit la limite entre la vitesse régulière et la vitesse maximale du ventilateur. Les couches qui s'impriment moins vite que cette durée utilisent la vitesse régulière du ventilateur. Pour les couches plus rapides, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusion relative" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Vitesse des ventilateurs initiale" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Supprimer tous les trous" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Vitesse à laquelle les ventilateurs tournent au début de l'impression. Pour les couches suivantes, la vitesse des ventilateurs augmente progressivement jusqu'à la couche qui correspond à la vitesse régulière des ventilateurs en hauteur." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Supprimer les premières couches vides" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Vitesse régulière du ventilateur à la hauteur" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Supprimer l'intersection des mailles" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse régulière. Pour les couches situées en-dessous, la vitesse des ventilateurs augmente progressivement de la vitesse des ventilateurs initiale jusqu'à la vitesse régulière." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Supprimer les coins intérieurs du radeau" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Vitesse régulière du ventilateur à la couche" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Supprime les zones sur lesquelles plusieurs mailles se chevauchent. Cette option peut être utilisée si des objets à matériau double fusionné se chevauchent." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "La couche à laquelle les ventilateurs tournent à la vitesse régulière. Si la vitesse régulière du ventilateur à la hauteur est définie, cette valeur est calculée et arrondie à un nombre entier." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Supprimer les couches vides sous la première couche imprimée si elles sont présentes. Le fait de désactiver ce paramètre peut entraîner l'apparition de premières couches vides si le paramètre Tolérance à la découpe est défini sur Exclusif ou Milieu." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Durée minimale d’une couche" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Supprime les trous dans chacune des couches et conserve uniquement la forme extérieure. Tous les détails internes invisibles seront ignorés. Il en va de même pour les trous qui pourraient être visibles depuis le dessus ou le dessous de la pièce." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Remplace la partie la plus externe du motif du dessus/dessous par un certain nombre de lignes concentriques. Le fait d'utiliser une ou deux lignes améliore les plafonds qui commencent sur du matériau de remplissage." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Préférence d'emplacement" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Rétracter avant la paroi externe" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Rétracter au changement de couche" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Temps minimum passé sur une couche. Cela force l'imprimante à ralentir afin de passer au minimum la durée définie ici sur une couche. Cela permet au matériau imprimé de refroidir correctement avant l'impression de la couche suivante. Les couches peuvent néanmoins prendre moins de temps que le temps de couche minimum si « Lift Head  » (Relever Tête) est désactivé et si la vitesse minimum serait autrement non respectée." +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." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Vitesse minimale" +msgctxt "wipe_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." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "La vitesse minimale d'impression, malgré le ralentissement dû à la durée minimale d'une couche. Si l'imprimante devait trop ralentir, la pression au niveau de la buse serait trop faible, ce qui résulterait en une mauvaise qualité d'impression." +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." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Relever la tête" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distance de rétraction" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Lorsque la vitesse minimale est atteinte à cause de la durée minimale d'une couche, relève la tête de l'impression et attend que la durée supplémentaire jusqu'à la durée minimale d'une couche soit atteinte." +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Volume supplémentaire à l'amorçage" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Température d'impression en cas de petite couche" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Déplacement minimal de rétraction" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Réduisez progressivement à cette température lors de l'impression à des vitesses réduites en raison de la durée minimale d’une couche." +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Vitesse de rétraction d'amorçage" -msgctxt "support label" -msgid "Support" -msgstr "Supports" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Vitesse de rétraction" -msgctxt "support description" -msgid "Support" -msgstr "Supports" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Vitesse de rétraction" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Générer les supports" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Droite" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Mise à l'échelle de la vitesse du ventilateur à 0-1" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrudeuse de support" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Mettez à l'échelle la vitesse du ventilateur de 0 à 1 au lieu de 0 à 256." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Mise à l'échelle du facteur de compensation de contraction" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrudeuse de remplissage du support" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scène comporte un maillage de support" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression du remplissage du support. Cela est utilisé en multi-extrusion." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Préférence de jointure d'angle" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrudeuse de support de la première couche" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Définit la hauteur du bouclier. Choisissez d'imprimer le bouclier à la pleine hauteur du modèle ou à une hauteur limitée." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche de remplissage du support. Cela est utilisé en multi-extrusion." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrudeuse de l'interface du support" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Paramètres qui sont utilisés uniquement si CuraEngine n'est pas invoqué depuis l'interface Cura." -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds et bas du support. Cela est utilisé en multi-extrusion." +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rétraction initiale de la buse partagée" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrudeuse des plafonds de support" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angle le plus aigu" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds du support. Cela est utilisé en multi-extrusion." +msgctxt "shell description" +msgid "Shell" +msgstr "Coque" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrudeuse des bas de support" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Plus court" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des bas du support. Cela est utilisé en multi-extrusion." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Afficher les variantes de la machine" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Structure du support" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Couches de soutien des bords de la couche extérieure" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Choisit entre les techniques disponibles pour générer un support. Le support « Normal » créer une structure de support directement sous les pièces en porte-à-faux et fait descendre ces zones directement vers le bas. Le support « Arborescent » crée des branches vers les zones en porte-à-faux qui supportent le modèle à l'extrémité de ces branches et permet aux branches de ramper autour du modèle afin de les supporter le plus possible sur le plateau de fabrication." +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Épaisseur de soutien des bords de la couche" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Arborescence" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Chevauchement de la couche extérieure" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Angle maximal des branches" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Pourcentage de chevauchement de la couche extérieure" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Il s'agit de l'angle maximal des branches imprimées autour du modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, vous obtiendrez une plus grande portée." +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diamètre des branches" +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." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Diamètre des branches les plus minces du support arborescent. Plus les branches sont épaisses, plus elles sont robustes ; les branches proches de la base seront plus épaisses que cette valeur." +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ignorer une ligne de connexion sur N pour rendre la structure de support plus facile à casser." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diamètre du tronc" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Ignorer certaines connexions de ligne du support pour rendre la structure de support plus facile à casser. Ce paramètre s'applique au motif de remplissage du support en zigzag." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Le diamètre des branches les plus larges du support arborescent. Un tronc plus épais est plus robuste ; un tronc plus fin prend moins de place sur le plateau de fabrication." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Jupe" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Angle de diamètre des branches" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distance de la jupe" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Angle du diamètre des branches au fur et à mesure qu'elles s'épaississent lorsqu'elles sont proches du fond. Avec un angle de 0°, les branches auront une épaisseur uniforme sur toute leur longueur. Donner un peu d'angle permet d'augmenter la stabilité du support arborescent." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Hauteur de la jupe" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Positionnement des supports" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Nombre de lignes de la jupe" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "En contact avec le plateau" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accélération de la jupe/bordure" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Partout" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrudeur de la jupe/bordure" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Angle des branches souhaité" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Débit de la jupe/bordure" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Ce paramètre détermine l'angle souhaité pour les branches, lorsqu'elles n'ont pas à contourner le modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, les branches fusionneront plus rapidement." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Saccade de la jupe/bordure" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Augmentation du diamètre des branches rattachées au modèle" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largeur des lignes de jupe/bordure" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Le diamètre maximal d'une branche rattachée au modèle peut augmenter lorsqu'elle fusionne avec des branches pouvant atteindre le plateau. Le fait d'augmenter ce diamètre réduit le temps d'impression, mais agrandit la surface du support sur laquelle repose le modèle." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longueur minimale de la jupe/bordure" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Vitesse d'impression de la jupe/bordure" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Hauteur minimale par rapport au modèle" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolérance à la découpe" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Il s'agit de la hauteur minimale que doit atteindre une branche si elle est rattachée au modèle. Ce paramètre empêche la formation de petites gouttes de support. Il est ignoré lorsqu'une branche soutient un plafond de support." +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Vitesse de la couche initiale de petite structure" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diamètre de la couche initiale" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longueur max de petite structure" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Il s'agit du diamètre que chaque branche essaie d'atteindre au niveau du plateau. Ce paramètre améliore l'adhérence au plateau." +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Vitesse de petite structure" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densité des branches" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Taille maximale des petits trous" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ce paramètre ajuste la densité de la structure de support utilisée pour générer les extrémités des branches. Une valeur plus élevée permet d'obtenir de meilleurs porte-à-faux, mais les supports seront plus difficiles à retirer. Utilisez un plafond de support en cas de valeurs très élevées ou veillez à ce que la densité du support soit tout aussi élevée aux extrémités." +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Température d'impression en cas de petite couche" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diamètre des extrémités" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Petit Haut/Bas sur la surface" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Il s'agit du diamètre des extrémités des branches du support arborescent." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Petite largeur du dessus/dessous" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitation de la portée des branches" +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." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Ce paramètre limite la distance parcourue par chaque branche à partir du point qu'elle soutient. Le support peut ainsi être plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)" +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." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Portée optimale des branches" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Les petites zones haut/bas sont remplies avec des parois au lieu du motif haut/bas par défaut. Cela permet d'éviter les mouvements saccadés. Par défaut, l'option est désactivée pour la couche supérieure (exposée à l'air) (voir « Petit Haut/Bas sur la surface »)." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Il s'agit de la distance recommandée à laquelle les branches peuvent s'éloigner des points qu'elles soutiennent. Les branches peuvent ne pas respecter cette valeur pour atteindre leur emplacement cible (plateau ou partie plate du modèle). L'abaissement de cette valeur rendra le support plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)." +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Bordure intelligente" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Préférence d'emplacement" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Masquage intelligent" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Il s'agit de l'emplacement souhaité pour les structures de support. Si les structures ne peuvent pas être placées à l'endroit souhaité, elles seront placées ailleurs, quitte à ce que ce soit sur le modèle." +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Lisser les contours spiralisés" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Sur le plateau si possible" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Lisser les contours spiralisés pour réduire la visibilité de la jointure en Z (la jointure en Z doit être à peine visible sur l'impression mais sera toujours visible dans la vue en couches). Veuillez remarquer que le lissage aura tendance à estomper les détails très fins de la surface." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sur le modèle si nécessaire" +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." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angle de porte-à-faux de support" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Du matériau peut suinter pendant un déplacement d'essuyage, ce qui peut être compensé ici." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "L'angle minimal des porte-à-faux pour lesquels un support est ajouté. À une valeur de 0 °, tous les porte-à-faux sont soutenus, tandis qu'à 90 °, aucun support ne sera créé." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modes spéciaux" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Motif du support" +msgctxt "speed description" +msgid "Speed" +msgstr "Vitesse" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Le motif des supports de l'impression. Les différentes options disponibles résultent en des supports difficiles ou faciles à retirer." +msgctxt "speed label" +msgid "Speed" +msgstr "Vitesse" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Vitesse de déplacement de l'axe Z pendant le décalage." -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiraliser le contour extérieur" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Cette fonction ajuste le déplacement en Z sur le bord extérieur. Cela va créer une augmentation stable de Z sur toute l’impression. Cette fonction transforme un modèle solide en une impression à paroi unique avec une base solide. Cette fonctionnalité doit être activée seulement lorsque chaque couche contient uniquement une seule partie." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Température de veille" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code de démarrage" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Point de départ de chaque voie dans une couche. Quand les voies dans les couches consécutives démarrent au même endroit, une jointure verticale peut apparaître sur l'impression. En alignant les points de départ près d'un emplacement défini par l'utilisateur, la jointure sera plus facile à faire disparaître. Lorsqu'elles sont disposées de manière aléatoire, les imprécisions de départ des voies seront moins visibles. En choisissant la voie la plus courte, l'impression se fera plus rapidement." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pas par millimètre (E)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Nombre de lignes de la paroi du support" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pas par millimètre (X)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire." +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pas par millimètre (Y)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Nombre de lignes de parois de l'interface du support" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pas par millimètre (Z)" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois avec lesquelles entourer la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." +msgctxt "support description" +msgid "Support" +msgstr "Supports" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Nombre de lignes de parois du toit du support" +msgctxt "support label" +msgid "Support" +msgstr "Supports" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois avec lesquelles entourer le toit de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accélération du support" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distance inférieure des supports" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Nombre de lignes de parois inférieures du support" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Le nombre de parois avec lesquelles entourer la surface inférieure de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Relier les lignes de support" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Nombre de lignes de la bordure du support" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Relie les extrémités des lignes de support. L'activation de ce paramètre peut rendre votre support plus robuste et réduire la sous-extrusion, mais cela demandera d'utiliser plus de matériau." +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largeur de la bordure du support" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Relier les zigzags de support" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Comptage des lignes de morceaux du support" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Relie les zigzags. Cela augmente la solidité des supports en zigzag." +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Taille de morceaux du support" msgctxt "support_infill_rate label" msgid "Support Density" msgstr "Densité du support" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajuste la densité du support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorité de distance des supports" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distance d'écartement de ligne du support" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrudeuse de support" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accélération des bas de support" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densité du bas de support" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrudeuse des bas de support" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Débit du bas de support" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calculé par la densité du support." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansion horizontale du bas de support" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distance d'écartement de ligne du support de la couche initiale" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Saccade des bas de support" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distance entre les lignes de la structure de support de la couche initiale imprimée. Ce paramètre est calculé en fonction de la densité du support." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direction de la ligne de bas de support" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direction de ligne de remplissage du support" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distance d'écartement de ligne de bas de support" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que l'angle par défaut est utilisé (0 degré)." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largeur de ligne de bas de support" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Activer la bordure du support" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Motif du bas de support" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Générer un bord à l'intérieur des zones de remplissage du support de la première couche. Cette bordure est imprimée sous le support et non autour de celui-ci, ce qui augmente l'adhérence du support au plateau." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Vitesse d'impression des bas de support" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largeur de la bordure du support" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Épaisseur du bas de support" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Largeur de la bordure à imprimer sous le support. Une plus grande bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Débit du support" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Nombre de lignes de la bordure du support" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansion horizontale des supports" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Nombre de lignes utilisées pour la bordure du support. L'augmentation du nombre de lignes de bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accélération de remplissage du support" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distance Z des supports" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrudeuse de remplissage du support" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distance entre le dessus/dessous du support et l'impression. Cet écart offre un espace permettant de retirer les supports une fois l'impression du modèle terminée. Cette valeur est arrondie au chiffre supérieur jusqu'à atteindre un multiple de la hauteur de la couche." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Saccade de remplissage du support" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distance supérieure des supports" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage de support" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distance entre l’impression et le haut des supports." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direction de ligne de remplissage du support" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distance inférieure des supports" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vitesse d'impression du remplissage de support" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distance entre l’impression et le bas des supports." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accélération de l'interface du support" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distance X/Y des supports" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densité de l'interface de support" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distance entre le support et l'impression dans les directions X/Y." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrudeuse de l'interface du support" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorité de distance des supports" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Débit de l'interface de support" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Si la Distance X/Y des supports annule la Distance Z des supports ou inversement. Lorsque X/Y annule Z, la distance X/Y peut écarter le support du modèle, influençant ainsi la distance Z réelle par rapport au porte-à-faux. Nous pouvons désactiver cela en n'appliquant pas la distance X/Y autour des porte-à-faux." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansion horizontale de l'interface de support" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y annule Z" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Saccade de l'interface de support" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z annule X/Y" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direction de ligne d'interface du support" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distance X/Y minimale des supports" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largeur de ligne d'interface de support" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distance entre la structure de support et le porte-à-faux dans les directions X/Y." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Motif de l'interface de support" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Hauteur de la marche de support" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Priorité de l'interface de support" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "La hauteur de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables. Définir la valeur sur zéro pour désactiver le comportement en forme d'escalier." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Résolution de l'interface du support" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largeur maximale de la marche de support" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vitesse d'impression de l'interface de support" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "La largeur maximale de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Épaisseur de l'interface de support" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Angle de pente minimum de la marche de support" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Nombre de lignes de parois de l'interface du support" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pente minimum de la zone pour un effet de marche de support. Des valeurs basses devraient faciliter l'enlèvement du support sur les pentes peu superficielles ; des valeurs très basses peuvent donner des résultats vraiment contre-intuitifs sur d'autres pièces du modèle." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Saccade des supports" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Distance de jointement des supports" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "La distance maximale entre les supports dans les directions X/Y. Lorsque des modèle séparés sont plus rapprochés que cette valeur, ils fusionnent." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansion horizontale des supports" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Le décalage appliqué à tous les polygones pour chaque couche. Une valeur positive peut lisser les zones de support et rendre le support plus solide." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage de support" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distance d'écartement de ligne du support" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "L'épaisseur par couche de matériau de remplissage de support. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largeur de ligne de support" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Étapes de remplissage graduel du support" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Maillage de support" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Nombre de fois pour réduire la densité de remplissage du support de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité de remplissage du support." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angle de porte-à-faux de support" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Hauteur d'étape de remplissage graduel du support" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Motif du support" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "La hauteur de remplissage de support d'une densité donnée avant de passer à la moitié de la densité." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Positionnement des supports" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Surface minimale de support" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accélération des plafonds de support" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Taille minimale de la surface des polygones de support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densité du plafond de support" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Activer l'interface de support" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrudeuse des plafonds de support" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Générer une interface dense entre le modèle et le support. Cela créera une couche sur le dessus du support sur lequel le modèle est imprimé et sur le dessous du support sur lequel le modèle repose." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Débit du plafond de support" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Activer les plafonds de support" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansion horizontale du plafond de support" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Générer une plaque dense de matériau entre le plafond du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Saccade des plafonds de support" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Activer les bas de support" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direction de la ligne de plafond de support" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Générer une plaque dense de matériau entre le bas du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distance d'écartement de ligne du plafond de support" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Épaisseur de l'interface de support" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largeur de ligne de plafond de support" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "L'épaisseur de l'interface du support à l'endroit auquel il touche le modèle, sur le dessous ou le dessus." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Motif du plafond de support" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Vitesse d'impression des plafonds de support" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Épaisseur du plafond de support" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "L'épaisseur des plafonds de support. Cela contrôle la quantité de couches denses sur le dessus du support sur lequel le modèle repose." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Nombre de lignes de parois du toit du support" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Épaisseur du bas de support" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Vitesse d'impression des supports" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "L'épaisseur des bas de support. Cela contrôle le nombre de couches denses imprimées sur le dessus des endroits d'un modèle sur lequel le support repose." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Hauteur de la marche de support" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Résolution de l'interface du support" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largeur maximale de la marche de support" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Angle de pente minimum de la marche de support" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densité de l'interface de support" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Structure du support" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajuste la densité des plafonds et bas de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distance supérieure des supports" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densité du plafond de support" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Nombre de lignes de la paroi du support" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "La densité des plafonds de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distance X/Y des supports" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distance d'écartement de ligne du plafond de support" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distance Z des supports" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distance entre les lignes du plafond de support imprimées. Ce paramètre est calculé par la densité du plafond de support mais peut également être défini séparément." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Priorité aux lignes de support" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densité du bas de support" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Priorité au support" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "La densité des bas de la structure de support. Une valeur plus élevée résulte en une meilleure adhésion du support au-dessus du modèle." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Vitesse du ventilateur de couche extérieure supportée" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distance d'écartement de ligne de bas de support" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Surface" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distance entre les lignes du bas de support imprimées. Ce paramètre est calculé par la densité du bas de support mais peut également être défini séparément." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Énergie de la surface" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Motif de l'interface de support" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Mode de surface" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Le motif selon lequel l'interface du support avec le modèle est imprimée." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendance à l'adhérence de la surface." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Énergie de la surface." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Ce paramètre inverse l'ordre d'impression de la ligne de bordure la plus intérieure et de la deuxième ligne de bordure la plus intérieure. La bordure est ainsi plus facile à retirer." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Passe aux volumes d'intersection de maille qui appartiennent à chaque couche, de manière à ce que les mailles qui se chevauchent soient entrelacées. Si vous désactivez ce paramètre, l'une des mailles obtiendra tout le volume dans le chevauchement tandis qu'il est retiré des autres mailles." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +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." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordonnée X de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Motif du plafond de support" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Coordonnée X de la position près de laquelle démarrer l'impression de chaque partie dans une couche." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Le motif d'impression pour les plafonds de support." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordonnée Y de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Coordonnée Y de la position près de laquelle démarrer l'impression de chaque partie dans une couche." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "L'accélération durant l'impression de la couche initiale." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Motif du bas de support" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "L'accélération pour la couche initiale." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Le motif d'impression pour les bas de support." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "L'accélération pour les déplacements dans la couche initiale." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "L'accélération pour les déplacements dans la couche initiale." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "L'accélération selon laquelle toutes les parois intérieures sont imprimées." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L'accélération selon laquelle le remplissage est imprimé." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L'accélération selon laquelle l'étirage est effectué." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L'accélération selon laquelle l'impression s'effectue." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "L'accélération selon laquelle les bas de support sont imprimés. Les imprimer avec une accélération plus faible renforce l'adhésion du support au-dessus du modèle." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grille" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "L'accélération selon laquelle le remplissage de support est imprimé." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "L'accélération selon laquelle la couche du milieu du radeau est imprimée." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "L'accélération selon laquelle les parois externes sont imprimées." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "L'accélération selon laquelle la tour d'amorçage est imprimée." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Surface minimale de l'interface de support" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "L'accélération selon laquelle le radeau est imprimé." -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." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "L'accélération selon laquelle les plafonds et bas de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Surface minimale du plafond de support" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "L'accélération selon laquelle les plafonds de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." -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." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "L'accélération selon laquelle la jupe et la bordure sont imprimées. Normalement, cette accélération est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une accélération différente." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Surface minimale du bas de support" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "L'accélération selon laquelle la structure de support est imprimée." -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 "Taille minimale de la surface des bas du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansion horizontale de l'interface de support" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantité de décalage appliquée aux polygones de l'interface de support." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansion horizontale du plafond de support" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "L'accélération selon laquelle les parois sont imprimées." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantité de décalage appliqué aux plafonds du support." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "La vitesse à laquelle les couches extérieures de surface supérieure sont imprimées." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansion horizontale du bas de support" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "L'accélération selon laquelle les couches du dessus/dessous sont imprimées." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantité de décalage appliqué aux bas du support." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "L'accélération selon laquelle les déplacements s'effectuent." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Priorité de l'interface de support" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "La quantité de matériau, relative à une ligne de couche extérieure normale, à extruder pendant l'étirage. Le fait de garder la buse pleine aide à remplir certaines des crevasses de la surface supérieure ; mais si la quantité est trop importante, cela entraînera une surextrusion et l'apparition de coupures sur le côté de la surface." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Ce paramètre détermine la façon dont l'interface de support et le support interagissent en cas de chevauchement. Il n'est actuellement disponible que pour le plafond de support." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Le degré de chevauchement entre le remplissage et les parois exprimé en pourcentage de la largeur de ligne de remplissage. Un chevauchement faible permet aux parois de se connecter fermement au remplissage." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Priorité au support" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Le degré de chevauchement entre le remplissage et les parois. Un léger chevauchement permet de lier fermement les parois au remplissage." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Priorité à l'interface" +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." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Priorité aux lignes de support" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "L'angle entre le plan horizontal et la partie conique juste au-dessus de la pointe de la buse." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Priorité aux lignes d'interface" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "L'angle du toit d'une tour. Une valeur plus élevée entraîne des toits de tour pointus, tandis qu'une valeur plus basse résulte en des toits plats." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Chevauchement" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "L'angle de porte-à-faux des parois externes créées pour le moule. La valeur 0° rendra la coque externe du moule verticale, alors que 90° fera que l'extérieur du modèle suive les contours du modèle." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direction de ligne d'interface du support" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Angle du diamètre des branches au fur et à mesure qu'elles s'épaississent lorsqu'elles sont proches du fond. Avec un angle de 0°, les branches auront une épaisseur uniforme sur toute leur longueur. Donner un peu d'angle permet d'augmenter la stabilité du support arborescent." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Angle d'inclinaison des supports coniques. Un angle de 0 degré est vertical tandis qu'un angle de 90 degrés est horizontal. Les petits angles rendent le support plus solide mais utilisent plus de matière. Les angles négatifs rendent la base du support plus large que le sommet." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direction de la ligne de plafond de support" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Densité moyenne de points ajoutée à chaque polygone sur une couche. Notez que les points originaux du polygone ne seront plus pris en compte, une faible densité résultant alors en une diminution de la résolution." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Distance moyenne entre les points ajoutés aléatoirement sur chaque segment de ligne. Il faut noter que les points originaux du polygone ne sont plus pris en compte donc un fort lissage conduira à une diminution de la résolution. Cette valeur doit être supérieure à la moitié de l'épaisseur de la couche floue." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direction de la ligne de bas de support" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "L'accélération par défaut du mouvement de la tête d'impression." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La température par défaut utilisée pour l'impression. Il doit s'agir de la température de « base » d'un matériau. Toutes les autres températures d'impression doivent utiliser des décalages basés sur cette valeur" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Annulation de la vitesse du ventilateur" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Température par défaut utilisée pour le plateau chauffant. Il doit s'agir de la température de « base » d'un plateau. Toutes les autres températures d'impression sont définies en fonction de cette valeur" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Lorsque cette fonction est activée, la vitesse du ventilateur de refroidissement de l'impression est modifiée pour les régions de la couche extérieure situées immédiatement au-dessus du support." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Vitesse du ventilateur de couche extérieure supportée" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "La densité des bas de la structure de support. Une valeur plus élevée résulte en une meilleure adhésion du support au-dessus du modèle." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Pourcentage de la vitesse du ventilateur à utiliser lors de l'impression des zones de couche extérieure situées immédiatement au-dessus du support. Une vitesse de ventilateur élevée facilite le retrait du support." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "La densité des plafonds de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilisation de tours" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la deuxième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilise des tours spéciales pour soutenir de petites zones en porte-à-faux. Le diamètre de ces tours est plus large que la zone qu’elles soutiennent. Près du porte-à-faux, le diamètre des tours diminue pour former un toit." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la troisième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diamètre de la tour" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondeur (sens Y) de la zone imprimable." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "Le diamètre d’une tour spéciale." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diamètre maximal supporté par la tour" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Diamètre des branches les plus minces du support arborescent. Plus les branches sont épaisses, plus elles sont robustes ; les branches proches de la base seront plus épaisses que cette valeur." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Le diamètre maximal sur les axes X/Y d’une petite zone qui doit être soutenue par une tour de soutien spéciale." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Il s'agit du diamètre des extrémités des branches du support arborescent." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angle du toit de la tour" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Diamètre de la roue qui entraîne le matériau dans le chargeur." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "L'angle du toit d'une tour. Une valeur plus élevée entraîne des toits de tour pointus, tandis qu'une valeur plus basse résulte en des toits plats." +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Le diamètre des branches les plus larges du support arborescent. Un tronc plus épais est plus robuste ; un tronc plus fin prend moins de place sur le plateau de fabrication." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maillage de support descendant" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Différence de hauteur de la couche suivante par rapport à la précédente." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Inclure du support à tout emplacement sous le maillage de support, de sorte à ce qu'il n'y ait pas de porte-à-faux dans le maillage de support." +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "La distance entre les lignes d'étirage." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "La distance entre la buse et les pièces déjà imprimées lors du contournement pendant les déplacements." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scène comporte un maillage de support" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Un maillage de support est présent sur la scène. Ce paramètre est contrôlé par Cura." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "La distance entre les lignes du radeau pour la couche intermédiaire de celui-ci. L'espace intermédiaire doit être assez large et suffisamment dense pour supporter les couches supérieures du radeau." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activer la goutte de préparation" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Préparer les filaments avec une goutte avant l'impression. Ce paramètre permet d'assurer que l'extrudeuse disposera de matériau prêt au niveau de la buse avant l'impression. La jupe/bordure d'impression peut également servir de préparation, auquel cas le fait de laisser ce paramètre désactivé permet de gagner un peu de temps." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type d'adhérence du plateau" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Limite de distance entre les modèles 3D à partir de laquelle générer une structure de connexion, mesurée en cellules. Un nombre de cellules trop bas entraînera une mauvaise adhérence." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Différentes options qui permettent d'améliorer la préparation de votre extrusion et l'adhérence au plateau. La bordure ajoute une zone plate d'une seule couche autour de la base de votre modèle, afin de l'empêcher de se redresser. Le radeau ajoute une grille épaisse avec un toit sous le modèle. La jupe est une ligne imprimée autour du modèle mais qui n'est pas rattachée au modèle." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La distance entre le modèle et la ligne de bordure la plus à l'extérieur. Une bordure plus large renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Jupe" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Distance depuis l'extérieur d'un modèle 3D à partir de laquelle les structures de connexion ne seront pas générées, mesurée en cellules." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Bordure" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distance depuis la pointe du bec d'impression sur laquelle la chaleur du bec d'impression est transférée au filament." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radeau" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures inférieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche inférieure. Des valeurs faibles économisent la quantité de matériau utilisé." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Aucun" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois des couches voisines. Des valeurs faibles économisent la quantité de matériau utilisé." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrudeuse d'adhérence du plateau" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures supérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche supérieure. Des valeurs faibles économisent la quantité de matériau utilisé." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe/la bordure/du radeau. Cela est utilisé en multi-extrusion." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distance de déplacement de la tête d'avant en arrière à travers la brosse." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrudeur de la jupe/bordure" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Les extrémités des lignes de remplissage sont raccourcies pour économiser du matériau. Ce paramètre est l'angle de saillie des extrémités de ces lignes." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "La vitesse supplémentaire à laquelle la buse refroidit pendant l'extrusion. La même valeur est utilisée pour indiquer la perte de vitesse de chauffage pendant l'extrusion." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrudeur de la base du raft" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche de remplissage du support. Cela est utilisé en multi-extrusion." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "Le train d'extrudeur à utiliser pour l'impression de la première couche du radeau. Cela est utilisé en multi-extrusion." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrudeur du milieu du radeau" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des bas du support. Cela est utilisé en multi-extrusion." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression du remplissage du support. Cela est utilisé en multi-extrusion." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "Le train d'extrudeur à utiliser pour imprimer la couche intermédiaire du radeau. Cela est utilisé en multi-extrusion." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrudeur du haut du radeau" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeur à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Nombre de lignes de la jupe" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Une jupe à plusieurs lignes vous aide à mieux préparer votre extrusion pour les petits modèles. Définissez celle valeur sur 0 pour désactiver la jupe." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Hauteur de la jupe" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "La jupe est plus facile à retirer lorsque sa ligne la plus intérieure est imprimée en plusieurs couches." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distance de la jupe" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distance horizontale entre la jupe et la première couche de l’impression.\nIl s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds et bas du support. Cela est utilisé en multi-extrusion." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longueur minimale de la jupe/bordure" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds du support. Cela est utilisé en multi-extrusion." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "La longueur minimale de la jupe ou bordure. Si cette longueur n’est pas atteinte par toutes les lignes de jupe ou de bordure ensemble, d’autres lignes de jupe ou de bordure seront ajoutées afin d’atteindre la longueur minimale. Veuillez noter que si le nombre de lignes est défini sur 0, cette option est ignorée." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Le train d'extrudeur à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largeur de la bordure" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe/la bordure/du radeau. Cela est utilisé en multi-extrusion." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La distance entre le modèle et la ligne de bordure la plus à l'extérieur. Une bordure plus large renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Nombre de lignes de la bordure" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeur à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." -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." +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression du remplissage. Cela est utilisé en multi-extrusion." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distance de la bordure" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois internes. Cela est utilisé en multi-extrusion." -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 "La distance horizontale entre la première ligne de bordure et le contour de la première couche de l'impression. Un petit trou peut faciliter l'enlèvement de la bordure tout en offrant des avantages thermiques." +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois externes. Cela est utilisé en multi-extrusion." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "La bordure remplace le support" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure du haut et du bas. Cela est utilisé en multi-extrusion." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure supérieure. Cela est utilisé en multi-extrusion." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Bordure uniquement sur l'extérieur" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois. Cela est utilisé en multi-extrusion." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimer uniquement la bordure sur l'extérieur du modèle. Cela réduit la quantité de bordure que vous devez retirer par la suite, sans toutefois véritablement réduire l'adhérence au plateau." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "La vitesse du ventilateur pour la couche de base du radeau." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Marge d'évitement de la bordure intérieure" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "La vitesse du ventilateur pour la couche du milieu du radeau." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Une pièce entièrement contenue à l'intérieur d'une autre peut générer une bordure extérieure qui vient en contact avec l'intérieur de la pièce extérieure. Cette fonction supprime à cette distance toutes les bordures situées dans des vides intérieurs." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "La vitesse du ventilateur pour le radeau." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Bordure intelligente" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Ce paramètre inverse l'ordre d'impression de la ligne de bordure la plus intérieure et de la deuxième ligne de bordure la plus intérieure. La bordure est ainsi plus facile à retirer." +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le remplissage de l'impression." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Marge supplémentaire du radeau" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le support." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Les premières couches sont imprimées plus lentement que le reste du modèle afin d’obtenir une meilleure adhérence au plateau et d’améliorer le taux de réussite global des impressions. La vitesse augmente graduellement à chacune de ces couches." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Lissage de radeau" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "L’espace entre la dernière couche du radeau et la première couche du modèle. Seule la première couche est surélevée de cette quantité d’espace pour réduire l’adhérence entre la couche du radeau et le modèle. Cela facilite le décollage du radeau." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "La hauteur (sens Z) de la zone imprimable." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Lame d'air du radeau" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "La hauteur au-dessus des parties horizontales dans votre modèle pour laquelle imprimer le moule." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "L’espace entre la dernière couche du radeau et la première couche du modèle. Seule la première couche est surélevée de cette quantité d’espace pour réduire l’adhérence entre la couche du radeau et le modèle. Cela facilite le décollage du radeau." +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse régulière. Pour les couches situées en-dessous, la vitesse des ventilateurs augmente progressivement de la vitesse des ventilateurs initiale jusqu'à la vitesse régulière." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Chevauchement Z de la couche initiale" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y)." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "La première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser le filament perdu dans l'entrefer. Toutes les couches au-dessus de la première couche du modèle seront décalées de ce montant." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La différence de hauteur entre la pointe de la buse et la partie la plus basse de la tête d'impression." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Couches supérieures du radeau" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z après changement d'extrudeuse." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Épaisseur de la couche supérieure du radeau" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Épaisseur des couches supérieures du radeau." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "La hauteur de chaque couche en mm. Des valeurs plus élevées créent des impressions plus rapides dans une résolution moindre, tandis que des valeurs plus basses entraînent des impressions plus lentes dans une résolution plus élevée." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largeur de la ligne supérieure du radeau" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "La hauteur de remplissage d'une densité donnée avant de passer à la moitié de la densité." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "La hauteur de remplissage de support d'une densité donnée avant de passer à la moitié de la densité." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Interligne supérieur du radeau" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Couches du milieu du radeau" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaisse adhère plus facilement au plateau." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Nombre de couches entre la base et la surface du radeau. Elles comprennent l'épaisseur principale du radeau. En l'augmentant, on obtient un radeau plus épais et plus solide." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Épaisseur intermédiaire du radeau" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "La hauteur de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables. Définir la valeur sur zéro pour désactiver le comportement en forme d'escalier." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Épaisseur de la couche intermédiaire du radeau." +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 "La distance horizontale entre la première ligne de bordure et le contour de la première couche de l'impression. Un petit trou peut faciliter l'enlèvement de la bordure tout en offrant des avantages thermiques." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largeur de la ligne intermédiaire du radeau" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"La distance horizontale entre la jupe et la première couche de l’impression.\n" +"Il s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Largeur des lignes de la couche intermédiaire du radeau. Une plus grande extrusion de la deuxième couche renforce l'adhérence des lignes au plateau." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne de remplissage." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Interligne intermédiaire du radeau" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Le motif de remplissage est décalé de cette distance sur l'axe X." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "La distance entre les lignes du radeau pour la couche intermédiaire de celui-ci. L'espace intermédiaire doit être assez large et suffisamment dense pour supporter les couches supérieures du radeau." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Épaisseur de la base du radeau" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largeur de la ligne de base du radeau" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "La saccade selon laquelle la couche du milieu du radeau est imprimée." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "La saccade selon laquelle le radeau est imprimé." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacement des lignes de base du radeau" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure inférieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure inférieure sur les surfaces obliques du modèle." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Vitesse d’impression du radeau" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure/inférieure sur les surfaces obliques du modèle." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "La vitesse à laquelle le radeau est imprimé." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure supérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure sur les surfaces obliques du modèle." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Vitesse d’impression du dessus du radeau" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "La couche à laquelle les ventilateurs tournent à la vitesse régulière. Si la vitesse régulière du ventilateur à la hauteur est définie, cette valeur est calculée et arrondie à un nombre entier." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "La durée de couche qui définit la limite entre la vitesse régulière et la vitesse maximale du ventilateur. Les couches qui s'impriment moins vite que cette durée utilisent la vitesse régulière du ventilateur. Pour les couches plus rapides, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Vitesse d’impression du milieu du radeau" +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." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "La vitesse à laquelle la couche du milieu du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Vitesse d’impression de la base du radeau" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Matériau du plateau installé sur l'imprimante." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Hauteur maximale autorisée par rapport à la couche de base." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accélération de l'impression du radeau" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "L'angle maximal qu'une partie du bouclier de suintage peut adopter. Zéro degré est vertical et 90 degrés est horizontal. Un angle plus petit entraîne moins d'échecs au niveau des boucliers de suintage, mais utilise plus de matériaux." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "L'accélération selon laquelle le radeau est imprimé." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "L'angle maximal des porte-à-faux après qu'ils aient été rendus imprimables. À une valeur de 0°, tous les porte-à-faux sont remplacés par une pièce de modèle rattachée au plateau, tandis que 90° ne changera en rien le modèle." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accélération de l'impression du dessus du radeau" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Il s'agit de l'angle maximal des branches imprimées autour du modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, vous obtiendrez une plus grande portée." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Zone maximale d'un trou dans la base du modèle avant d'être retirée par l'outil Rendre le porte-à-faux imprimable. Les trous plus petits seront conservés. Une valeur de 0 mm² remplira tous les trous dans la base des modèles." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accélération de l'impression du milieu du radeau" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "L'écart maximum autorisé lors de la réduction de la résolution pour le paramètre Résolution maximum. Si vous augmentez cette valeur, l'impression sera moins précise, mais le G-Code sera plus petit. L'écart maximum est une limite pour la résolution maximum. Donc si les deux entrent en conflit, l'Écart maximum restera valable." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "L'accélération selon laquelle la couche du milieu du radeau est imprimée." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "La distance maximale entre les supports dans les directions X/Y. Lorsque des modèle séparés sont plus rapprochés que cette valeur, ils fusionnent." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accélération de l'impression de la base du radeau" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "La distance maximale en mm pour déplacer le filament afin de compenser les variations du débit." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "L'écart maximal de la surface d'extrusion autorisé lors de la suppression des points intermédiaires d'une ligne droite. Un point intermédiaire peut servir de point de changement de largeur dans une longue ligne droite. Par conséquent, s'il est supprimé, la ligne aura une largeur uniforme et, par conséquent, cela engendrera la perte (ou le gain) d'un peu de surface d'extrusion. Si vous augmentez cette valeur, vous pourrez constater une légère sous-extrusion (ou sur-extrusion) entre les parois parallèles droites car davantage de points intermédiaires de changement de largeur pourront être supprimés. Votre impression sera moins précise, mais le G-code sera plus petit." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Saccade d’impression du radeau" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Le changement instantané maximal de vitesse durant l'impression de la couche initiale." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "La saccade selon laquelle le radeau est imprimé." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Le changement instantané maximal de vitesse de la tête d'impression." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Le changement instantané maximal de vitesse lors de l'étirage." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Saccade d’impression du dessus du radeau" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures sont imprimées." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage est imprimé." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Saccade d’impression du milieu du radeau" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les bas de support sont imprimés." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "La saccade selon laquelle la couche du milieu du radeau est imprimée." +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage de support est imprimé." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Saccade d’impression de la base du radeau" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois externes sont imprimées." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la tour d'amorçage est imprimée." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Vitesse du ventilateur pendant le radeau" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds et bas sont imprimés." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "La vitesse du ventilateur pour le radeau." +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds de support sont imprimés." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Vitesse du ventilateur pour le dessus du radeau" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la jupe et la bordure sont imprimées." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la structure de support est imprimée." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Vitesse du ventilateur pour le milieu du radeau" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "La vitesse du ventilateur pour la couche du milieu du radeau." +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Vitesse du ventilateur pour la base du radeau" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois sont imprimées." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "La vitesse du ventilateur pour la couche de base du radeau." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les couches extérieures de surface supérieure sont imprimées." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Double extrusion" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les couches du dessus/dessous sont imprimées." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Le changement instantané maximal de vitesse selon lequel les déplacements s'effectuent." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activer la tour d'amorçage" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "La vitesse maximale pour le moteur du sens X." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "La vitesse maximale pour le moteur du sens Y." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Taille de la tour d'amorçage" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "La vitesse maximale pour le moteur du sens Z." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "La largeur de la tour d'amorçage." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "La vitesse maximale du filament." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimum de la tour d'amorçage" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "La largeur maximale de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Le volume minimum pour chaque touche de la tour d'amorçage afin de purger suffisamment de matériau." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Position X de la tour d'amorçage" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "La vitesse minimale de mouvement de la tête d'impression." -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Les coordonnées X de la position de la tour d'amorçage." +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La température minimale pendant le chauffage jusqu'à la température d'impression à laquelle l'impression peut démarrer." -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Position Y de la tour d'amorçage" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "La durée minimale pendant laquelle une extrudeuse doit être inactive avant que la buse ait refroidi. Ce n'est que si une extrudeuse n'est pas utilisée pendant une durée supérieure à celle-ci qu'elle pourra refroidir jusqu'à la température de veille." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Les coordonnées Y de la position de la tour d'amorçage." +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Angle minimal des porte-à-faux internes pour lesquels le remplissage est ajouté. À une valeur de 0°, les objets sont totalement remplis, 90° ne fournira aucun remplissage." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Essuyer le bec d'impression inactif sur la tour d'amorçage" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "L'angle minimal des porte-à-faux pour lesquels un support est ajouté. À une valeur de 0 °, tous les porte-à-faux sont soutenus, tandis qu'à 90 °, aucun support ne sera créé." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Après l'impression de la tour d'amorçage à l'aide d'une buse, nettoyer le matériau qui suinte de l'autre buse sur la tour d'amorçage." +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." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Bordure de la tour d'amorçage" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "La longueur minimale de la jupe ou bordure. Si cette longueur n’est pas atteinte par toutes les lignes de jupe ou de bordure ensemble, d’autres lignes de jupe ou de bordure seront ajoutées afin d’atteindre la longueur minimale. Veuillez noter que si le nombre de lignes est défini sur 0, cette option est ignorée." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Les tours d'amorçage peuvent avoir besoin de l'adhérence supplémentaire d'une bordure, même si le modèle n'en a pas besoin. Ne peut actuellement pas être utilisé avec le type d'adhérence « Raft » (radeau)." +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Largeur de ligne minimale pour les parois de polyligne de remplissage de l'espace de ligne médiane. Ce paramètre détermine à partir de quelle épaisseur de modèle 3D nous passons de l'impression de deux lignes de parois à l'impression de deux parois extérieures et d'une seule paroi centrale au milieu. Une largeur de ligne de paroi impaire minimale plus élevée conduit à une largeur de ligne de paroi paire plus élevée. La largeur maximale de la ligne de paroi impaire représente 2 fois la largeur minimale de la ligne de paroi paire." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activer le bouclier de suintage" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Largeur de ligne minimale pour les murs polygonaux normaux. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Activer le bouclier de suintage extérieur. Cela créera une coque autour du modèle qui est susceptible d'essuyer une deuxième buse si celle-ci est à la même hauteur que la première buse." +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "La vitesse minimale d'impression, malgré le ralentissement dû à la durée minimale d'une couche. Si l'imprimante devait trop ralentir, la pression au niveau de la buse serait trop faible, ce qui résulterait en une mauvaise qualité d'impression." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angle du bouclier de suintage" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Taille minimum d'un segment de ligne après découpage. Si vous augmentez cette valeur, la maille aura une résolution plus faible. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code et augmentera la vitesse de découpe en enlevant des détails de la maille que l'imprimante ne peut pas traiter de toute manière." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "L'angle maximal qu'une partie du bouclier de suintage peut adopter. Zéro degré est vertical et 90 degrés est horizontal. Un angle plus petit entraîne moins d'échecs au niveau des boucliers de suintage, mais utilise plus de matériaux." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Taille minimale d'un segment de ligne de déplacement après la découpe. Si vous augmentez cette valeur, les mouvements de déplacement auront des coins moins lisses. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code, mais cela peut réduire la précision de l'évitement du modèle." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distance du bouclier de suintage" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pente minimum de la zone pour un effet de marche de support. Des valeurs basses devraient faciliter l'enlèvement du support sur les pentes peu superficielles ; des valeurs très basses peuvent donner des résultats vraiment contre-intuitifs sur d'autres pièces du modèle." -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." +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Temps minimum passé sur une couche. Cela force l'imprimante à ralentir afin de passer au minimum la durée définie ici sur une couche. Cela permet au matériau imprimé de refroidir correctement avant l'impression de la couche suivante. Les couches peuvent néanmoins prendre moins de temps que le temps de couche minimum si « Lift Head  » (Relever Tête) est désactivé et si la vitesse minimum serait autrement non respectée." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distance de rétraction de changement de buse" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Le volume minimum pour chaque touche de la tour d'amorçage afin de purger suffisamment de matériau." -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." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Le diamètre maximal d'une branche rattachée au modèle peut augmenter lorsqu'elle fusionne avec des branches pouvant atteindre le plateau. Le fait d'augmenter ce diamètre réduit le temps d'impression, mais agrandit la surface du support sur laquelle repose le modèle." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Vitesse de rétraction de changement de buse" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Le nom du modèle de votre imprimante 3D." -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." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Vitesse de rétraction de changement de buse" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "La buse contourne les pièces déjà imprimées lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." -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." +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "La buse contourne les supports déjà imprimés lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Vitesse d'amorçage de changement de buse" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches inférieures. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." -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." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." -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" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." -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." +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." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Corrections" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Nombre de couches entre la base et la surface du radeau. Elles comprennent l'épaisseur principale du radeau. En l'augmentant, on obtient un radeau plus épais et plus solide." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendez les mailles plus adaptées à l'impression 3D." +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." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Joindre les volumes se chevauchant" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Nombre de lignes utilisées pour la bordure du support. L'augmentation du nombre de lignes de bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignorer la géométrie interne pouvant découler de volumes se chevauchant à l'intérieur d'un maillage et imprimer les volumes comme un seul. Cela peut entraîner la disparition des cavités internes accidentelles." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Supprimer tous les trous" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches supérieures. Lorsqu'elle est calculée par l'épaisseur du dessus, cette valeur est arrondie à un nombre entier." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Supprime les trous dans chacune des couches et conserve uniquement la forme extérieure. Tous les détails internes invisibles seront ignorés. Il en va de même pour les trous qui pourraient être visibles depuis le dessus ou le dessous de la pièce." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Nombre de couches extérieures supérieures. En général, une seule couche supérieure est suffisante pour générer des surfaces supérieures de qualité." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Raccommodage" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Le raccommodage consiste en la suppression des trous dans le maillage en tentant de fermer le trou avec des intersections entre polygones existants. Cette option peut induire beaucoup de temps de calcul." +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Le nombre de parois avec lesquelles entourer la surface inférieure de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Conserver les faces disjointes" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois avec lesquelles entourer le toit de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalement, Cura essaye de raccommoder les petits trous dans le maillage et supprime les parties des couches contenant de gros trous. Activer cette option pousse Cura à garder les parties qui ne peuvent être raccommodées. Cette option doit être utilisée en dernier recours quand tout le reste échoue à produire un G-Code correct." +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois avec lesquelles entourer la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Chevauchement des mailles fusionnées" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Le nombre de parois, comptées à partir du centre, sur lesquelles la variation doit être répartie. Les valeurs inférieures signifient que les parois extérieures ne changent pas en termes de largeur." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faire de sorte que les maillages qui se touchent se chevauchent légèrement. Cela permet aux maillages de mieux adhérer les uns aux autres." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Le nombre de parois. Lorsqu'elle est calculée par l'épaisseur de la paroi, cette valeur est arrondie à un nombre entier." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Supprimer l'intersection des mailles" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Le diamètre extérieur de la pointe de la buse." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Supprime les zones sur lesquelles plusieurs mailles se chevauchent. Cette option peut être utilisée si des objets à matériau double fusionné se chevauchent." +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage, en ne supportant que le plafond de l'objet." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alterner le retrait des maillages" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Le motif des supports de l'impression. Les différentes options disponibles résultent en des supports difficiles ou faciles à retirer." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Passe aux volumes d'intersection de maille qui appartiennent à chaque couche, de manière à ce que les mailles qui se chevauchent soient entrelacées. Si vous désactivez ce paramètre, l'une des mailles obtiendra tout le volume dans le chevauchement tandis qu'il est retiré des autres mailles." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Le motif des couches supérieures." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Supprimer les premières couches vides" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Le motif des couches du dessus/dessous." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Supprimer les couches vides sous la première couche imprimée si elles sont présentes. Le fait de désactiver ce paramètre peut entraîner l'apparition de premières couches vides si le paramètre Tolérance à la découpe est défini sur Exclusif ou Milieu." +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Motif au bas de l'impression sur la première couche." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Résolution maximum" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Le motif à utiliser pour étirer les surfaces supérieures." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Taille minimum d'un segment de ligne après découpage. Si vous augmentez cette valeur, la maille aura une résolution plus faible. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code et augmentera la vitesse de découpe en enlevant des détails de la maille que l'imprimante ne peut pas traiter de toute manière." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Le motif d'impression pour les bas de support." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Résolution de déplacement maximum" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Le motif selon lequel l'interface du support avec le modèle est imprimée." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Taille minimale d'un segment de ligne de déplacement après la découpe. Si vous augmentez cette valeur, les mouvements de déplacement auront des coins moins lisses. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code, mais cela peut réduire la précision de l'évitement du modèle." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Le motif d'impression pour les plafonds de support." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Écart maximum" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La position près de laquelle démarre l'impression de chaque partie dans une couche." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "L'écart maximum autorisé lors de la réduction de la résolution pour le paramètre Résolution maximum. Si vous augmentez cette valeur, l'impression sera moins précise, mais le G-Code sera plus petit. L'écart maximum est une limite pour la résolution maximum. Donc si les deux entrent en conflit, l'Écart maximum restera valable." +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Ce paramètre détermine l'angle souhaité pour les branches, lorsqu'elles n'ont pas à contourner le modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, les branches fusionneront plus rapidement." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Écart maximal de la surface d'extrusion" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Il s'agit de l'emplacement souhaité pour les structures de support. Si les structures ne peuvent pas être placées à l'endroit souhaité, elles seront placées ailleurs, quitte à ce que ce soit sur le modèle." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "L'écart maximal de la surface d'extrusion autorisé lors de la suppression des points intermédiaires d'une ligne droite. Un point intermédiaire peut servir de point de changement de largeur dans une longue ligne droite. Par conséquent, s'il est supprimé, la ligne aura une largeur uniforme et, par conséquent, cela engendrera la perte (ou le gain) d'un peu de surface d'extrusion. Si vous augmentez cette valeur, vous pourrez constater une légère sous-extrusion (ou sur-extrusion) entre les parois parallèles droites car davantage de points intermédiaires de changement de largeur pourront être supprimés. Votre impression sera moins précise, mais le G-code sera plus petit." +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Le changement instantané maximal de vitesse pour la couche initiale." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Activer le mouvement fluide" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forme du plateau sans prendre les zones non imprimables en compte." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Lorsqu'ils sont activés, les parcours d'outils sont corrigés pour les imprimantes dotées de planificateurs de mouvements fluides. Les petits mouvements qui s'écartent de la direction générale de la trajectoire de l'outil sont lissés pour optimiser la fluidité des mouvements." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de son premier extrudeur. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distance de décalage du mouvement fluide" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "La taille de poches aux croisements à quatre branches dans le motif entrecroisé 3D, à des hauteurs où le motif se touche lui-même." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Les points de distance sont décalés pour lisser le chemin" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Le plus petit volume qu'un mouvement d'extrusion doit entraîner avant d'autoriser la roue libre. Pour les petits mouvements d'extrusion, une pression moindre s'est formée dans le tube bowden, de sorte que le volume déposable en roue libre est alors réduit linéairement. Cette valeur doit toujours être supérieure au volume en roue libre." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Faible distance de décalage du mouvement fluide" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La vitesse (°C/s) à laquelle la buse refroidit, sur une moyenne de la plage de températures d'impression normales et la température en veille." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Les points de distance sont décalés pour lisser le chemin" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La vitesse (°C/s) à laquelle la buse chauffe, sur une moyenne de la plage de températures d'impression normales et la température en veille." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Angle de mouvement fluide" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "La vitesse à laquelle toutes les parois internes seront imprimées. L’impression de la paroi interne à une vitesse supérieure réduira le temps d'impression global. Il est bon de définir cette vitesse entre celle de l'impression de la paroi externe et du remplissage." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Si un segment du parcours d'outil s'écarte d'une valeur supérieure à cet angle par rapport au mouvement général, il est lissé." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Vitesse à laquelle les régions de la couche extérieure du pont sont imprimées." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modes spéciaux" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "La vitesse à laquelle le remplissage est imprimé." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Des moyens non traditionnels d'imprimer vos modèles." +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "La vitesse à laquelle l'impression s'effectue." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Séquence d'impression" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." -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 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 "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 a) un seul extrudeur est activé et si b) 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 "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Vitesse à laquelle les parois de pont sont imprimées." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Tout en même temps" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Vitesse à laquelle les ventilateurs tournent au début de l'impression. Pour les couches suivantes, la vitesse des ventilateurs augmente progressivement jusqu'à la couche qui correspond à la vitesse régulière des ventilateurs en hauteur." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "La vitesse à laquelle les ventilateurs tournent avant d'atteindre la limite. Lorsqu'une couche s'imprime plus rapidement que la limite, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Un à la fois" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "La vitesse à laquelle les ventilateurs tournent sur la durée minimale d'une couche. La vitesse du ventilateur augmente progressivement entre la vitesse régulière du ventilateur et la vitesse maximale lorsque la limite est atteinte." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Maille de remplissage" +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." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utiliser cette maille pour modifier le remplissage d'autres mailles qu'elle chevauche. Remplace les régions de remplissage d'autres mailles par des régions de cette maille. Il est conseillé d'imprimer uniquement une Paroi et pas de Couche du dessus/dessous pour cette maille." +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est préparé pendant un déplacement de rétraction d'essuyage." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang de traitement du maillage" +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." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Détermine la priorité de cette maille lorsque plusieurs chevauchements de mailles de remplissage sont pris en considération. Les zones comportant plusieurs chevauchements de mailles de remplissage prendront en compte les paramètres du maillage ayant l'ordre le plus élevé. Une maille de remplissage possédant un ordre plus élevé modifiera le remplissage des mailles de remplissage ayant un ordre plus bas et des mailles normales." +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." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Maille de coupe" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant un déplacement de rétraction d'essuyage." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limiter le volume de ce maillage à celui des autres maillages. Cette option permet de faire en sorte que certaines zones d'un maillage s'impriment avec des paramètres différents et avec une extrudeuse entièrement différente." +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." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Moule" +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." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimer les modèles comme moule, qui peut être coulé afin d'obtenir un modèle ressemblant à ceux présents sur le plateau." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est rétracté pendant un déplacement de rétraction d'essuyage." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largeur minimale de moule" +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." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "La vitesse à laquelle le bas de support est imprimé. L'impression à une vitesse plus faible permet de renforcer l'adhésion du support au-dessus de votre modèle." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Hauteur du plafond de moule" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "La vitesse à laquelle le remplissage de support est imprimé. L'impression du remplissage à une vitesse plus faible permet de renforcer la stabilité." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "La hauteur au-dessus des parties horizontales dans votre modèle pour laquelle imprimer le moule." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "La vitesse à laquelle la couche du milieu du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angle du moule" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "La vitesse à laquelle les parois externes sont imprimées. L’impression de la paroi externe à une vitesse inférieure améliore la qualité finale de la coque. Néanmoins, si la différence entre la vitesse de la paroi interne et la vitesse de la paroi externe est importante, la qualité finale sera réduite." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "L'angle de porte-à-faux des parois externes créées pour le moule. La valeur 0° rendra la coque externe du moule verticale, alors que 90° fera que l'extérieur du modèle suive les contours du modèle." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "La vitesse à laquelle la tour d'amorçage est imprimée. L'impression plus lente de la tour d'amorçage peut la rendre plus stable lorsque l'adhérence entre les différents filaments est sous-optimale." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Maillage de support" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "La vitesse à laquelle les ventilateurs de refroidissement de l'impression tournent." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utiliser ce maillage pour spécifier des zones de support. Cela peut être utilisé pour générer une structure de support." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "La vitesse à laquelle le radeau est imprimé." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maillage anti-surplomb" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "La vitesse à laquelle les plafonds et bas de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utiliser cette maille pour préciser à quel endroit aucune partie du modèle doit être détectée comme porte-à-faux. Cette option peut être utilisée pour supprimer la structure de support non souhaitée." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "La vitesse à laquelle les plafonds de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Mode de surface" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "La vitesse à laquelle la jupe et la bordure sont imprimées. Normalement, cette vitesse est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une vitesse différente." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Traite le modèle comme surface seule, un volume ou des volumes avec des surfaces seules. Le mode d'impression normal imprime uniquement des volumes fermés. « Surface » imprime une paroi seule autour de la surface de la maille, sans remplissage ni couche du dessus/dessous. « Les deux » imprime des volumes fermés comme en mode normal et les polygones restants comme surfaces." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "La vitesse à laquelle les supports sont imprimés. Imprimer les supports à une vitesse supérieure peut fortement accélérer l’impression. Par ailleurs, la qualité de la structure des supports n’a généralement pas beaucoup d’importance du fait qu'elle est retirée après l'impression." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Surface" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Les deux" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiraliser le contour extérieur" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "La vitesse à laquelle le mouvement vertical en Z est effectué pour des décalages en Z. Cette vitesse est généralement inférieure à la vitesse d'impression car le plateau ou le portique de la machine est plus difficile à déplacer." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Cette fonction ajuste le déplacement en Z sur le bord extérieur. Cela va créer une augmentation stable de Z sur toute l’impression. Cette fonction transforme un modèle solide en une impression à paroi unique avec une base solide. Cette fonctionnalité doit être activée seulement lorsque chaque couche contient uniquement une seule partie." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "La vitesse à laquelle les parois sont imprimées." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Lisser les contours spiralisés" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "La vitesse à laquelle passer sur la surface supérieure." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Lisser les contours spiralisés pour réduire la visibilité de la jointure en Z (la jointure en Z doit être à peine visible sur l'impression mais sera toujours visible dans la vue en couches). Veuillez remarquer que le lissage aura tendance à estomper les détails très fins de la surface." +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "La vitesse à laquelle rétracter le filament afin de le rompre proprement." -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusion relative" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "La vitesse à laquelle les couches extérieures de la surface supérieure sont imprimées." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utiliser l'extrusion relative au lieu de l'extrusion absolue. L'utilisation de pas E relatifs facilite le post-traitement du G-Code. Toutefois, cela n'est pas pris en charge par toutes les imprimantes et peut occasionner de très légers écarts dans la quantité de matériau déposé, par rapport à l'utilisation des pas E absolus. Indépendamment de ce paramètre, le mode d'extrusion sera défini par défaut comme absolu avant qu'un quelconque script de G-Code soit produit." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "La vitesse à laquelle les couches du dessus/dessous sont imprimées." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Expérimental" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "La vitesse à laquelle les déplacements s'effectuent." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Des fonctionnalités qui n'ont pas encore été complètement développées." +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Vitesse de déplacement pendant une roue libre, par rapport à la vitesse de déplacement pendant l'extrusion. Une valeur légèrement inférieure à 100 % est conseillée car, lors du mouvement en roue libre, la pression dans le tube bowden chute." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolérance à la découpe" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La vitesse de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau de fabrication. N'affecte pas les structures d'adhérence au plateau, comme la bordure et le radeau." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolérance verticale dans les couches découpées. Les contours d'une couche sont normalement générés en faisant passer les sections entrecroisées au milieu de chaque épaisseur de couche (Milieu). Alternativement, chaque couche peut posséder des zones situées à l'intérieur du volume à travers toute l'épaisseur de la couche (Exclusif) ou une couche peut avoir des zones situées à l'intérieur à tout endroit dans la couche (Inclusif). L'option Inclusif permet de conserver le plus de détails ; l'option Exclusif permet d'obtenir une adaptation optimale ; l'option Milieu permet de rester proche de la surface d'origine." +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "La vitesse d'impression de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Milieu" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Vitesse des mouvements de déplacement dans la couche initiale. Une valeur plus faible est recommandée pour éviter que les pièces déjà imprimées ne s'écartent du plateau. La valeur de ce paramètre peut être calculée automatiquement à partir du ratio entre la vitesse des mouvements et la vitesse d'impression." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusif" +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." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusif" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La température de l'environnement d'impression. Si cette valeur est 0, la température du volume d'impression ne sera pas ajustée." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimisation du déplacement de remplissage" +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." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Lorsque cette option est activée, l'ordre dans lequel les lignes de remplissage sont imprimées est optimisé pour réduire la distance parcourue. La réduction du temps de parcours dépend en grande partie du modèle à découper, du type de remplissage, de la densité, etc. Remarque : pour certains modèles possédant beaucoup de petites zones de remplissage, le temps de découpe du modèle peut en être considérablement augmenté." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La température à laquelle le refroidissement commence juste avant la fin de l'impression." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Graphique de la température du flux" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Données reliant le flux de matériau (en mm3 par seconde) à la température (degrés Celsius)." +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Température utilisée pour l'impression." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonférence minimale du polygone" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Température utilisée pour le plateau de fabrication chauffé à la première couche. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé lors de la première couche." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Les polygones en couches tranchées dont la circonférence est inférieure à cette valeur seront filtrés. Des valeurs élevées permettent d'obtenir un maillage de meilleure résolution mais augmentent le temps de découpe. Cette option est principalement destinée aux imprimantes SLA haute résolution et aux modèles 3D de très petite taille avec beaucoup de détails." +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Température utilisée pour le plateau de fabrication chauffé. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Générer une structure de connexion" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La température utilisée pour purger le matériau devrait être à peu près égale à la température d'impression la plus élevée possible." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Aux endroits où les modèles 3D se touchent, générez une structure d'attaches de connexion. Cette fonctionnalité améliore l'adhérence entre les modèles 3D, en particulier ceux imprimés avec des matériaux différents." +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "L’épaisseur des couches du dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessous." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largeur des attaches de connexion" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "L'épaisseur du remplissage supplémentaire qui soutient les bords de la couche." -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "La largeur des attaches de la structure de connexion." +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "L'épaisseur de l'interface du support à l'endroit auquel il touche le modèle, sur le dessous ou le dessus." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientation de la structure de connexion" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "L'épaisseur des bas de support. Cela contrôle le nombre de couches denses imprimées sur le dessus des endroits d'un modèle sur lequel le support repose." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "L'épaisseur des plafonds de support. Cela contrôle la quantité de couches denses sur le dessus du support sur lequel le modèle repose." -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Nombre de couches des attaches de connexion" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "L’épaisseur des couches du dessus dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "L’épaisseur des couches du dessus/dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus/dessous." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profondeur de connexion" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Épaisseur des parois en sens horizontal. Cette valeur divisée par la largeur de la ligne de la paroi définit le nombre de parois." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Limite de distance entre les modèles 3D à partir de laquelle générer une structure de connexion, mesurée en cellules. Un nombre de cellules trop bas entraînera une mauvaise adhérence." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "L'épaisseur par couche de matériau de remplissage. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Distance limite de connexion" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "L'épaisseur par couche de matériau de remplissage de support. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Distance depuis l'extérieur d'un modèle 3D à partir de laquelle les structures de connexion ne seront pas générées, mesurée en cellules." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Type de G-Code à générer." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Démantèlement du support en morceaux" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume de matière qui devrait suinter de la buse. Cette valeur doit généralement rester proche du diamètre de la buse au cube." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Ignorer certaines connexions de ligne du support pour rendre la structure de support plus facile à casser. Ce paramètre s'applique au motif de remplissage du support en zigzag." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La largeur (sens X) de la zone imprimable." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Taille de morceaux du support" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Largeur de la bordure à imprimer sous le support. Une plus grande bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Ignorer une connexion entre lignes du support tous les N millimètres, pour rendre la structure de support plus facile à casser." +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La largeur des attaches de la structure de connexion." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Comptage des lignes de morceaux du support" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ignorer une ligne de connexion sur N pour rendre la structure de support plus facile à casser." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "La largeur de la tour d'amorçage." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Activer le bouclier" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Largeur autorisée pour l'agitation aléatoire. Il est conseillé de garder cette valeur inférieure à l'épaisseur de la paroi extérieure, ainsi, les parois intérieures ne seront pas altérées." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Cela créera une paroi autour du modèle qui retient l'air (chaud) et protège contre les courants d'air. Particulièrement utile pour les matériaux qui se soulèvent facilement." +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." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distance X/Y du bouclier" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Les coordonnées X de la position de la tour d'amorçage." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distance entre la pièce et le bouclier dans les directions X et Y." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Les coordonnées Y de la position de la tour d'amorçage." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite du bouclier" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Un maillage de support est présent sur la scène. Ce paramètre est contrôlé par Cura." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Définit la hauteur du bouclier. Choisissez d'imprimer le bouclier à la pleine hauteur du modèle ou à une hauteur limitée." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en roue libre immédiatement avant le début d'une paroi de pont. L'utilisation de la roue libre avant le début du pont permet de réduire la pression à l'intérieur de la buse et d'obtenir un pont plus plat." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Pleine hauteur" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitée" +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." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hauteur du bouclier" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Cela créera une paroi autour du modèle qui retient l'air (chaud) et protège contre les courants d'air. Particulièrement utile pour les matériaux qui se soulèvent facilement." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Hauteur limite du bouclier. Au-delà de cette hauteur, aucun bouclier ne sera imprimé." +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diamètre des extrémités" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendre le porte-à-faux imprimable" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction XY (horizontalement)." -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Change la géométrie du modèle imprimé de manière à nécessiter un support minimal. Les porte-à-faux abrupts deviendront des porte-à-faux minces. Les zones en porte-à-faux descendront pour devenir plus verticales." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction Z (verticalement)." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Angle maximal du modèle" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Pour compenser la contraction du matériau lors de son refroidissement, le modèle est mis à l'échelle avec ce facteur." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "L'angle maximal des porte-à-faux après qu'ils aient été rendus imprimables. À une valeur de 0°, tous les porte-à-faux sont remplacés par une pièce de modèle rattachée au plateau, tandis que 90° ne changera en rien le modèle." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Couches supérieures" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Surface maximale du trou en porte-à-faux" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure supérieure" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Zone maximale d'un trou dans la base du modèle avant d'être retirée par l'outil Rendre le porte-à-faux imprimable. Les trous plus petits seront conservés. Une valeur de 0 mm² remplira tous les trous dans la base des modèles." +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure supérieure" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Activer la roue libre" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accélération des parois internes de la surface supérieure" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "L'option « roue libre » remplace la dernière partie d'un mouvement d'extrusion par un mouvement de déplacement. Le matériau qui suinte de la buse est alors utilisé pour imprimer la dernière partie du tracé du mouvement d'extrusion, ce qui réduit le stringing." +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Saccade des parois internes de la surface supérieure" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume en roue libre" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Vitesse d'impression des parois internes de la surface supérieure" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume de matière qui devrait suinter de la buse. Cette valeur doit généralement rester proche du diamètre de la buse au cube." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Débit des parois internes de la surface supérieure" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimal avant roue libre" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accélération de la paroi externe de la surface supérieure" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Le plus petit volume qu'un mouvement d'extrusion doit entraîner avant d'autoriser la roue libre. Pour les petits mouvements d'extrusion, une pression moindre s'est formée dans le tube bowden, de sorte que le volume déposable en roue libre est alors réduit linéairement. Cette valeur doit toujours être supérieure au volume en roue libre." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Débit de la paroi externe de la surface supérieure" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Vitesse de roue libre" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Saccade de la paroi externe de la surface supérieure" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Vitesse de déplacement pendant une roue libre, par rapport à la vitesse de déplacement pendant l'extrusion. Une valeur légèrement inférieure à 100 % est conseillée car, lors du mouvement en roue libre, la pression dans le tube bowden chute." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Taille de poches entrecroisées 3D" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accélération de couche extérieure de surface supérieure" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "La taille de poches aux croisements à quatre branches dans le motif entrecroisé 3D, à des hauteurs où le motif se touche lui-même." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrudeuse de couche extérieure de la surface supérieure" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Image de densité du remplissage croisé" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Débit de la surface du dessus" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le remplissage de l'impression." +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Saccade de couches extérieures de la surface supérieure" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Image de densité du remplissage croisé pour le support" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Couches extérieures de la surface supérieure" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le support." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Sens de lignes de couche extérieure de surface supérieure" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activer les supports coniques" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largeur de ligne de couche extérieure de la surface supérieure" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Rendre les aires de support plus petites en bas qu'au niveau du porte-à-faux à supporter." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Motif de couche extérieure de surface supérieure" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angle des supports coniques" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Vitesse de la couche extérieure de la surface supérieure" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Angle d'inclinaison des supports coniques. Un angle de 0 degré est vertical tandis qu'un angle de 90 degrés est horizontal. Les petits angles rendent le support plus solide mais utilisent plus de matière. Les angles négatifs rendent la base du support plus large que le sommet." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Épaisseur du dessus" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largeur minimale des supports coniques" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Les couches extérieures supérieures / inférieures des surfaces supérieures et / ou inférieures de votre objet possédant un angle supérieur à ce paramètre 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. Un angle de 0° est horizontal et évitera l'extension des couches ; un angle de 90° est vertical et entraînera l'extension de toutes les couches." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Largeur minimale à laquelle la base du support conique est réduite. Des largeurs étroites peuvent entraîner des supports instables." +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Haut / bas" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Surfaces floues" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Haut / bas" -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." +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accélération du dessus/dessous" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Couche floue à l'extérieur uniquement" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrudeuse du dessus/dessous" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "N'agitez que les contours des pièces et non les trous des pièces." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Débit du dessus/dessous" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Épaisseur de la couche floue" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Saccade du dessus/dessous" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Largeur autorisée pour l'agitation aléatoire. Il est conseillé de garder cette valeur inférieure à l'épaisseur de la paroi extérieure, ainsi, les parois intérieures ne seront pas altérées." +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Sens de la ligne du dessus / dessous" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densité de la couche floue" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largeur de la ligne du dessus/dessous" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Densité moyenne de points ajoutée à chaque polygone sur une couche. Notez que les points originaux du polygone ne seront plus pris en compte, une faible densité résultant alors en une diminution de la résolution." +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Motif du dessus/dessous" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distance entre les points de la couche floue" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Vitesse d'impression du dessus/dessous" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Distance moyenne entre les points ajoutés aléatoirement sur chaque segment de ligne. Il faut noter que les points originaux du polygone ne sont plus pris en compte donc un fort lissage conduira à une diminution de la résolution. Cette valeur doit être supérieure à la moitié de l'épaisseur de la couche floue." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Épaisseur du dessus/dessous" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Décalage d'extrusion max. pour compensation du débit" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "En contact avec le plateau" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "La distance maximale en mm pour déplacer le filament afin de compenser les variations du débit." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diamètre de la tour" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Facteur de compensation du débit" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angle du toit de la tour" -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." +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 "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utiliser des couches adaptatives" +msgctxt "travel label" +msgid "Travel" +msgstr "Déplacement" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Cette option calcule la hauteur des couches en fonction de la forme du modèle." +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accélération de déplacement" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variation maximale des couches adaptatives" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distance d'évitement du déplacement" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Hauteur maximale autorisée par rapport à la couche de base." +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Saccade de déplacement" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Taille des étapes de variation des couches adaptatives" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Vitesse de déplacement" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Différence de hauteur de la couche suivante par rapport à la précédente." +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Traite le modèle comme surface seule, un volume ou des volumes avec des surfaces seules. Le mode d'impression normal imprime uniquement des volumes fermés. « Surface » imprime une paroi seule autour de la surface de la maille, sans remplissage ni couche du dessus/dessous. « Les deux » imprime des volumes fermés comme en mode normal et les polygones restants comme surfaces." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Taille de la topographie des couches adaptatives" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Arborescence" -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." +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angle de parois en porte-à-faux" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -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." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Vitesse de paroi en porte-à-faux" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Les parois en porte-à-faux seront imprimées à ce pourcentage de leur vitesse d'impression normale." +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Activer les paramètres du pont" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Détecter les ponts et modifier la vitesse d'impression, le débit et les paramètres du ventilateur pendant l'impression des ponts." +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diamètre du tronc" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longueur minimale de la paroi du pont" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Joindre les volumes se chevauchant" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." msgstr "Les parois non supportées dont la longueur est inférieure à cette valeur seront imprimées selon les paramètres de parois normaux, tandis que celles dont la longueur est supérieure à cette valeur seront imprimées selon les paramètres de parois du pont." -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limite de support de la couche extérieure du pont" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utiliser des couches adaptatives" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilisation de tours" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilisez un taux d'accélération distinct pour les déplacements. Si cette option est désactivée, les déplacements utiliseront la même accélération que celle de la ligne imprimée à l'emplacement cible." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilisez un taux de saccades différent pour les déplacements. Si cette option est désactivée, les déplacements utiliseront les mêmes saccades que celles de la ligne imprimée à l'emplacement cible." -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." +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utiliser l'extrusion relative au lieu de l'extrusion absolue. L'utilisation de pas E relatifs facilite le post-traitement du G-Code. Toutefois, cela n'est pas pris en charge par toutes les imprimantes et peut occasionner de très légers écarts dans la quantité de matériau déposé, par rapport à l'utilisation des pas E absolus. Indépendamment de ce paramètre, le mode d'extrusion sera défini par défaut comme absolu avant qu'un quelconque script de G-Code soit produit." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densité maximale du remplissage mince du pont" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilise des tours spéciales pour soutenir de petites zones en porte-à-faux. Le diamètre de ces tours est plus large que la zone qu’elles soutiennent. Près du porte-à-faux, le diamètre des tours diminue pour former un toit." -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 "Densité maximale du remplissage considéré comme étant mince. La couche sur le remplissage mince est considérée comme non soutenue et peut donc être traitée comme une couche du pont." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utiliser cette maille pour modifier le remplissage d'autres mailles qu'elle chevauche. Remplace les régions de remplissage d'autres mailles par des régions de cette maille. Il est conseillé d'imprimer uniquement une Paroi et pas de Couche du dessus/dessous pour cette maille." -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Roue libre pour paroi du pont" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utiliser ce maillage pour spécifier des zones de support. Cela peut être utilisé pour générer une structure de support." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en roue libre immédiatement avant le début d'une paroi de pont. L'utilisation de la roue libre avant le début du pont permet de réduire la pression à l'intérieur de la buse et d'obtenir un pont plus plat." +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utiliser cette maille pour préciser à quel endroit aucune partie du modèle doit être détectée comme porte-à-faux. Cette option peut être utilisée pour supprimer la structure de support non souhaitée." -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Vitesse de paroi du pont" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Utilisateur spécifié" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Vitesse à laquelle les parois de pont sont imprimées." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle verticale" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Débit de paroi du pont" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolérance verticale dans les couches découpées. Les contours d'une couche sont normalement générés en faisant passer les sections entrecroisées au milieu de chaque épaisseur de couche (Milieu). Alternativement, chaque couche peut posséder des zones situées à l'intérieur du volume à travers toute l'épaisseur de la couche (Exclusif) ou une couche peut avoir des zones situées à l'intérieur à tout endroit dans la couche (Inclusif). L'option Inclusif permet de conserver le plus de détails ; l'option Exclusif permet d'obtenir une adaptation optimale ; l'option Milieu permet de rester proche de la surface d'origine." -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression des parois de pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendre le chauffage du plateau" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Vitesse de la couche extérieure du pont" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendre le chauffage de la buse" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Vitesse à laquelle les régions de la couche extérieure du pont sont imprimées." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accélération de la paroi" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Débit de la couche extérieure du pont" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Nombre de distributions des parois" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression des régions de la couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrudeuse de paroi" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densité de la couche extérieure du pont" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Débit de paroi" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Saccade de paroi" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Vitesse du ventilateur du pont" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Nombre de lignes de la paroi" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression des parois et de la couche extérieure du pont." +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largeur de ligne de la paroi" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Le pont possède plusieurs couches" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordre des parois" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Si cette option est activée, les deuxième et troisième couches au-dessus de la zone d'air seront imprimées selon les paramètres suivants. Sinon, ces couches seront imprimées selon les paramètres normaux." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Vitesse d'impression de la paroi" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Vitesse de la deuxième couche extérieure du pont" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Épaisseur de la paroi" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Vitesse d'impression à utiliser lors de l'impression de la deuxième couche extérieure du pont." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longueur de transition de la paroi" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Débit de la deuxième couche extérieure du pont" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distance du filtre de transition des parois" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression de la deuxième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Marge du filtre de transition des parois" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densité de la deuxième couche extérieure du pont" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angle du seuil de transition de la paroi" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la deuxième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." +msgctxt "shell label" +msgid "Walls" +msgstr "Parois" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Vitesse du ventilateur de la deuxième couche extérieure du pont" +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." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la deuxième couche extérieure du pont." +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Lors de la vérification de l'emplacement d'un modèle au-dessus et en-dessous du support, effectuer des étapes de la hauteur définie. Des valeurs plus faibles découperont plus lentement, tandis que des valeurs plus élevées peuvent causer l'impression d'un support normal à des endroits où il devrait y avoir une interface de support." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Vitesse de la troisième couche extérieure du pont" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Lorsqu'ils sont activés, les parcours d'outils sont corrigés pour les imprimantes dotées de planificateurs de mouvements fluides. Les petits mouvements qui s'écartent de la direction générale de la trajectoire de l'outil sont lissés pour optimiser la fluidité des mouvements." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Vitesse d'impression à utiliser lors de l'impression de la troisième couche extérieure du pont." +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Lorsque cette option est activée, l'ordre dans lequel les lignes de remplissage sont imprimées est optimisé pour réduire la distance parcourue. La réduction du temps de parcours dépend en grande partie du modèle à découper, du type de remplissage, de la densité, etc. Remarque : pour certains modèles possédant beaucoup de petites zones de remplissage, le temps de découpe du modèle peut en être considérablement augmenté." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Débit de la troisième couche extérieure du pont" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Lorsque cette fonction est activée, la vitesse du ventilateur de refroidissement de l'impression est modifiée pour les régions de la couche extérieure situées immédiatement au-dessus du support." -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression de la troisième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Si cette option est activée, les coordonnées de la jointure z sont relatives au centre de chaque partie. Si elle est désactivée, les coordonnées définissent une position absolue sur le plateau." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densité de la troisième couche extérieure du pont" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la troisième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Lorsque le diamètre est supérieur à zéro, l'expansion horizontale des trous est progressivement appliquée aux petits trous (ces derniers sont élargis). Lorsque le diamètre est défini sur zéro, l'expansion horizontale des trous est appliquée à tous les trous. Les trous dont le diamètre est supérieur au diamètre maximal défini pour l'expansion horizontale des trous ne sont pas élargis." -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Vitesse du ventilateur de la troisième couche extérieure du pont" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Lorsqu'elle est supérieure à zéro, l'expansion horizontale du trou correspond à la quantité de décalage appliquée à la totalité des trous de chaque couche. Les valeurs positives augmentent la taille des trous, les valeurs négatives réduisent la taille des trous. Lorsque ce paramètre est activé, il peut être ajusté davantage avec le diamètre maximum d'expansion horizontale du trou." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la troisième couche extérieure du pont." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression des régions de la couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Essuyer la buse entre les couches" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression des parois de pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "clean_between_layers description" -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 "Inclure ou non le G-Code d'essuyage de la buse entre les couches (maximum 1 par couche). 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 "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression de la deuxième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de matériau entre les essuyages" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression de la troisième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." -msgctxt "max_extrusion_before_wipe description" -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 "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé. Si cette valeur est inférieure au volume de matériau nécessaire dans une couche, le paramètre n'a aucun effet dans cette couche, c'est-à-dire qu'il est limité à un essuyage par couche." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Lorsque la vitesse minimale est atteinte à cause de la durée minimale d'une couche, relève la tête de l'impression et attend que la durée supplémentaire jusqu'à la durée minimale d'une couche soit atteinte." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Activation de la rétraction d'essuyage" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Lorsque le modèle comporte de petits trous verticaux de quelques couches seulement, il doit normalement y avoir une couche autour de celles-ci dans l'espace étroit. Activez ce paramètre pour ne pas générer de couche si le trou vertical est très petit. Cela améliore le temps d'impression et le temps de découpage, mais laisse techniquement le remplissage exposé à l'air." -msgctxt "wipe_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." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quand créer des transitions entre un nombre uniforme et impair de parois. Une forme de coin dont l'angle est supérieur à ce paramètre n'aura pas de transitions et aucune paroi ne sera imprimée au centre pour remplir l'espace restant. En réduisant ce paramètre, on réduit le nombre et la longueur de ces parois centrales, mais on risque de laisser des trous ou sur-extruder." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Lorsque l'on passe d'un nombre de parois à un autre, au fur et à mesure que la pièce s'amincit, un certain espace est alloué pour diviser ou joindre les lignes de parois." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distance de rétraction d'essuyage" +msgctxt "wipe_hop_enable description" +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 "Lors de l'essuyage, le plateau de fabrication 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 de fabrication." -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "La distance de rétraction du filament afin qu'il ne suinte pas pendant la séquence d'essuyage." +msgctxt "retraction_hop_enabled 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 "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Degré supplémentaire de rétraction d'essuyage d'amorçage" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Si la Distance X/Y des supports annule la Distance Z des supports ou inversement. Lorsque X/Y annule Z, la distance X/Y peut écarter le support du modèle, influençant ainsi la distance Z réelle par rapport au porte-à-faux. Nous pouvons désactiver cela en n'appliquant pas la distance X/Y autour des porte-à-faux." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Du matériau peut suinter pendant un déplacement d'essuyage, ce qui peut être compensé ici." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Si les coordonnées X/Y de la position zéro de l'imprimante se situent au centre de la zone imprimable." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Vitesse de rétraction d'essuyage" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Détermine si la butée de l'axe X est en sens positif (haute coordonnée X) ou négatif (basse coordonnée X)." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant un déplacement de rétraction d'essuyage." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Détermine si la butée de l'axe Y est en sens positif (haute coordonnée Y) ou négatif (basse coordonnée Y)." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Vitesse de rétraction d'essuyage" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Détermine si la butée de l'axe Z est en sens positif (haute coordonnée Z) ou négatif (basse coordonnée Z)." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est rétracté pendant un déplacement de rétraction d'essuyage." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Si les extrudeurs partagent un seul chauffage au lieu que chaque extrudeur ait son propre chauffage." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vitesse primaire de rétraction d'essuyage" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Lorsque les extrudeuses partagent une seule buse au lieu que chaque extrudeuse ait sa propre buse. Lorsqu'il est défini à true, le script gcode de démarrage de l'imprimante doit configurer correctement toutes les extrudeuses dans un état de rétraction initial connu et mutuellement compatible (zéro ou un filament non rétracté) ; dans ce cas, l'état de rétraction initial est décrit, par extrudeuse, par le paramètre 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est préparé pendant un déplacement de rétraction d'essuyage." +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Si la machine a un plateau chauffé présent." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pause d'essuyage" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Si la machine est capable de stabiliser la température du volume d'impression." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pause après l'irrétraction." +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "S'il faut centrer l'objet au milieu du plateau d'impression (0,0) au lieu d'utiliser le système de coordonnées dans lequel l'objet a été enregistré." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Décalage en Z de l'essuyage" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Contrôler ou non la température depuis Cura. Désactivez cette option pour contrôler la température de la buse depuis une source autre que Cura." -msgctxt "wipe_hop_enable description" -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 "Lors de l'essuyage, le plateau de fabrication 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 de fabrication." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Inclure ou non les commandes de température du plateau au début du gcode. Si le gcode_démarrage contient déjà les commandes de température du plateau, l'interface Cura désactive automatiquement ce paramètre." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Hauteur du décalage en Z d'essuyage" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Inclure ou non les commandes de température de la buse au début du gcode. Si le gcode_démarrage contient déjà les commandes de température de la buse, l'interface Cura désactive automatiquement ce paramètre." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." +msgctxt "clean_between_layers description" +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 "Inclure ou non le G-Code d'essuyage de la buse entre les couches (maximum 1 par couche). 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 "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Vitesse du décalage d'essuyage" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Insérer ou non une commande pour attendre que la température du plateau soit atteinte au démarrage." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Vitesse de déplacement de l'axe Z pendant le décalage." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Préparer les filaments avec une goutte avant l'impression. Ce paramètre permet d'assurer que l'extrudeuse disposera de matériau prêt au niveau de la buse avant l'impression. La jupe/bordure d'impression peut également servir de préparation, auquel cas le fait de laisser ce paramètre désactivé permet de gagner un peu de temps." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Position X de la brosse d'essuyage" +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 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 "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 a) un seul extrudeur est activé et si b) 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 "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Emplacement X où le script d'essuyage démarrera." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Afficher ou non les différentes variantes de cette machine qui sont décrites dans des fichiers json séparés." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Nombre de répétitions d'essuyage" +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." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Le nombre de déplacements de la buse à travers la brosse." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Attendre ou non que la température de la buse soit atteinte au démarrage." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distance de déplacement d'essuyage" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largeur d'une seule ligne de remplissage." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distance de déplacement de la tête d'avant en arrière à travers la brosse." +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Largeur d'une seule ligne de plafond ou de bas de support." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Taille maximale des petits trous" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Largeur d'une seule ligne de la zone en haut de l'impression." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Les trous et les contours des pièces dont le diamètre est inférieur à celui-ci seront imprimés en utilisant l'option Vitesse de petite structure." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Largeur d'une ligne. Généralement, la largeur de chaque ligne doit correspondre à la largeur de la buse. Toutefois, le fait de diminuer légèrement cette valeur peut fournir de meilleures impressions." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longueur max de petite structure" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largeur d'une seule ligne de tour d'amorçage." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Les contours des structures dont le diamètre est inférieur à cette longueur seront imprimés en utilisant l'option Vitesse de petite structure." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largeur d'une seule ligne de jupe ou de bordure." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Vitesse de petite structure" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largeur d'une seule ligne de bas de support." -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." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largeur d'une seule ligne de plafond de support." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Vitesse de la couche initiale de petite structure" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largeur d'une seule ligne de support." -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." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largeur d'une seule ligne du dessus/dessous." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alterner les directions des parois" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largeur d'une seule ligne de la paroi pour toutes les lignes de paroi, à l’exception de la ligne la plus externe." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alternez les directions des parois, une couche et un insert sur deux. Utile pour les matériaux qui peuvent accumuler des contraintes, comme pour l'impression de métal." +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largeur d'une seule ligne de la paroi." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Supprimer les coins intérieurs du radeau" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Largeur des lignes de la couche intermédiaire du radeau. Une plus grande extrusion de la deuxième couche renforce l'adhérence des lignes au plateau." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Nombre de parois à la base du radeau" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Largeur de la ligne la plus à l'extérieur de la paroi. Le fait de réduire cette valeur permet d'imprimer des niveaux plus élevés de détails." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Paramètres de ligne de commande" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "La largeur de la paroi qui remplacera les entités fines (selon la taille minimale des entités) du modèle. Si la largeur minimale de la ligne de paroi est plus fine que l'épaisseur de l'entité, la paroi deviendra aussi épaisse que l'entité elle-même." -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Paramètres qui sont utilisés uniquement si CuraEngine n'est pas invoqué depuis l'interface Cura." +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Position X de la brosse d'essuyage" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centrer l'objet" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Vitesse du décalage d'essuyage" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "S'il faut centrer l'objet au milieu du plateau d'impression (0,0) au lieu d'utiliser le système de coordonnées dans lequel l'objet a été enregistré." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Essuyer le bec d'impression inactif sur la tour d'amorçage" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distance de déplacement d'essuyage" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Position X de la maille" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Essuyer la buse entre les couches" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset appliqué à l'objet dans la direction X." +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pause d'essuyage" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Position Y de la maille" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Nombre de répétitions d'essuyage" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset appliqué à l'objet dans la direction Y." +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distance de rétraction d'essuyage" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Position Z de la maille" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Activation de la rétraction d'essuyage" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Décalage appliqué à l'objet dans le sens z. Cela vous permet d'exécuter ce que l'on appelait « Affaissement de l'objet »." +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Degré supplémentaire de rétraction d'essuyage d'amorçage" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrice de rotation de la maille" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vitesse primaire de rétraction d'essuyage" -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 "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Vitesse de rétraction d'essuyage" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Débit progressif activé" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Vitesse de rétraction d'essuyage" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Décalage en Z de l'essuyage" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accélération maximale du débit progressif" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Hauteur du décalage en Z d'essuyage" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accélération maximale des changements de débit progressifs" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "À l'intérieur du remplissage" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accélération maximale du débit de la couche initiale" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Écrivez l'outil actif après avoir envoyé des commandes temporaires à l'outil inactif. Requis pour l'impression à double extrusion avec Smoothie ou un autre micrologiciel avec des commandes d'outils modaux." -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Butée X en sens positif" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Taille du pas de discrétisation du débit progressif" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Emplacement X où le script d'essuyage démarrera." -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durée de chaque étape du changement progressif de débit" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y annule Z" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Réinitialiser la durée du débit" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Butée Y en sens positif" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Butée Z en sens positif" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Décalage en Z après changement d'extrudeuse" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Décalage en Z après changement de hauteur d'extrudeuse" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hauteur du décalage en Z" -msgctxt "material description" -msgid "Material" -msgstr "Matériau" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Décalage en Z uniquement sur les pièces imprimées" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Vitesse du décalage en Z" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Décalage en Z lors d’une rétraction" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alignement de la jointure en Z" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position de la jointure en Z" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatif à la jointure en Z" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X Jointure en Z" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y Jointure en Z" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z annule X/Y" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "material label" -msgid "Material" -msgstr "Matériau" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Regrouper les parois extérieures" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Débit de la paroi externe de la surface supérieure" +msgctxt "travel description" +msgid "travel" +msgstr "déplacement" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Distance entre l’impression et le bas des supports." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Débit des parois internes de la surface supérieure" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Distance entre le dessus/dessous du support et l'impression. Cet écart offre un espace permettant de retirer les supports une fois l'impression du modèle terminée. Cette valeur est arrondie au chiffre supérieur jusqu'à atteindre un multiple de la hauteur de la couche." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Durée de chaque étape du changement progressif de débit" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Permettre des changements de débit progressifs. Lorsque cette option est activée, le débit est progressivement augmenté/diminué jusqu'au débit cible. Cette option est utile pour les imprimantes équipées d'un tube Bowden avec lesquelles le débit n'est pas immédiatement modifié lorsque le moteur de l'extrudeuse démarre/s'arrête." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Pour tout déplacement plus long que cette valeur, le débit de matière est réinitialisé au débit cible du parcours" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Vitesse d'impression des parois internes de la surface supérieure" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Taille du pas de discrétisation du débit progressif" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Débit progressif activé" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accélération de la paroi externe de la surface supérieure" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Accélération maximale du débit progressif" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Accélération maximale du débit de la couche initiale" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accélération des parois internes de la surface supérieure" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Accélération maximale des changements de débit progressifs" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Vitesse minimale des changements de débit progressifs pour la première couche" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Saccade de la paroi externe de la surface supérieure" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Bordure de la tour d'amorçage" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Les tours d'amorçage peuvent avoir besoin de l'adhérence supplémentaire d'une bordure, même si le modèle n'en a pas besoin. Ne peut actuellement pas être utilisé avec le type d'adhérence « Raft » (radeau)." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Saccade des parois internes de la surface supérieure" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Réinitialiser la durée du débit" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Température utilisée pour l'impression de la première couche. Définissez-la sur 0 pour désactiver le traitement spécial de la couche initiale." diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 6794644e486..9a502fbdf6a 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -560,6 +560,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Kijelöltek rendezése" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -624,6 +628,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Biztonsági mentések" +msgctxt "@label" +msgid "Balanced" +msgstr "Kiegyensúlyozott" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Alap (mm)" @@ -1008,6 +1016,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1250,10 +1262,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "" -msgctxt "@label" -msgid "Default" -msgstr "" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Alapértelmezett viselkedés a megváltozott beállítási értékeknél, ha másik profilra vált: " @@ -2341,6 +2349,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Anyagok kezelése..." @@ -3422,6 +3446,10 @@ msgctxt "description" msgid "Provides support for writing 3MF files." msgstr "Támogatást nyújt a 3MF fájlok írásához." +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." msgstr "" @@ -4305,6 +4333,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Az egyensúlyozott profil a termelékenység, felületminőség, mechanikai tulajdonságok és méret pontoság közötti egyensúly elérését célozza meg." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Az alap magassága a tárgyasztaltól mm -ben." @@ -5517,18 +5549,6 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" -msgctxt "@label" -msgid "Balanced" -msgstr "Kiegyensúlyozott" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Az egyensúlyozott profil a termelékenység, felületminőség, mechanikai tulajdonságok és méret pontoság közötti egyensúly elérését célozza meg." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Kijelöltek rendezése" - #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Engedélyezze a peremet, vagy az aláúsztatást. Ez létre fog hozni a test szélén illetve az alján egy olyan részt, ami segíti a letapadást, viszont nyomtatás után ezek könnyen eltávolíthatóak a testről." diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 2ac4798de4e..f24e69ed9e8 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -746,16 +746,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "A támaszok belső szerkezetében lévő vonalak távolsága.Ez egy számított érték a támasz sűrűségből." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "A támasz teteje és a fölé épített nyomtatvány közötti távolság." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "A támaszok struktúrájának alsó/felső részének távolsága a nyomtatott tárgytól.Ez a rés szabadon marad, így segíti a támaszok eltávolítását a nyomtatás után.Ez az érték a rétegmagasság többszörösére lesz kerekítve." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1097,6 +1097,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Áramláskompenzálás a külső falvonalak nyomtatásánál." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Áramlási kompenzáció a felső felület legkülső falvonalán." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Áramlás kompenzáció a felső felület falvonalain az összes falvonal kivételével a legkülsőn." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Áramláskompenzálás az alsó/felső rétegek nyomtatásánál." @@ -1285,6 +1293,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Külső falak csoportosítása" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" @@ -2449,6 +2461,10 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Külső fal tisztítási távolság" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Az azonos rétegben lévő különböző szigetek külső falait sorban nyomtatják. Amikor engedélyezve van, korlátozódik az áramlás változásainak mértéke, mert a falak típusonként nyomtathatók ki. Amikor letiltva van, az utazások számát a szigetek között csökkenti, mert ugyanazon szigeteken lévő falak csoportosítva vannak." + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2502,8 +2518,20 @@ msgid "Prime Tower Acceleration" msgstr "Előtorony gyorsulás" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Előtorony perem" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2521,6 +2549,10 @@ msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Előtorony minimális térfogat" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Előtorony mérete" @@ -2538,8 +2570,8 @@ msgid "Prime Tower Y Position" msgstr "Előtorony Y helyzet" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Előfordulhat, hogy az előtornyokhoz szükség van a peremek által biztosított extra tapadásra, még akkor is, ha a modell nem rendelkezik peremmel. Jelenleg nem használható a tutaj 'Raft' mint tapadástípus ehhez a művelethez." +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3609,6 +3641,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "A tutajfedél nyomtatásához kapcsolódó gyorsulási érték." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Az a gyorsulás, amellyel a felső felület belső falai kinyomtatnak." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Az a gyorsulás, amellyel a felső felület legkülső falai kinyomtatnak." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "A falak nyomtatása alatt használt gyorsulás." @@ -3749,6 +3789,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "A tutajvonalak közötti távolság a felső tutajrétegeknél. A távolságnak meg kell egyeznie a vonalszélességgel, hogy a felület tömör legyen." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3945,6 +3989,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "A kezdő réteg magassága mm-ben. A vastagabb kezdőréteg megkönnyíti a tapadást a tárgyasztalhoz." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "A támasz lépcsőinek magassága azona a részen, ahol a modellen támaszkodik.Ha az érték alacsony, a támasz eltávolítása nehéz lehet, viszont a túl magas érték instabillá teheti a támaszt. Ha az érték 0, akkor kikapcsolja a lépcsőt." @@ -4017,6 +4065,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "A visszahúzott anyag hossza visszahúzáskor." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "A gépre szerelt tárgyasztal anyaga." @@ -4109,6 +4161,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok nyomtatása alatt." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület legkülső falai kinyomtatnak." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület belső falai kinyomtatnak." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "A maximális pillanatnyi sebességváltozás változtatása a falak nyomtatása alatt." @@ -4493,6 +4553,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "A tutaj felső rétegeinek nyomtatási sebessége. Ezeket kissé lassabban kell nyomtatni, hogy a fúvóka lassan kiegyenlítse a szomszédos felszíni vonalakat." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Az a sebesség, amellyel a felső felület belső falai kinyomtatnak." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Az a sebesség, amellyel a felső felület legkülső falai kinyomtatnak." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "A Z tengely emelési sebessége. Ez általában alaxcsonyabb, mint a nyomtatási sebesség, mivel a tárgyasztal, vagy az X keresztszánt nehezebb mozgatni." @@ -4554,8 +4622,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Az a hőmérséklet, ahová a fejnek vissza kell hűlnie a nyomtatás befejezése előtt." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Az a hőmérséklet, amin az első réteg nyomtatása fog történni. Ha az érték 0, akkor nem kezeli külön a kezdő réteg hőmérsékleti beállítását." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4633,6 +4701,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Az előtorony szélessége." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Az előtorony szélessége." @@ -4701,6 +4773,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Felső kéreg eltávolítási szélesség" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "A felső felület belső falának gyorsulása" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "A felső felület legkülső falának hirtelen gyorsulása" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "A felső felület belső falának sebessége" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "A felső felület belső falainak áramlása" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "A felső felület külső falának gyorsulása" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "A felső felület legkülső falának áramlása" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "A felső felület belső falának hirtelen gyorsulása" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "A felső felület legkülső falának sebessége" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Felső felületi gyorsulás" @@ -5389,125 +5493,6 @@ msgctxt "travel description" msgid "travel" msgstr "fej átpozícionálás" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Külső falak csoportosítása" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Az azonos rétegben lévő különböző szigetek külső falait sorban nyomtatják. Amikor engedélyezve van, korlátozódik az áramlás változásainak mértéke, mert a falak típusonként nyomtathatók ki. Amikor letiltva van, az utazások számát a szigetek között csökkenti, mert ugyanazon szigeteken lévő falak csoportosítva vannak." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "A felső felület legkülső falának áramlása" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Áramlási kompenzáció a felső felület legkülső falvonalán." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "A felső felület belső falainak áramlása" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Áramlás kompenzáció a felső felület falvonalain az összes falvonal kivételével a legkülsőn." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "A felső felület legkülső falának sebessége" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Az a sebesség, amellyel a felső felület legkülső falai kinyomtatnak." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "A felső felület belső falának sebessége" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Az a sebesség, amellyel a felső felület belső falai kinyomtatnak." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "A felső felület külső falának gyorsulása" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Az a gyorsulás, amellyel a felső felület legkülső falai kinyomtatnak." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "A felső felület belső falának gyorsulása" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Az a gyorsulás, amellyel a felső felület belső falai kinyomtatnak." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "A felső felület belső falának hirtelen gyorsulása" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület belső falai kinyomtatnak." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "A felső felület legkülső falának hirtelen gyorsulása" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "A legnagyobb pillanatnyi sebességváltozás, amellyel a felső felület legkülső falai kinyomtatnak." - - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - - #~ msgctxt "machine_head_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps excluded)." #~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátor nélkül)." @@ -5600,6 +5585,14 @@ msgstr "" #~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." #~ msgstr "A fúvóka és a vízszintesen lefelé mutató vonalak közötti távolság. A nagyobb hézag átlósan lefelé mutató vonalakat eredményez, kevésbé meredek szöggel, ami viszont kevésbé felfelé irányuló kapcsolatokat eredményez a következő réteggel. Csak a huzalnyomásra vonatkozik." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "A támaszok struktúrájának alsó/felső részének távolsága a nyomtatott tárgytól.Ez a rés szabadon marad, így segíti a támaszok eltávolítását a nyomtatás után.Ez az érték a rétegmagasság többszörösére lesz kerekítve." + #~ msgctxt "wireframe_up_half_speed description" #~ msgid "" #~ "Distance of an upward move which is extruded with half speed.\n" @@ -5766,6 +5759,14 @@ msgstr "" #~ msgid "Prefer Retract" #~ msgstr "Visszahúzás preferálása" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Előtorony perem" + +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Előfordulhat, hogy az előtornyokhoz szükség van a peremek által biztosított extra tapadásra, még akkor is, ha a modell nem rendelkezik peremmel. Jelenleg nem használható a tutaj 'Raft' mint tapadástípus ehhez a művelethez." + #~ msgctxt "wireframe_enabled description" #~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." #~ msgstr "Csak a külső felületet nyomtatja, egy ritkás hevederezett szerkezettel, a levegőben. Ez úgy valósul meg, hogy a modell kontúrjai vízszintesen kinyomtatásra kerülnek meghatározott Z intervallumban, amiket felfelé, és átlósan lefelé egyenesen összeköt." @@ -5926,6 +5927,10 @@ msgstr "" #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate." #~ msgstr "A kezdő réteg sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Az a hőmérséklet, amin az első réteg nyomtatása fog történni. Ha az érték 0, akkor nem kezeli külön a kezdő réteg hőmérsékleti beállítását." + #~ msgctxt "material_bed_temperature_layer_0 description" #~ msgid "The temperature used for the heated build plate at the first layer." #~ msgstr "A tárgyasztal erre a hőmérsékletre fűt fel az első réteg nyomtatásához." diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 04cc68715ad..b0b180a2bf5 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -137,8 +138,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazione." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Aggiungi profili materiale e plugin dal Marketplace\n- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Aggiungi profili materiale e plugin dal Marketplace\n" +"- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n" +"- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -164,6 +171,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "File 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Lettore 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Writer 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Plug-in Writer 3MF danneggiato." @@ -184,29 +199,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Solo le impostazioni modificate dall'utente verranno salvate nel profilo personalizzato.
    Per i materiali che lo supportano, il nuovo profilo personalizzato erediterà le proprietà da %1." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Renderer OpenGL: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Fornitore OpenGL: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versione OpenGL: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

    \n

    Usare il pulsante “Invia report" per inviare automaticamente una segnalazione errore ai nostri server

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema

    \n" +"

    Usare il pulsante “Invia report" per inviare automaticamente una segnalazione errore ai nostri server

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.

    \n

    Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

    \n

    I backup sono contenuti nella cartella configurazione.

    \n

    Si prega di inviare questo Rapporto su crash per correggere il problema.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.

    \n" +"

    Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.

    \n" +"

    I backup sono contenuti nella cartella configurazione.

    \n" +"

    Si prega di inviare questo Rapporto su crash per correggere il problema.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

    \n

    {model_names}

    \n

    Scopri come garantire la migliore qualità ed affidabilità di stampa.

    \n

    Visualizza la guida alla qualità di stampa

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:

    \n" +"

    {model_names}

    \n" +"

    Scopri come garantire la migliore qualità ed affidabilità di stampa.

    \n" +"

    Visualizza la guida alla qualità di stampa

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -226,6 +269,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "File AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Lettore 3MF" + msgctxt "@label" msgid "Abort" msgstr "Interrompi" @@ -262,6 +309,10 @@ msgctxt "@button" msgid "Accept" msgstr "Accetto" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." + msgctxt "@label" msgid "Account synced" msgstr "Account sincronizzato" @@ -354,6 +405,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Aggiungere la stampante manualmente" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Aggiunta della stampante {name} ({model}) dall'account" @@ -390,10 +442,23 @@ msgctxt "@button" msgid "Agree" msgstr "Accetta" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tutti i file (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tutti i tipi supportati ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Consenti l'invio di dati anonimi" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Consente il caricamento e la visualizzazione dei file codice G." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Chiedi sempre" @@ -466,6 +531,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Rimuovere temporaneamente {printer_name}?" @@ -474,6 +540,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Rimuovere {0}? Questa operazione non può essere annullata!" @@ -486,6 +557,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Sistema tutti i modelli in una griglia" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Fai una domanda" @@ -534,6 +609,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e reset configurazione" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Effettua il backup o ripristina la configurazione." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin" @@ -546,6 +625,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Backup" +msgctxt "@label" +msgid "Balanced" +msgstr "Bilanciato" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -622,10 +705,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Non è possibile effettuare la connessione alla stampante UltiMaker?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossibile importare il profilo da {0} prima di aggiungere una stampante." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}" @@ -634,6 +719,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Impossibile scrivere nel file UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annulla" + msgctxt "@button" msgid "Cancel" msgstr "Annulla" @@ -694,8 +783,21 @@ msgctxt "@label" msgid "Checking..." msgstr "Verifica in corso..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controlla disponibilità di aggiornamenti firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." msgctxt "@action:inmenu menubar:edit" @@ -774,6 +876,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "File G-Code compresso" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lettore codice G compresso" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer codice G compresso" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Modifiche configurazione" @@ -810,6 +920,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Conferma modifica diametro" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Conferma rimozione" + msgctxt "@action:button" msgid "Connect" msgstr "Collega" @@ -842,6 +956,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Collegato tramite cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulta la community di UltiMaker." @@ -882,6 +1000,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}." @@ -894,6 +1013,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Impossibile interpretare la risposta del server." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Impossibile raggiungere Marketplace." @@ -906,6 +1029,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossibile salvare archivio materiali in {}:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Impossibile salvare {0}: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossibile salvare su unità rimovibile {0}: {1}" @@ -914,17 +1043,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossibile caricare i dati sulla stampante." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}\nAutorizzazione mancante per eseguire il processo." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Impossibile avviare EnginePlugin: {self._plugin_id}\n" +"Autorizzazione mancante per eseguire il processo." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}\nIl sistema operativo lo sta bloccando (antivirus?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Impossibile avviare EnginePlugin: {self._plugin_id}\n" +"Il sistema operativo lo sta bloccando (antivirus?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}\nLa risorsa non è temporaneamente disponibile" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Impossibile avviare EnginePlugin: {self._plugin_id}\n" +"La risorsa non è temporaneamente disponibile" msgctxt "@title:window" msgid "Crash Report" @@ -966,6 +1110,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crea progetti di stampa in Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Creazione del backup in corso..." @@ -978,10 +1126,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Backup Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Backup Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profilo Cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lettore profilo Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Writer profilo Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "File 3MF Progetto Cura" @@ -994,13 +1154,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Impossibile avviare Cura" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura è stato sviluppato da UltiMaker in cooperazione con la comunità.\nCura è orgogliosa di utilizzare i seguenti progetti open source:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura è stato sviluppato da UltiMaker in cooperazione con la comunità.\n" +"Cura è orgogliosa di utilizzare i seguenti progetti open source:" msgctxt "@label" msgid "Cura language" @@ -1010,6 +1175,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versione Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1090,10 +1267,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Impostazione predefinita" -msgctxt "@label" -msgid "Default" -msgstr "Impostazione predefinita" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: " @@ -1266,10 +1439,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Rimuovi" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Rimuovi il dispositivo rimovibile {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità." @@ -1294,6 +1469,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Abilitato" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "Codice G fine" @@ -1322,6 +1501,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Inserire l'indirizzo IP della stampante." +msgctxt "@info:title" +msgid "Error" +msgstr "Errore" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Analisi errori" @@ -1366,6 +1549,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Esportazione riuscita" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profilo esportato su {0}" @@ -1374,6 +1558,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Estendi UltiMaker Cura con plugin e profili del materiale." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Estensione che consente la post-elaborazione degli script creati da utente" + msgctxt "@label" msgid "Extruder" msgstr "Estrusore" @@ -1410,6 +1598,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità." @@ -1418,22 +1607,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Impossibile esportare il materiale su %1: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Impossibile esportare il profilo su {0}: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Impossibile esportare il profilo su {0}: Rilevata anomalia durante scrittura plugin." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossibile importare il profilo da {0}: {1}" @@ -1466,6 +1660,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Peso del filamento" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Il file esiste già" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "File salvato" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Il file {0} non contiene nessun profilo valido." @@ -1498,6 +1701,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Aggiornamento del firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Controllo aggiornamento firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aggiornamento firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware." @@ -1594,6 +1805,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "File G-Code" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lettore profilo codice G" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lettore codice G" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Writer codice G" + msgctxt "@label" msgid "G-code flavor" msgstr "Versione codice G" @@ -1626,6 +1849,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Altezza gantry" +msgctxt "@title:tab" +msgid "General" +msgstr "Generale" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." @@ -1658,6 +1885,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Posizionamento nella griglia" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppo #{group_nr}" @@ -1730,6 +1958,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Se la stampante non è nell’elenco, leggere la guida alla risoluzione dei problemi per la stampa in rete" +msgctxt "name" +msgid "Image Reader" +msgstr "Lettore di immagine" + msgctxt "@action:button" msgid "Import" msgstr "Importa" @@ -1978,6 +2210,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Ulteriori informazioni" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Ulteriori informazioni" + msgctxt "@button" msgid "Learn more" msgstr "Ulteriori informazioni" @@ -2006,6 +2242,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista sinistra" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lettore legacy profilo Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informa gli sviluppatori che si è verificato un errore." @@ -2086,6 +2326,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Registri" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Persa connessione con la stampante" @@ -2094,6 +2338,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Impostazioni macchina" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Azione Impostazioni macchina" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Macchine" @@ -2106,6 +2354,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gestione materiali..." @@ -2154,6 +2418,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gestisci i plugin UltiMaker Cura e i profili del materiale qui. Accertarsi di mantenere i plugin aggiornati e di eseguire regolarmente il backup dell'impostazione." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestisce le connessioni di rete alle stampanti UltiMaker in rete." + msgctxt "@label" msgid "Manufacturer" msgstr "Produttore" @@ -2166,6 +2438,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mercato" +msgctxt "name" +msgid "Marketplace" +msgstr "Mercato" + msgctxt "@action:label" msgid "Material" msgstr "Materiale" @@ -2182,6 +2458,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Colore materiale" +msgctxt "name" +msgid "Material Profiles" +msgstr "Profili del materiale" + msgctxt "@label" msgid "Material Type" msgstr "Tipo di materiale" @@ -2226,6 +2506,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modalità" +msgctxt "name" +msgid "Model Checker" +msgstr "Controllo modello" + msgctxt "@info:title" msgid "Model Errors" msgstr "Errori modello" @@ -2242,6 +2526,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controlla" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase di controllo" + msgctxt "@action:button" msgid "Monitor print" msgstr "Monitora stampa" @@ -2316,6 +2604,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Errore di rete" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nuovo firmware %s stabile disponibile" @@ -2328,6 +2617,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Le nuove stampanti UltiMaker possono essere connesse a Digital Factory e monitorate da remoto." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}." @@ -2374,6 +2664,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Nessuna stima di costo disponibile" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nessun profilo personalizzato da importare nel file {0}" @@ -2482,6 +2773,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Numero di estrusori" +msgctxt "@action:button" +msgid "OK" +msgstr "" + msgctxt "@label" msgid "OS language" msgstr "Lingua sistema operativo" @@ -2502,6 +2797,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostra solo strati superiori" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}" @@ -2635,7 +2931,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Incolla dagli appunti" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pausa" @@ -2660,6 +2955,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Impostazioni per modello" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Utilità impostazioni per modello" + msgid "Perspective" msgstr "Prospettiva" @@ -2696,8 +2995,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Accertarsi che la stampante sia collegata:\n- Controllare se la stampante è accesa.\n- Controllare se la stampante è collegata alla rete.\n- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Accertarsi che la stampante sia collegata:\n" +"- Controllare se la stampante è accesa.\n" +"- Controllare se la stampante è collegata alla rete.\n" +"- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +3018,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Indica un nome per questo profilo." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Leggi e accetta la licenza del plugin." @@ -2720,8 +3031,16 @@ msgid "Please remove the print" msgstr "Rimuovere la stampa" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Verificare le impostazioni e controllare se i modelli:\n- Rientrano nel volume di stampa\n- Sono assegnati a un estrusore abilitato\n- Non sono tutti impostati come maglie modificatore" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Verificare le impostazioni e controllare se i modelli:\n" +"- Rientrano nel volume di stampa\n" +"- Sono assegnati a un estrusore abilitato\n" +"- Non sono tutti impostati come maglie modificatore" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2771,6 +3090,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-elaborazione" +msgctxt "name" +msgid "Post Processing" +msgstr "Post-elaborazione" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in di post-elaborazione" @@ -2787,6 +3110,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Prepara" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase di preparazione" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparazione in corso..." @@ -2807,6 +3134,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Anteprima" +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase di anteprima" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre di innesco" @@ -2935,6 +3266,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Le impostazioni della stampante saranno aggiornate in modo che corrispondano alle impostazioni salvate con il progetto." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Stampanti" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Stampanti aggiunte da Digital Factory:" @@ -2995,6 +3330,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Impostazioni profilo" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto." @@ -3019,18 +3355,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lingua di programmazione" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Il file di progetto {0} contiene un tipo di macchina sconosciuto {1}. Impossibile importare la macchina. Verranno invece importati i modelli." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Il file di progetto {0} è danneggiato: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Il file di progetto {0} è realizzato con profili sconosciuti a questa versione di UltiMaker Cura." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Il file di progetto {0} è diventato improvvisamente inaccessibile: {1}." @@ -3039,6 +3379,106 @@ msgctxt "@label" msgid "Properties" msgstr "Proprietà" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornisce una fase di controllo in Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Fornisce una normale visualizzazione a griglia compatta." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornisce una fase di preparazione in Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornisce una fase di anteprima in Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fornisce supporto per l'esportazione dei profili Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornisce supporto per l'importazione dei profili Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Fornisce supporto per l'importazione di profili da file G-Code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornisce il supporto per la lettura di file X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornisce supporto per la lettura dei file modello." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Fornisce il supporto per la scrittura di file 3MF." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornisce le impostazioni per modello." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Fornisce la vista a raggi X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." + msgctxt "@label" msgid "PyQt version" msgstr "Versione PyQt" @@ -3059,6 +3499,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Versione Qt" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'." @@ -3075,6 +3516,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Chiudere %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Legge il codice G da un archivio compresso." + msgctxt "@button" msgid "Recommended" msgstr "Consigliata" @@ -3127,6 +3572,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unità rimovibile" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin dispositivo di output unità rimovibile" + msgctxt "@action:button" msgid "Remove" msgstr "Rimuovi" @@ -3143,6 +3592,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Rinomina" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Rinomina profilo" @@ -3279,14 +3732,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Salva su unità rimovibile" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Salva su unità rimovibile {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Salvato su unità rimovibile {0} come {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Salvataggio in corso" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Salvataggio su unità rimovibile {0}" @@ -3379,6 +3839,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Invio dei materiali alla stampante" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Logger sentinella" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Libreria di comunicazione seriale" @@ -3411,6 +3875,10 @@ msgctxt "@label" msgid "Settings" msgstr "Impostazioni" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Impostazioni" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:" @@ -3571,6 +4039,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Accedi alla piattaforma UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Vista simulazione" + msgctxt "@tooltip" msgid "Skin" msgstr "Rivestimento esterno" @@ -3599,6 +4071,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seziona automaticamente alla modifica delle impostazioni." +msgctxt "name" +msgid "Slice info" +msgstr "Informazioni su sezionamento" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Sezionamento non riuscito" @@ -3615,13 +4091,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Sistemazione" +msgctxt "name" +msgid "Solid View" +msgstr "Visualizzazione compatta" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Visualizzazione compatta" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n\nFare clic per rendere visibili queste impostazioni." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n" +"\n" +"Fare clic per rendere visibili queste impostazioni." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3636,8 +4122,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Alcuni valori delle impostazioni definiti in %1 sono stati sovrascritti." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n\nFare clic per aprire la gestione profili." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n" +"\n" +"Fare clic per aprire la gestione profili." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +4155,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Sponsorizza Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Sponsorizza Cura" @@ -3709,6 +4199,10 @@ msgctxt "@label" msgid "Strength" msgstr "Resistenza" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiale esportato correttamente su %1" @@ -3717,6 +4211,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiale importato correttamente %1" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." @@ -3737,6 +4232,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Blocco supporto" +msgctxt "name" +msgid "Support Eraser" +msgstr "Cancellazione supporto" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Riempimento del supporto" @@ -3843,6 +4342,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Il backup supera la dimensione file massima." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Il profilo equilibrato è progettato per trovare un equilibrio tra produttività, qualità superficiale, proprietà meccaniche e precisione dimensionale." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "L'altezza della base dal piano di stampa in millimetri." @@ -3899,6 +4402,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni." @@ -3958,8 +4466,22 @@ msgid "The nozzle inserted in this extruder." msgstr "L’ugello inserito in questo estrusore." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "La configurazione del materiale di riempimento della stampa:\n\nPer stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n\nPer le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n\nPer le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"La configurazione del materiale di riempimento della stampa:\n" +"\n" +"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n" +"\n" +"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n" +"\n" +"Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4111,6 +4633,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Questa stampante comanda un gruppo di %1 stampanti." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Questo profilo {0} contiene dati errati, impossibile importarlo." @@ -4124,8 +4647,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Questo progetto contiene materiali o plugin attualmente non installati in Cura.
    Installa i pacchetti mancanti e riapri il progetto." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Questa impostazione ha un valore diverso dal profilo.\n\nFare clic per ripristinare il valore del profilo." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Questa impostazione ha un valore diverso dal profilo.\n" +"\n" +"Fare clic per ripristinare il valore del profilo." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4142,8 +4671,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n\nFare clic per ripristinare il valore calcolato." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n" +"\n" +"Fare clic per ripristinare il valore calcolato." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4169,6 +4704,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Per stabilire una connessione, visitare {website_link}" @@ -4181,6 +4717,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}" @@ -4229,6 +4766,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + msgctxt "@button" msgid "Troubleshooting" msgstr "Ricerca e riparazione dei guasti" @@ -4245,10 +4786,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Tipo" +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Lettore UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Writer UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Stampa USB" +msgctxt "name" +msgid "USB printing" +msgstr "Stampa USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Account UltiMaker" @@ -4265,6 +4822,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Pacchetto formato UltiMaker" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connessione di rete UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Pacchetto verificato UltiMaker" @@ -4273,6 +4834,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plug-in verificato UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Azioni della macchina UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Stampante UltiMaker" @@ -4285,6 +4850,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossibile aggiungere il profilo." @@ -4293,13 +4862,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Impossibile trovare il server EnginePlugin locale eseguibile per: {self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}\nAccesso negato." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}\n" +"Accesso negato." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4321,10 +4896,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}" @@ -4333,6 +4910,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}" @@ -4381,6 +4959,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Pacchetto sconosciuto" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}" @@ -4445,15 +5024,119 @@ msgctxt "@button" msgid "Updating..." msgstr "Aggiornamento in corso..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carica il firmware personalizzato" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Caricamento del processo di stampa sulla stampante." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." -msgctxt "@info:backup_status" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carica il firmware personalizzato" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Caricamento del processo di stampa sulla stampante." + +msgctxt "@info:backup_status" msgid "Uploading your backup..." msgstr "Caricamento backup in corso..." @@ -4477,6 +5160,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Libreria utilità, tra cui generazione diagramma Voronoi" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aggiornamento della versione da 2.1 a 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aggiornamento della versione da 2.2 a 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Aggiornamento della versione da 2.5 a 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aggiornamento della versione da 2.6 a 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aggiornamento della versione da 2.7 a 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aggiornamento della versione da 3.0 a 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aggiornamento della versione da 3.2 a 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aggiornamento della versione da 3.3 a 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Aggiornamento della versione da 3.4 a 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aggiornamento della versione da 3.5 a 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aggiornamento della versione da 4.0 a 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aggiornamento della versione da 4.1 a 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aggiornamento della versione da 4.11 a 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Aggiornamento della versione da 4.13 a 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Aggiornamento della versione da 4.2 a 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Aggiornamento della versione da 4.3 a 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aggiornamento della versione da 4.4 a 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aggiornamento della versione da 4.5 a 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aggiornamento versione da 4.6.2 a 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aggiornamento della versione da 4.7 a 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aggiornamento della versione da 4.8 a 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Aggiornamento della versione da 4.9 a 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Aggiornamento della versione da 5.2 a 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Aggiornamento versione da 5.3 a 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Aggiornamento versione da 5.4 a 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualizza le stampanti in Digital Factory" @@ -4525,6 +5312,11 @@ msgctxt "@button" msgid "Want more?" msgstr "Ulteriori informazioni?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Avvertenza" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità." @@ -4585,6 +5377,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Larghezza (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Scrive il codice G in un archivio compresso." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Scrive il codice G in un file." + msgctxt "@label" msgid "X (Width)" msgstr "X (Larghezza)" @@ -4597,6 +5397,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista ai raggi X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista ai raggi X" @@ -4609,6 +5413,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "File X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lettore X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondità)" @@ -4626,19 +5434,33 @@ msgid "Yes" msgstr "Sì" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \nContinuare?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n" +"Continuare?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\nContinuare?" -msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\n" +"Continuare?" +msgstr[1] "" +"Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n" +"Continuare?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Tentativo di connessione a {0} in corso, che non è l'host di un gruppo. È possibile visitare la pagina web per configurarla come host del gruppo." @@ -4649,7 +5471,10 @@ msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Alcune impostazioni di profilo sono state personalizzate.\nMantenere queste impostazioni modificate dopo il cambio dei profili?\nIn alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." +msgstr "" +"Alcune impostazioni di profilo sono state personalizzate.\n" +"Mantenere queste impostazioni modificate dopo il cambio dei profili?\n" +"In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4679,9 +5504,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "La nuova stampante apparirà automaticamente in Cura" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Impossibile connettere la stampante {printer_name} tramite cloud.\n Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Impossibile connettere la stampante {printer_name} tramite cloud.\n" +" Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" msgctxt "@label" msgid "Z" @@ -4739,6 +5569,7 @@ msgctxt "@label" msgid "version: %1" msgstr "versione: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} sarà rimossa fino alla prossima sincronizzazione account." @@ -4747,626 +5578,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Impossibile scaricare i plugin {}" -msgid "Provides support for exporting Cura profiles." -msgstr "Fornisce assistenza per l'esportazione di profili Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Writer profilo Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Impostazione predefinita" -msgctxt "name" -msgid "Slice info" -msgstr "Informazioni su sezionamento" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lettore legacy profilo Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornisce il supporto per la lettura di file X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lettore X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Writer UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aggiornamento della versione da 3.5 a 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aggiornamento della versione da 4.1 a 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aggiornamento della versione da 4.7 a 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Aggiornamento della versione da 4.9 a 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aggiornamento della versione da 3.2 a 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aggiornamento della versione da 2.7 a 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Aggiornamento della versione da 4.11 a 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aggiornamento della versione da 2.6 a 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aggiornamento della versione da 4.8 a 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Aggiornamento della versione da 4.3 a 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aggiornamento della versione da 3.3 a 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aggiornamento della versione da 4.4 a 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aggiornamento della versione da 2.5 a 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aggiornamento della versione da 2.1 a 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Aggiornamento della versione da 4.2 a 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Aggiornamento della versione da 5.2 a 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aggiornamento della versione da 4.0 a 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aggiornamento della versione da 2.2 a 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Aggiornamento della versione da 3.4 a 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Aggiornamento della versione da 4.13 a 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Aggiornamento versione da 5.4 a 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aggiornamento della versione da 4.5 a 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aggiornamento della versione da 3.0 a 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aggiornamento versione da 4.6.2 a 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Aggiornamento versione da 5.3 a 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Estensione che consente la post-elaborazione degli script creati da utente" - -msgctxt "name" -msgid "Post Processing" -msgstr "Post-elaborazione" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vista simulazione" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornisce supporto per l'importazione dei profili Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lettore profilo Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornisce le impostazioni per modello." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Utilità impostazioni per modello" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornisce una fase di anteprima in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase di anteprima" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Cancellazione supporto" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Consente il caricamento e la visualizzazione dei file codice G." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lettore codice G" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Effettua il backup o ripristina la configurazione." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Backup Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin dispositivo di output unità rimovibile" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Profili del materiale" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Azioni della macchina UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Fornisce la vista a raggi X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista ai raggi X" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestisce le connessioni di rete alle stampanti UltiMaker in rete." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Connessione di rete UltiMaker" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Azione Impostazioni macchina" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornisce supporto per la lettura dei file modello." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Mercato" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornisce una fase di controllo in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase di controllo" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lettore di immagine" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aggiornamento firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornisce una fase di preparazione in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase di preparazione" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controlla disponibilità di aggiornamenti firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Controllo aggiornamento firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Scrive il codice G in un file." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Writer codice G" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." - -msgctxt "name" -msgid "Model Checker" -msgstr "Controllo modello" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lettore 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Stampa USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lettore 3MF" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fornisce supporto per l'importazione di profili da file G-Code." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lettore profilo codice G" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Fornisce una normale visualizzazione a griglia compatta." - -msgctxt "name" -msgid "Solid View" -msgstr "Visualizzazione compatta" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Logger sentinella" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Legge il codice G da un archivio compresso." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lettore codice G compresso" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Lettore UFP" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Fornisce il supporto per la scrittura di file 3MF." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Writer 3MF" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Scrive il codice G in un archivio compresso." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer codice G compresso" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fornisce supporto per l'esportazione dei profili Cura." - -msgctxt "@info:title" -msgid "Error" -msgstr "Errore" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annulla" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Impostazioni" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Ulteriori informazioni" - -msgctxt "@title:tab" -msgid "General" -msgstr "Generale" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!" - -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Salvataggio in corso" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Il file esiste già" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tutti i tipi supportati ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Impossibile salvare {0}: {1}" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Avvertenza" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Stampanti" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "File salvato" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Conferma rimozione" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tutti i file (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Bilanciato" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Il profilo equilibrato è progettato per trovare un equilibrio tra produttività, qualità superficiale, proprietà meccaniche e precisione dimensionale." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Fornisce assistenza per l'esportazione di profili Cura." diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 6a344a19791..4b3110e86e5 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Estrusore" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventola di raffreddamento stampa estrusore" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Fine codice G da eseguire quando si passa a questo estrusore." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Estrusore" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Codice G fine estrusore" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Fine codice G da eseguire quando si passa a questo estrusore." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Assoluto posizione fine estrusore" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posizione X fine estrusore" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posizione Y fine estrusore" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventola di raffreddamento stampa estrusore" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Codice G avvio estrusore" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Assoluto posizione avvio estrusore" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X posizione avvio estrusore" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y posizione avvio estrusore" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di partenza estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." + +msgctxt "material description" +msgid "Material" +msgstr "Materiale" + +msgctxt "material label" +msgid "Material" +msgstr "Materiale" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID ugello" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Offset X ugello" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "La coordinata y dell’offset dell’ugello." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Offset Y ugello" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "La coordinata y dell’offset dell’ugello." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." -msgctxt "material label" -msgid "Material" -msgstr "Materiale" - -msgctxt "material description" -msgid "Material" -msgstr "Materiale" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "La coordinata y dell’offset dell’ugello." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "La coordinata y dell’offset dell’ugello." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 9615904f61b..f7a9a9cf363 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5470 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo di macchina" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Distanza da mantenere dai bordi del modello. La stiratura fino in fondo sino al bordo del reticolo può causare la formazione di un bordo frastagliato nella stampa." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Il nome del modello della stampante 3D in uso." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Fattore indicante la quantità di filamento che viene compressa tra l'alimentatore e la camera dell'ugello, usato per stabilire a quale distanza spostare il materiale per un cambio di filamento." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostra varianti macchina" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Un elenco di direzioni linee intere da usare quando gli strati rivestimento superficie superiore utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Un elenco di direzioni linee intere da usare quando gli strati superiori/inferiori utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Codice G avvio" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza l'angolo predefinito di 0 gradi." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "I comandi codice G da eseguire all’avvio, separati da \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Codice G fine" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "I comandi codice G da eseguire alla fine, separati da \n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID materiale" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Un elenco di direzioni linee intere. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi per le linee e la configurazione zig zag e 45 gradi per tutte le altre configurazioni)." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Il GUID del materiale. È impostato automaticamente." +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." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendi il riscaldamento del piano di stampa" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutti i brim entro questa distanza dai fori interni." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendi il riscaldamento dell’ugello" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posizione assoluta di innesco estrusore" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Includi le temperature del materiale" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variazione massima strati adattivi" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Sceglie se includere comandi temperatura ugello all’avvio del codice G. Quando start_gcode contiene già comandi temperatura ugello la parte anteriore di Cura disabilita automaticamente questa impostazione." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Dimensione della topografia dei layer adattivi" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Includi temperatura piano di stampa" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Dimensione variazione strati adattivi" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Sceglie se includere comandi temperatura piano di stampa all’avvio del codice G. Quando start_gcode contiene già comandi temperatura piano di stampa la parte anteriore di Cura disabilita automaticamente questa impostazione." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Larghezza macchina" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare.\n" +"Questa funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La larghezza (direzione X) dell’area stampabile." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondità macchina" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendenza di adesione" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondità (direzione Y) dell’area stampabile." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno espressa in percentuale delle larghezze delle linee del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore al 50% può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già avere superato la parte centrale della parete." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altezza macchina" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore alla metà della parete può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già aver superato la parte centrale della parete." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "L’altezza (direzione Z) dell’area stampabile." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Regola la densità del riempimento della stampa." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma del piano di stampa" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Regola la densità delle parti superiori e inferiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Consente di regolare la densità della struttura di supporto utilizzata per generare le punte dei rami. Un valore più alto si traduce in sbalzi migliori, ma i supporti saranno più difficili da rimuovere. Usa il tetto del supporto per valori molto alti o assicurati che la densità di supporto sia altrettanto alta nella parte superiore." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rettangolare" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ellittica" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiale piano di stampa" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Il materiale del piano di stampa installato sulla stampante." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cristallo" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Dopo il passaggio della macchina da un estrusore all’altro, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. In tal modo si previene il rilascio di materiale fuoriuscito dall’ugello sull’esterno di una stampa." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alluminio" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tutto" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Piano di stampa riscaldato" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Tutti contemporaneamente" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Indica se la macchina ha un piano di stampa riscaldato." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Parete supplementare alternativa" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Rimozione maglie alternate" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alterna direzioni parete" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alluminio" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Tenere sempre nota dello strumento attivo" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Tenere nota dello strumento attivo dopo l'invio di comandi temporanei allo strumento non attivo. Richiesto per la stampa con doppio estrusore con Smoothie o altro firmware con comandi modali dello strumento." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Arretra sempre quando si sposta per iniziare una parete esterna." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origine del centro" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Determina l'entità di offset (o estensione dello strato) applicata a tutti i poligoni su ciascuno strato. I valori positivi possono compensare fori troppo estesi; i valori negativi possono compensare fori troppo piccoli." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "È l'entità di offset (estensione dello strato) applicata a tutti i poligoni di supporto in ciascuno strato. Un valore negativo può compensare lo schiacciamento del primo strato noto come \"zampa di elefante\"." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Numero di estrusori" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "È l'entità di offset (estensione dello strato) applicato a tutti i poligoni di supporto in ciascuno strato. I valori positivi possono appianare le aree di supporto, accrescendone la robustezza." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Entità di offset applicato alle parti inferiori del supporto." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Numero di estrusori abilitati" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Entità di offset applicato alle parti superiori del supporto." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diametro esterno ugello" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Il diametro esterno della punta dell'ugello." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Un aggiunta al raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano un guscio più spesso di cubi piccoli vicino al contorno del modello." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Lunghezza ugello" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maglia anti-sovrapposizione" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posizione retratta anti fuoriuscita di materiale" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angolo ugello" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocità di retrazione anti fuoriuscita del materiale" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lunghezza della zona di riscaldamento" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nei punti in cui i modelli si toccano, viene generata una struttura del fascio ad incastro. Questo migliora l'adesione tra i modelli, soprattutto quelli stampati in materiali diversi." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Aggiramento delle parti stampate durante gli spostamenti" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Abilita controllo temperatura ugello" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Aggiramento dei supporti durante gli spostamenti" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Indietro" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocità di riscaldamento" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Indietro a sinistra" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La velocità (°C/s) alla quale l’ugello si riscalda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Indietro a destra" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocità di raffreddamento" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La velocità (°C/s) alla quale l’ugello si raffredda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Entrambi" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo minimo temperatura di standby" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Entrambi si sovrappongono" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Il tempo minimo in cui un estrusore deve essere inattivo prima che l’ugello si raffreddi. Solo quando un estrusore non è utilizzato per un periodo superiore a questo tempo potrà raffreddarsi alla temperatura di standby." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Strati inferiori" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versione codice G" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Strato iniziale configurazione inferiore" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Il tipo di codice G da generare." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distanza prolunga rivestimento inferiore" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Larghezza rimozione rivestimento inferiore" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (volumetrica)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Spessore degli strati inferiori" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densità del ramo" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diametro del ramo" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Angolo del diametro del ramo" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posizione di retrazione prima della rottura" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocità di retrazione prima della rottura" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura di preparazione alla rottura" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posizione di retrazione per la rottura" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retrazione firmware" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocità di retrazione per la rottura" -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." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura di rottura" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Condivisione del riscaldatore da parte degli estrusori" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Rottura del supporto in pezzi di grandi dimensioni" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Indica se gli estrusori condividono un singolo riscaldatore piuttosto che avere ognuno il proprio." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocità della ventola ponte" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Estrusori condividono ugello" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte a strati multipli" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Indica se gli estrusori condividono un singolo ugello piuttosto che avere ognuno il proprio. Se impostato su true, si prevede che lo script gcode di avvio della stampante imposti tutti gli estrusori su uno stato di retrazione iniziale noto e mutuamente compatibile (nessuno o un solo filamento non retratto); in questo caso lo stato di retrazione iniziale è descritto, per estrusore, dal parametro 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densità del secondo rivestimento esterno ponte" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retrazione iniziale ugello condivisa" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La quantità di filamento di ogni estrusore che si presume sia stata retratta dalla punta dell'ugello condiviso al termine dello script gcode di avvio stampante; il valore deve essere uguale o maggiore della lunghezza della parte comune dei condotti dell'ugello." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flusso del secondo rivestimento esterno ponte" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Aree non consentite" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocità di stampa del secondo rivestimento esterno ponte" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densità del rivestimento esterno ponte" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Aree ugello non consentite" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flusso del rivestimento esterno ponte" -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." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocità di stampa del rivestimento esterno ponte" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Poligono testina macchina e ventola" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Soglia di supporto rivestimento esterno ponte" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forma della testina di stampa. Queste sono le coordinate relative alla posizione della testina di stampa. Questa coincide in genere con la posizione del primo estrusore. Le posizioni a sinistra e davanti alla testina di stampa devono essere coordinate negative." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densità massima del riempimento rado del Bridge" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altezza gantry" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset con estrusore" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posizione assoluta di innesco estrusore" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocità massima X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Indica la velocità massima del motore per la direzione X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocità massima Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Indica la velocità massima del motore per la direzione Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocità massima Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Indica la velocità massima del motore per la direzione Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocità massima E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Indica la velocità massima del filamento." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accelerazione massima X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Indica l’accelerazione massima del motore per la direzione X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accelerazione massima Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Indica l’accelerazione massima del motore per la direzione Y." +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densità del terzo rivestimento esterno ponte" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accelerazione massima Z" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocità della ventola del terzo rivestimento esterno ponte" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Indica l’accelerazione massima del motore per la direzione Z." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flusso del terzo rivestimento esterno ponte" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accelerazione massima filamento" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocità di stampa del terzo rivestimento esterno ponte" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Indica l’accelerazione massima del motore del filamento." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting parete ponte" -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accelerazione predefinita" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flusso della parete ponte" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocità di stampa della parete ponte" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y predefinito" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distanza del Brim" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z predefinito" +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Margine di aggiramento interno del brim" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Indica il jerk predefinito del motore per la direzione Z." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Numero di linee del brim" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk filamento predefinito" +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim solo sull’esterno" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Indica il jerk predefinito del motore del filamento." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim in sostituzione del supporto" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passi per millimetro (X)" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Larghezza del brim" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passi per millimetro (Y)" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Estrusore adesione piano di stampa" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo di adesione piano di stampa" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passi per millimetro (Z)" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiale piano di stampa" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z." +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma del piano di stampa" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passi per millimetro (E)" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura piano di stampa" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza." +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura piano di stampa Strato iniziale" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X in direzione positiva" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura volume di stampa" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)." +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centra oggetto" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y in direzione positiva" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Cambia la geometria del modello stampato in modo da richiedere un supporto minimo. Sbalzi molto inclinati diventeranno sbalzi poco profondi. Le aree di sbalzo scendono per diventare più verticali." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)." +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z in direzione positiva" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocità di Coasting" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume di Coasting" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocità di alimentazione minima" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Il Coasting sostituisce l'ultima parte di un percorso di estrusione con un percorso di spostamento. Il materiale fuoriuscito viene utilizzato per stampare l'ultimo tratto del percorso di estrusione al fine di ridurre i filamenti." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Indica la velocità di spostamento minima della testina di stampa." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modalità Combing" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diametro ruota del tirafilo" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore o effettuare il combing solo nel riempimento." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Il diametro della ruota che guida il materiale nel tirafilo." +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Impostazioni riga di comando" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Scala la velocità della ventola a 0-1" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Scalare la velocità della ventola in modo che sia compresa tra 0 e 1 anziché tra 0 e 256." +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualità" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altezza dello strato" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Indica l’altezza di ciascuno strato in mm. Valori più elevati generano stampe più rapide con risoluzione inferiore, valori più bassi generano stampe più lente con risoluzione superiore." +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altezza dello strato iniziale" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa." +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Larghezza della linea" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentriche" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Indica la larghezza di una linea singola. In generale, la larghezza di ciascuna linea deve corrispondere alla larghezza dell’ugello. Tuttavia, una lieve riduzione di questo valore potrebbe generare stampe migliori." +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angolo del supporto conico" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Larghezza delle linee perimetrali" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Larghezza minima del supporto conico" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Indica la larghezza di una singola linea perimetrale." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Collegamento delle linee di riempimento" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Larghezza delle linee della parete esterna" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Collega poligoni di riempimento" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati." +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Collegamento linee supporto" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Larghezza delle linee della parete interna" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Collegamento Zig Zag supporto" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna." +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Collega poligoni superiori/inferiori" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Larghezza delle linee superiore/inferiore" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Collega i percorsi di riempimento quando corrono uno accanto all’altro. Per le configurazioni di riempimento composte da più poligoni chiusi, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Indica la larghezza di una singola linea superiore/inferiore." +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Larghezza delle linee di riempimento" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Collega le estremità delle linee del supporto. L’abilitazione di questa impostazione consente di ottenere un supporto più robusto e ridurre la sottoestrusione, ma si utilizza più materiale." -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Indica la larghezza di una singola linea di riempimento." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Larghezza delle linee dello skirt/brim" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Indica la larghezza di una singola linea dello skirt o del brim." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno. Smart Hiding consente sia gli angoli interni che quelli esterni ma sceglie con maggiore frequenza gli angoli interni, se opportuno." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Larghezza delle linee di supporto" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converte ogni linea di riempimento in questo numero di linee. Le linee supplementari non si incrociano tra loro, ma si evitano. In tal modo il riempimento risulta più rigido, ma il tempo di stampa e la quantità di materiale aumentano." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Indica la larghezza di una singola linea di supporto." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocità di raffreddamento" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Larghezza della linea dell’interfaccia di supporto" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Raffreddamento" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore." +msgctxt "cooling label" +msgid "Cooling" +msgstr "Raffreddamento" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Larghezza delle linee di supporto superiori" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Incrociata" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Indica la larghezza di una singola linea di supporto superiore." +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Incrociata" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Larghezza della linea di supporto inferiore" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Incrociata 3D" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Indica la larghezza di una singola linea di supporto inferiore." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Dimensioni cavità 3D incrociata" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Larghezza della linea della torre di innesco" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Immagine di densità del riempimento incrociato per il supporto" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Indica la larghezza di una singola linea della torre di innesco." +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Immagine di densità del riempimento incrociato" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Larghezza linea strato iniziale" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Materiale cristallino" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano." +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubo" -msgctxt "shell label" -msgid "Walls" -msgstr "Pareti" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Suddivisione in cubi" -msgctxt "shell description" -msgid "Shell" -msgstr "Guscio" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Guscio suddivisione in cubi" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Estrusore pareti" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ritaglio maglia" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Estrusore parete esterna" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accelerazione predefinita" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla." +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura piano di stampa preimpostata" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Estrusore parete interna" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk filamento predefinito" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla." +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura di stampa preimpostata" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Spessore delle pareti" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y predefinito" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti." +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z predefinito" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Numero delle linee perimetrali" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero." +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Indica il jerk predefinito del motore per la direzione Z." -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lunghezza transizione parete" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Indica il jerk predefinito del motore del filamento." -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Quando si esegue la transizione tra numeri di parete diversi poiché la parte diventa più sottile, viene allocata una determinata quantità di spazio per dividere o unire le linee perimetrali." +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Conteggio distribuzione parete" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina l'ordine di stampa delle pareti. La stampa anticipata delle pareti esterne migliora la precisione dimensionale poiché i guasti dalle pareti interne non possono propagarsi all'esterno. Se si esegue la stampa in un momento successivo, tuttavia, è possibile impilarle meglio quando vengono stampati gli sbalzi. Quando c'è una quantità irregolare di pareti interne totali, l'ultima riga centrale viene sempre stampata per ultima." -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Il numero di pareti, conteggiate dal centro, su cui occorre distribuire la variazione. Valori più bassi indicano che la larghezza delle pareti esterne non cambia." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina la priorità di questa mesh quando si considera la sovrapposizione multipla delle mesh di riempimento. Per le aree con la sovrapposizione di più mesh di riempimento verranno utilizzate le impostazioni della mesh con la classificazione più alta. Una mesh di riempimento con una classificazione più alta modificherà il riempimento delle mesh di riempimento con una classificazione inferiore e delle mesh normali." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angolo di soglia di transizione parete" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quando creare transizioni tra numeri di parete pari e dispari. Una forma a cuneo con un angolo maggiore di questa impostazione non presenta transazioni e nessuna parete verrà stampata al centro per riempire lo spazio rimanente. Riducendo questa impostazione si riduce il numero e la lunghezza di queste pareti centrali, ma potrebbe lasciare spazi vuoti o sovraestrusione." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distanza di filtro transizione parete" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento del diametro sul modello" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margine filtro di transizione parete" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diametro che ogni ramo cerca di ottenere quando raggiunge la piastra di costruzione. Migliora l'adesione al piano." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Impedisce la transizione avanti e indietro tra una parete aggiuntiva e una di meno. Questo margine estende l'intervallo di larghezze linea che segue a [Larghezza minima della linea perimetrale - Margine, 2 * Larghezza minima della linea perimetrale + Margine]. Incrementando questo margine si riduce il numero di transizioni, che riduce il numero di avvii/interruzioni estrusione e durata dello spostamento. Tuttavia, variazioni ampie della larghezza della linea possono portare a problemi di sottoestrusione o sovraestrusione." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Sono previste diverse opzioni che consentono di migliorare l'applicazione dello strato iniziale dell’estrusione e migliorano l’adesione. Il brim aggiunge un'area piana a singolo strato attorno alla base del modello, per evitare deformazioni. Il raft aggiunge un fitto reticolato con un tetto al di sotto del modello. Lo skirt è una linea stampata attorno al modello, ma non collegata al modello." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distanza del riempimento parete esterna" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Aree non consentite" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z." +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Indica la distanza tra le linee di riempimento stampate. Questa impostazione viene calcolata mediante la densità del riempimento e la larghezza della linea di riempimento." -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Inserto parete esterna" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distanza tra le linee della parte inferiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte inferiore del supporto, ma può essere regolata separatamente." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Ottimizzazione sequenza di stampa pareti" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distanza tra le linee della parte superiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte superiore del supporto, ma può essere regolata separatamente." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Ottimizzare la sequenza di stampa delle pareti in modo da ridurre il numero di retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi; alcuni possono richiedere un maggior tempo di esecuzione; si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione. Scegliendo la funzione brim come tipo di adesione del piano di stampa, il primo strato non viene ottimizzato." +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordinamento parete" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina l'ordine di stampa delle pareti. La stampa anticipata delle pareti esterne migliora la precisione dimensionale poiché i guasti dalle pareti interne non possono propagarsi all'esterno. Se si esegue la stampa in un momento successivo, tuttavia, è possibile impilarle meglio quando vengono stampati gli sbalzi. Quando c'è una quantità irregolare di pareti interne totali, l'ultima riga centrale viene sempre stampata per ultima." +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "È la distanza tra la parte superiore del supporto e la stampa." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Dall'interno all'esterno" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dall'esterno all'interno" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Indica la distanza di uno spostamento inserito dopo ogni linea di riempimento, per determinare una migliore adesione del riempimento alle pareti. Questa opzione è simile alla sovrapposizione del riempimento, ma senza estrusione e solo su una estremità della linea di riempimento." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Parete supplementare alternativa" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti." +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Larghezza minima della linea perimetrale" +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." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale." +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Larghezza minima della linea perimetrale pari" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "La larghezza minima della linea per normali pareti poligonali. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di una singola linea perimetrale sottile alla stampa di due linee perimetrali. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea perimetrale pari viene calcolata come Larghezza della linea perimetrale esterna + 0,5 * Larghezza minima della linea perimetrale dispari." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "I punti di distanza vengono spostati per risistemare il percorso" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Larghezza minima della linea perimetrale dispari" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "I punti di distanza vengono spostati per risistemare il percorso" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "La larghezza minima della linea per pareti polilinea di riempimento interstizi linea intermedia. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di due linee perimetrali alla stampa di due pareti esterne e di una singola parete centrale al centro. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea di parete dispari viene calcolata come 2 * Larghezza minima della linea di parete pari." +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Stampa pareti sottili" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altezza del riparo paravento" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello." +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitazione del riparo paravento" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Dimensioni minime della feature" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distanza X/Y del riparo paravento" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Spessore minimo di feature sottili. Le feature modello che sono più sottili di questo valore non verranno stampate, mentre le feature più spesse delle dimensioni minime della feature verranno ampliate fino alla larghezza minima della linea perimetrale." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maglia supporto di discesa" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Larghezza minima della linea perimetrale sottile" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Doppia estrusione" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Larghezza della parete che sostituirà feature sottili (in base alle dimensioni minime della feature) del modello. Se la larghezza minima della linea perimetrale è più sottile dello spessore della feature, la parete diventerà spessa come la feature stessa." +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ellittica" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Espansione orizzontale" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Abilita controllo accelerazione" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Determina l'entità di offset (o estensione dello strato) applicata a tutti i poligoni su ciascuno strato. I valori positivi possono compensare fori troppo estesi; i valori negativi possono compensare fori troppo piccoli." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Abilita impostazioni ponte" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Espansione orizzontale dello strato iniziale" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Abilitazione della funzione di Coasting" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "È l'entità di offset (estensione dello strato) applicata a tutti i poligoni di supporto in ciascuno strato. Un valore negativo può compensare lo schiacciamento del primo strato noto come \"zampa di elefante\"." +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Abilitazione del supporto conico" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Espansione orizzontale dei fori" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Abilitazione del riparo paravento" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Se maggiore di zero, l'espansione orizzontale del foro è la quantità di offset applicata a tutti i fori in ciascun livello. I valori positivi aumentano la dimensione dei fori, i valori negativi riducono la dimensione dei fori. Se questa impostazione è abilitata, può essere ulteriormente regolata con l'opzione del diametro max dell'espansione orizzontale del foro." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Abilita movimento fluido" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diametro massimo di espansione orizzontale dei fori" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Abilita stiratura" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando è maggiore di zero, l'Espansione orizzontale dei fori viene applicata gradualmente sui fori piccoli (i fori piccoli vengono espansi maggiormente). Quando l'opzione è impostata su zero, l'espansione orizzontale sarà applicata a tutti i fori. I fori più grandi del diametro massimo di espansione orizzontale non saranno espansi." +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Abilita controllo jerk" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Allineamento delle giunzioni a Z" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Abilita controllo temperatura ugello" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Punto di partenza di ogni percorso nell'ambito di uno strato. Quando i percorsi in strati consecutivi iniziano nello stesso punto, sulla stampa può apparire una linea di giunzione verticale. Se si allineano in prossimità di una posizione specificata dall’utente, la linea di giunzione può essere rimossa più facilmente. Se disposti in modo casuale, le imprecisioni in corrispondenza dell'inizio del percorso saranno meno evidenti. Prendendo il percorso più breve la stampa sarà più veloce." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Abilitazione del riparo materiale fuoriuscito" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Specificato dall’utente" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Abilitazione blob di innesco" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Il più breve" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Abilitazione torre di innesco" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Casuale" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Abilitazione raffreddamento stampa" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angolo più acuto" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Abilitazione della retrazione" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posizione della cucitura in Z" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Abilitazione brim del supporto" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer." +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Abilitazione parte inferiore supporto" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Indietro a sinistra" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Abilitazione interfaccia supporto" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Indietro" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Indietro a destra" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Abilita l'accelerazione spostamenti" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Destra" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Abilita jerk spostamenti" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avanti a destra" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avanti" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito." -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avanti a sinistra" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Abilita la regolazione del jerk della testina di stampa quando la velocità nell’asse X o Y cambia. Aumentando il jerk il tempo di stampa si riduce a discapito della qualità di stampa." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sinistra" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Abilita la regolazione dell’accelerazione della testina di stampa. Aumentando le accelerazioni il tempo di stampa si riduce a discapito della qualità di stampa." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Giunzione Z X" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Abilita le ventole di raffreddamento durante la stampa. Le ventole migliorano la qualità di stampa sugli strati con tempi per strato più brevi e ponti/sbalzi." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Codice G fine" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Giunzione Z Y" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Lunghezza di svuotamento di fine filamento" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocità di svuotamento di fine filamento" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferenze angolo giunzione" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno. Smart Hiding consente sia gli angoli interni che quelli esterni ma sceglie con maggiore frequenza gli angoli interni, se opportuno." +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "In Tutti i Possibili Punti" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nessuno" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Esclusiva" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Nascondi giunzione" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Sperimentale" msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" msgstr "Esponi giunzione" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Nascondi o esponi giunzione" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Occultamento intelligente" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Riferimento giunzione Z" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Se abilitato, le coordinate della giunzione Z sono riferite al centro di ogni parte. Se disabilitato, le coordinate definiscono una posizione assoluta sul piano di stampa." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Ricucitura completa dei fori" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo il foro con poligoni a contatto. Questa opzione può richiedere lunghi tempi di elaborazione." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Estrusore rivestimento superficie superiore" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Conteggio pareti di riempimento supplementari" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Numero di pareti di rivestimento esterno supplementari" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Strati di rivestimento superficie superiore" +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." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Larghezza linea rivestimento superficie superiore" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Configurazione del rivestimento superficie superiore" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Condivisione del riscaldatore da parte degli estrusori" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Configurazione degli strati superiori." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Estrusori condividono ugello" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificatore della velocità di raffreddamento estrusione" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fattore di correzione della velocità basato sulla larghezza di estrusione. A 0% la velocità di movimento viene mantenuta costante alla velocità di stampa. Al 100% la velocità di movimento viene regolata in modo da mantenere costante il flusso (in mm³/s), ovvero le linee la cui larghezza è metà di quella normale vengono stampate due volte più velocemente e le linee larghe il doppio vengono stampate a metà della velocità. Un valore maggiore di 100% può aiutare a compensare la pressione più alta richiesta per estrudere linee larghe." -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocità della ventola" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordine superficie superiore monotonico" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Override velocità della ventola" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direzioni linea rivestimento superficie superiore" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funzionalità che non sono state ancora precisate completamente." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Un elenco di direzioni linee intere da usare quando gli strati rivestimento superficie superiore utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diametro ruota del tirafilo" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Estrusore superiore/inferiore" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura di stampa finale" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retrazione firmware" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Spessore dello strato superiore/inferiore" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Estrusore del supporto primo strato" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Indica lo spessore degli strati superiore/inferiore nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori/inferiori." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flusso" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Spessore dello strato superiore" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapporto di equalizzazione del flusso" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fattore di compensazione del flusso" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Strati superiori" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Offset massimo dell'estrusione di compensazione del flusso" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafico della temperatura del flusso" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Spessore degli strati inferiori" +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." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensazione del flusso sulle linee inferiori del primo strato" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Strati inferiori" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensazione del flusso sulle linee di riempimento." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Layer inferiori iniziali" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa." -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." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensazione del flusso sulle linee della torre di innesco." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Configurazione dello strato superiore/inferiore" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensazione del flusso sulle linee dello skirt o del brim." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Indica la configurazione degli strati superiori/inferiori." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensazione del flusso sulle linee di supporto inferiore." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensazione del flusso sulle linee di supporto superiore." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensazione del flusso sulle linee di supporto." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensazione del flusso sulla linea a parete più esterna del primo strato." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Strato iniziale configurazione inferiore" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensazione del flusso sulla linea perimetrale più esterna." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "La configurazione al fondo della stampa sul primo strato." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensazione del flusso sulle linee superiore/inferiore." -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensazione del flusso sulle linee di parete per tutte le linee di parete tranne quella più esterna, ma solo per il primo strato" -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Collega poligoni superiori/inferiori" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensazione del flusso sulle linee perimetrali." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordine superiore/inferiore monotonico" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Angolo di movimento del fluido" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distanza di spostamento del movimento del fluido" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direzioni delle linee superiori/inferiori" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Breve distanza di movimento del fluido" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Un elenco di direzioni linee intere da usare quando gli strati superiori/inferiori utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Lunghezza di svuotamento dello scarico" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Larghezza superiore e inferiore delle regioni più piccole" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocità di svuotamento dello scarico" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Le piccole aree superiori/inferiori vengono riempite con muri invece che con il modello superiore/inferiore predefinito. Questo aiuta a evitare movimenti a singhiozzo. Per impostazione predefinita, questa opzione è disattivata per il livello più alto (esposto all'aria) (vedere \"Piccola area inferiore/superiore sulla superficie\")." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale." -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Piccola area inferiore/superiore sulla superficie" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avanti" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avanti a sinistra" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Nessun rivest. est. negli interstizi a Z" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avanti a destra" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando il modello presenta piccoli spazi vuoti verticali composti da un numero ridotto di strati, intorno a questi strati di norma dovrebbe essere presente un rivestimento esterno nell'interstizio. Abilitare questa impostazione per non generare il rivestimento esterno se l'interstizio verticale è molto piccolo. Ciò consente di migliorare il tempo di stampa e il tempo di sezionamento, ma dal punto di vista tecnico lascia il riempimento esposto all'aria." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Piena altezza" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Numero di pareti di rivestimento esterno supplementari" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rivestimento esterno incoerente (fuzzy)" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densità del rivestimento esterno incoerente (fuzzy)" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Abilita stiratura" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Fuzzy Skin solo all'esterno" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Andare ancora una volta sulla superficie superiore, questa volta estrudendo una piccolissima quantità di materiale. Lo scopo è quello di sciogliere ulteriormente la plastica sulla parte superiore, creando una superficie più liscia. La pressione nella camera dell'ugello viene mantenuta elevata, in modo che le grinze nella superficie siano riempite con il materiale." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Stiramento del solo strato più elevato" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia." +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versione codice G" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Configurazione di stiratura" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"I comandi codice G da eseguire alla fine, separati da \n" +"." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Configurazione utilizzata per la stiratura della superficie superiore." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"I comandi codice G da eseguire all’avvio, separati da \n" +"." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Il GUID del materiale. È impostato automaticamente." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altezza gantry" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordine di stiratura monotonico" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generazione della struttura a incastro" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generazione supporto" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Spaziatura delle linee di stiratura" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genera un brim entro le zone di riempimento del supporto del primo strato. Questo brim viene stampato al di sotto del supporto, non intorno ad esso. L’abilitazione di questa impostazione aumenta l’adesione del supporto al piano di stampa." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distanza tra le linee di stiratura." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Genera un’interfaccia densa tra il modello e il supporto. Questo crea un rivestimento esterno sulla sommità del supporto su cui viene stampato il modello e al fondo del supporto, dove appoggia sul modello." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flusso di stiratura" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Quantità di materiale, relativo ad una normale linea del rivestimento, da estrudere durante la stiratura. Mantenere l'ugello pieno aiuta a riempire alcune delle fessure presenti sulla superficie superiore, ma una quantità eccessiva comporta un'estrusione eccessiva con conseguente puntinatura sui lati della superficie." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserto di stiratura" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Distanza da mantenere dai bordi del modello. La stiratura fino in fondo sino al bordo del reticolo può causare la formazione di un bordo frastagliato nella stampa." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cristallo" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocità di stiratura" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Andare ancora una volta sulla superficie superiore, questa volta estrudendo una piccolissima quantità di materiale. Lo scopo è quello di sciogliere ulteriormente la plastica sulla parte superiore, creando una superficie più liscia. La pressione nella camera dell'ugello viene mantenuta elevata, in modo che le grinze nella superficie siano riempite con il materiale." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Velocità alla quale passare sopra la superficie superiore." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altezza fasi di riempimento graduale" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accelerazione di stiratura" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Fasi di riempimento graduale" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L’accelerazione con cui viene effettuata la stiratura." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altezza fasi di riempimento graduale del supporto" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk stiratura" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Fasi di riempimento graduale del supporto" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Riduci gradualmente questa temperatura quando si stampa a velocità ridotte a causa del tempo di strato minimo." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Percentuale di sovrapposizione del rivestimento esterno" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno espressa in percentuale delle larghezze delle linee del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore al 50% può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già avere superato la parte centrale della parete." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sovrapposizione del rivestimento esterno" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore alla metà della parete può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già aver superato la parte centrale della parete." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Larghezza rimozione rivestimento" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Griglia" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore/inferiore sulle superfici inclinate del modello." +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Larghezza rimozione rivestimento superiore" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Raggruppa le pareti esterne" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore sulle superfici inclinate del modello." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Larghezza rimozione rivestimento inferiore" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento inferiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento inferiore sulle superfici inclinate del modello." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Piano di stampa riscaldato" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distanza prolunga rivestimento esterno" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocità di riscaldamento" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti degli strati adiacenti. Valori minori consentono di risparmiare sul materiale utilizzato." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lunghezza della zona di riscaldamento" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distanza prolunga rivestimento superiore" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo." -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti superiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato superiore. Valori minori consentono di risparmiare sul materiale utilizzato." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Nascondi giunzione" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distanza prolunga rivestimento inferiore" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Nascondi o esponi giunzione" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti inferiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato inferiore. Valori minori consentono di risparmiare sul materiale utilizzato." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Espansione orizzontale dei fori" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angolo massimo rivestimento esterno per prolunga" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diametro massimo di espansione orizzontale dei fori" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Nelle superfici superiore e/o inferiore dell'oggetto con un angolo più grande di questa impostazione, il rivestimento esterno non sarà prolungato. Questo evita il prolungamento delle aree del rivestimento esterno strette che vengono create quando la pendenza della superficie del modello è quasi verticale. Un angolo di 0° è orizzontale e non causa il prolungamento di alcun rivestimento esterno, mentre un angolo di 90° è verticale e causa il prolungamento di tutto il rivestimento esterno." +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Larghezza minima rivestimento esterno per prolunga" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Espansione orizzontale" -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." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala orizzontale per la compensazione della contrazione" -msgctxt "infill label" -msgid "Infill" -msgstr "Riempimento" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento." -msgctxt "infill description" -msgid "Infill" -msgstr "Riempimento" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Estrusore riempimento" +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." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densità del riempimento" +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." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Regola la densità del riempimento della stampa." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distanza tra le linee di riempimento" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Velocità di adescamento del materiale dopo la sostituzione di una bobina vuota con una nuova dello stesso materiale." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Indica la distanza tra le linee di riempimento stampate. Questa impostazione viene calcolata mediante la densità del riempimento e la larghezza della linea di riempimento." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Velocità di adescamento del materiale dopo il passaggio a un materiale diverso." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Configurazione di riempimento" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Tempo per il quale è possibile mantenere il materiale all'esterno di un luogo di conservazione asciutto in sicurezza." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto." +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-esagonale" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) durante la sostituzione di una bobina vuota con una nuova dello stesso materiale." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubo" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) quando si passa a un materiale diverso." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Suddivisione in cubi" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La quantità di filamento di ogni estrusore che si presume sia stata retratta dalla punta dell'ugello condiviso al termine dello script gcode di avvio stampante; il valore deve essere uguale o maggiore della lunghezza della parte comune dei condotti dell'ugello." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Ottagonale" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Come interagiranno l'interfaccia di supporto e il supporto quando si sovrappongono. Attualmente implementato solo per il tetto di supporto." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto di cubo" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Entità dell'altezza di un ramo se è posizionato sul modello. Previene piccoli blob di supporto. Questa impostazione viene ignorata quando un ramo supporta un tetto di supporto." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +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." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se un segmento del percorso utensile devia più di questo angolo dal movimento generale, viene risistemato." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Incrociata" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se abilitata, il secondo e il terzo strato sopra l’aria vengono stampati utilizzando le seguenti impostazioni. In caso contrario, questi strati vengono stampati utilizzando le impostazioni normali." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Incrociata 3D" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Fulmine" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Collegamento delle linee di riempimento" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Includi temperatura piano di stampa" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Includi le temperature del materiale" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Collega poligoni di riempimento" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Collega i percorsi di riempimento quando corrono uno accanto all’altro. Per le configurazioni di riempimento composte da più poligoni chiusi, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento." +msgctxt "infill description" +msgid "Infill" +msgstr "Riempimento" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direzioni delle linee di riempimento" +msgctxt "infill label" +msgid "Infill" +msgstr "Riempimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accelerazione riempimento" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Un elenco di direzioni linee intere. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi per le linee e la configurazione zig zag e 45 gradi per tutte le altre configurazioni)." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Riempimento prima delle pareti" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Offset X riempimento" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densità del riempimento" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Il riempimento si sposta di questa distanza lungo l'asse X." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Estrusore riempimento" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Offset Y riempimento" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flusso di riempimento" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk riempimento" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Avvio con riempimento casuale" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Decidere in modo casuale quale sarà la linea di riempimento ad essere stampata per prima. In tal modo si evita che un segmento diventi il più resistente sebbene si esegua uno spostamento aggiuntivo." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direzioni delle linee di riempimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distanza tra le linee di riempimento" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Moltiplicatore delle linee di riempimento" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converte ogni linea di riempimento in questo numero di linee. Le linee supplementari non si incrociano tra loro, ma si evitano. In tal modo il riempimento risulta più rigido, ma il tempo di stampa e la quantità di materiale aumentano." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Conteggio pareti di riempimento supplementari" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Larghezza delle linee di riempimento" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare.\nQuesta funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maglia di riempimento" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Guscio suddivisione in cubi" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angolo di sbalzo del riempimento" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Un aggiunta al raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano un guscio più spesso di cubi piccoli vicino al contorno del modello." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sovrapposizione del riempimento" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Percentuale di sovrapposizione del riempimento" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Configurazione di riempimento" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sovrapposizione del riempimento" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocità di riempimento" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supporto riempimento" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Ottimizzazione spostamenti riempimento" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Distanza del riempimento" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Indica la distanza di uno spostamento inserito dopo ogni linea di riempimento, per determinare una migliore adesione del riempimento alle pareti. Questa opzione è simile alla sovrapposizione del riempimento, ma senza estrusione e solo su una estremità della linea di riempimento." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Offset X riempimento" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Offset Y riempimento" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Indica lo spessore per strato di materiale di riempimento. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Layer inferiori iniziali" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Fasi di riempimento graduale" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocità iniziale della ventola" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto degli strati superiori. Le aree più vicine agli strati superiori avranno una densità maggiore, fino alla densità del riempimento." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accelerazione dello strato iniziale" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altezza fasi di riempimento graduale" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flusso inferiore dello strato iniziale" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diametro dello strato iniziale" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Riempimento prima delle pareti" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flusso dello strato iniziale" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altezza dello strato iniziale" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Area minima riempimento" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Espansione orizzontale dello strato iniziale" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flusso della parete interna dello strato iniziale" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supporto riempimento" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk dello strato iniziale" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Stampare le strutture di riempimento solo laddove è necessario supportare le sommità del modello. L'abilitazione di questa funzione riduce il tempo di stampa e l'utilizzo del materiale, ma comporta una disuniforme resistenza dell'oggetto." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Larghezza linea strato iniziale" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angolo di sbalzo del riempimento" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flusso della parete esterna dello strato iniziale" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "L'angolo minimo degli sbalzi interni per il quale viene aggiunto il riempimento. Per un valore corrispondente a 0°, gli oggetti sono completamente riempiti di materiale, per un valore corrispondente a 90° non è previsto riempimento." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accelerazione di stampa strato iniziale" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Spessore del supporto del bordo del rivestimento" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk di stampa strato iniziale" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Spessore del riempimento supplementare che supporta i bordi del rivestimento." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocità di stampa strato iniziale" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Layer di supporto del bordo del rivestimento" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocità di stampa dello strato iniziale" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distanza tra le linee del supporto dello strato iniziale" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angolo di supporto riempimento fulmine" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accelerazione spostamenti dello strato iniziale" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk spostamenti dello strato iniziale" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angolo di sbalzo riempimento fulmine" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocità di spostamento dello strato iniziale" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Sovrapposizione Primo Strato" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angolo eliminazione riempimento fulmine" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura di stampa iniziale" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di queste linee." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accelerazione parete interna" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Estrusore parete interna" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk parete interna" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocità di stampa della parete interna" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angolo di raddrizzatura riempimento fulmine" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flusso pareti interne" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Larghezza delle linee della parete interna" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura di stampa preimpostata" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La temperatura preimpostata utilizzata per la stampa. Deve essere la temperatura “base” di un materiale. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Dall'interno all'esterno" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura volume di stampa" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linee di interfaccia preferite" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interfaccia preferita" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura di stampa" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Conteggio degli strati delle travi ad incastro" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Indica la temperatura usata per la stampa." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Larghezza della trave a incastro" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura di stampa Strato iniziale" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenzione incastro dei bordi" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondità di incastro" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura di stampa iniziale" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientamento della struttura ad incastro" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Stiramento del solo strato più elevato" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura di stampa finale" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accelerazione di stiratura" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flusso di stiratura" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificatore della velocità di raffreddamento estrusione" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserto di stiratura" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Indica l'incremento di velocità di raffreddamento dell'ugello in fase di estrusione. Lo stesso valore viene usato per indicare la perdita di velocità di riscaldamento durante il riscaldamento in fase di estrusione." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk stiratura" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura piano di stampa preimpostata" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Spaziatura delle linee di stiratura" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "La temperatura preimpostata utilizzata per il piano di stampa. Deve essere la temperatura “base” di un piano di stampa. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Configurazione di stiratura" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura piano di stampa" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocità di stiratura" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Indica la temperatura utilizzata per il piano di stampa riscaldato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origine del centro" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura piano di stampa Strato iniziale" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "È un materiale di supporto" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato per il primo strato." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendenza di adesione" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Questo materiale viene normalmente utilizzato come materiale di supporto durante la stampa." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendenza di adesione superficiale." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Distorce solo i profili delle parti, non i fori di queste." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia superficiale" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantenimento delle superfici scollegate" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia superficiale." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altezza dello strato" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala per la compensazione della contrazione" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Avvio strato X" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Avvio strato Y" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala orizzontale per la compensazione della contrazione" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione XY (orizzontalmente)." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "È lo spessore dello strato intermedio del raft." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala verticale per la compensazione della contrazione" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "È lo spessore degli strati superiori del raft." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione Z (verticalmente)." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Materiale cristallino" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sinistra" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Sollevamento della testina" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posizione retratta anti fuoriuscita di materiale" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Fulmine" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angolo di sbalzo riempimento fulmine" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocità di retrazione anti fuoriuscita del materiale" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angolo eliminazione riempimento fulmine" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angolo di raddrizzatura riempimento fulmine" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posizione di retrazione prima della rottura" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angolo di supporto riempimento fulmine" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limite di portata dei rami" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocità di retrazione prima della rottura" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" -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." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura di preparazione alla rottura" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitazione in altezza" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La temperatura utilizzata per scaricare il materiale. deve essere più o meno uguale alla massima temperatura di stampa possibile." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Larghezza della linea" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posizione di retrazione per la rottura" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocità di retrazione per la rottura" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura di rottura" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linee" -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." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocità di svuotamento dello scarico" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Velocità di adescamento del materiale dopo il passaggio a un materiale diverso." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linee" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Lunghezza di svuotamento dello scarico" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) quando si passa a un materiale diverso." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocità di svuotamento di fine filamento" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondità macchina" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Velocità di adescamento del materiale dopo la sostituzione di una bobina vuota con una nuova dello stesso materiale." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Poligono testina macchina e ventola" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Lunghezza di svuotamento di fine filamento" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altezza macchina" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) durante la sostituzione di una bobina vuota con una nuova dello stesso materiale." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo di macchina" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durata di posizionamento massima" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Larghezza macchina" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Tempo per il quale è possibile mantenere il materiale all'esterno di un luogo di conservazione asciutto in sicurezza." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fattore di spostamento senza carico" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendi stampabile lo sbalzo" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Fattore indicante la quantità di filamento che viene compressa tra l'alimentatore e la camera dell'ugello, usato per stabilire a quale distanza spostare il materiale per un cambio di filamento." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flusso" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flusso della parete" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensazione del flusso sulle linee perimetrali." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flusso della parete esterna" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendere le maglie più indicate alla stampa 3D." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensazione del flusso sulla linea perimetrale più esterna." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flusso pareti interne" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (volumetrica)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flusso superiore/inferiore" +msgctxt "material description" +msgid "Material" +msgstr "Materiale" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensazione del flusso sulle linee superiore/inferiore." +msgctxt "material label" +msgid "Material" +msgstr "Materiale" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flusso rivestimento esterno superficie superiore" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID materiale" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume di materiale tra le operazioni di pulitura" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flusso di riempimento" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Massima distanza di combing senza retrazione" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensazione del flusso sulle linee di riempimento." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accelerazione massima X" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flusso dello skirt/brim" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accelerazione massima Y" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensazione del flusso sulle linee dello skirt o del brim." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accelerazione massima Z" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flusso del supporto" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Angolo massimo dei rami" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensazione del flusso sulle linee di supporto." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Deviazione massima" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flusso interfaccia di supporto" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Deviazione massima dell'area di estrusione" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocità massima della ventola" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flusso supporto superiore" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accelerazione massima filamento" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensazione del flusso sulle linee di supporto superiore." +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Massimo angolo modello" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flusso supporto inferiore" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Area foro di sbalzo massima" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durata di posizionamento massima" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensazione del flusso sulle linee di supporto inferiore." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Risoluzione massima" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flusso torre di innesco" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Numero massimo di retrazioni" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensazione del flusso sulle linee della torre di innesco." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angolo massimo rivestimento esterno per prolunga" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flusso dello strato iniziale" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocità massima E" -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." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocità massima X" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Flusso della parete interna dello strato iniziale" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocità massima Y" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensazione del flusso sulle linee di parete per tutte le linee di parete tranne quella più esterna, ma solo per il primo strato" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocità massima Z" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Flusso della parete esterna dello strato iniziale" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diametro supportato dalla torre" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensazione del flusso sulla linea a parete più esterna del primo strato." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Risoluzione massima di spostamento" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Flusso inferiore dello strato iniziale" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Indica l’accelerazione massima del motore per la direzione X" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensazione del flusso sulle linee inferiori del primo strato" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Indica l’accelerazione massima del motore per la direzione Y." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura di Standby" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Indica l’accelerazione massima del motore per la direzione Z." -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." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Indica l’accelerazione massima del motore del filamento." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "È un materiale di supporto" +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 "Densità massima del riempimento considerato rado. Il rivestimento esterno sul riempimento rado è considerato non supportato; pertanto potrebbe essere trattato come rivestimento esterno ponte." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Questo materiale viene normalmente utilizzato come materiale di supporto durante la stampa." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale." -msgctxt "speed label" -msgid "Speed" -msgstr "Velocità" +msgctxt "max_extrusion_before_wipe description" +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 "Il massimo volume di materiale che può essere estruso prima di iniziare un'altra operazione di pulitura ugello. Se questo valore è inferiore al volume del materiale richiesto in un layer, l'impostazione non ha effetto in questo layer, vale a dire che si limita a una pulitura per layer." -msgctxt "speed description" -msgid "Speed" -msgstr "Velocità" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sovrapposizione maglie" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocità di stampa" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correzioni delle maglie" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Indica la velocità alla quale viene effettuata la stampa." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posizione maglia X" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocità di riempimento" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posizione maglia Y" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Indica la velocità alla quale viene stampato il riempimento." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posizione maglia Z" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocità di stampa della parete" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Classificazione dell'elaborazione delle maglie" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Indica la velocità alla quale vengono stampate le pareti." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrice rotazione maglia" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Intermedia" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Indica la velocità alla quale vengono stampate le pareti più esterne. La stampa della parete esterna ad una velocità inferiore migliora la qualità finale del rivestimento. Tuttavia, una grande differenza tra la velocità di stampa della parete interna e quella della parete esterna avrà effetti negativi sulla qualità." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Larghezza minimo dello stampo" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocità di stampa della parete interna" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo minimo temperatura di standby" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Lunghezza minima parete ponte" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocità del rivestimento superficie" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Larghezza minima della linea perimetrale pari" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Indica la velocità di stampa degli strati superiori." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Finestra di minima distanza di estrusione" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocità di stampa delle parti superiore/inferiore" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Dimensioni minime della feature" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocità di alimentazione minima" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocità di stampa del supporto" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altezza minima rispetto al modello" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Indica la velocità alla quale viene stampata la struttura di supporto. La stampa della struttura di supporto a velocità elevate può ridurre considerevolmente i tempi di stampa. La qualità superficiale della struttura di supporto di norma non riveste grande importanza in quanto viene rimossa dopo la stampa." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Area minima riempimento" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocità di riempimento del supporto" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo minimo per strato" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Larghezza minima della linea perimetrale dispari" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocità interfaccia supporto" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonferenza minima dei poligoni" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocità alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Larghezza minima rivestimento esterno per prolunga" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocità di stampa della parte superiore (tetto) del supporto" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocità minima" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Area minima supporto" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocità di stampa della parte inferiore del supporto" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Area minima parti inferiori supporto" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Velocità alla quale viene stampata la parte inferiore del supporto. La stampa ad una velocità inferiore può migliorare l'adesione del supporto nella parte superiore del modello." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Area minima interfaccia supporto" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocità della torre di innesco" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Area minima parti superiori supporto" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distanza X/Y supporto minima" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Indica la velocità alla quale è stampata la torre di innesco. La stampa della torre di innesco a una velocità inferiore può renderla maggiormente stabile quando l’adesione tra i diversi filamenti non è ottimale." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Larghezza minima della linea perimetrale sottile" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocità degli spostamenti" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimo prima del Coasting" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Larghezza minima della linea perimetrale" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocità di stampa dello strato iniziale" +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." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La velocità dello strato iniziale. È consigliabile un valore inferiore per migliorare l'adesione al piano di stampa. Non influisce sulle strutture di adesione del piano di stampa stesse, come brim e raft." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocità di stampa strato iniziale" +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." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa." +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." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocità di spostamento dello strato iniziale" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Spessore minimo di feature sottili. Le feature modello che sono più sottili di questo valore non verranno stampate, mentre le feature più spesse delle dimensioni minime della feature verranno ampliate fino alla larghezza minima della linea perimetrale." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Indica la velocità di spostamento per lo strato iniziale. Un valore inferiore è consigliabile per evitare di rimuovere le parti precedentemente stampate dal piano di stampa. Il valore di questa impostazione può essere calcolato automaticamente dal rapporto tra la velocità di spostamento e la velocità di stampa." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocità dello skirt/brim" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Stampo" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Indica la velocità a cui sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta alla velocità di stampa dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad una velocità diversa." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angolo stampo" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocità di sollevamento Z" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altezza parte superiore dello stampo" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Velocità alla quale viene eseguito il movimento Z verticale per i sollevamenti in Z. In genere è inferiore alla velocità di stampa, dal momento che il piano o il corpo di stampa della macchina sono più difficili da spostare." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordine di stiratura monotonico" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Numero di strati stampati a velocità inferiore" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordine superficie superiore monotonico" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "I primi strati vengono stampati più lentamente rispetto al resto del modello, per ottenere una migliore adesione al piano di stampa ed ottimizzare nel complesso la percentuale di successo delle stampe. La velocità aumenta gradualmente nel corso di esecuzione degli strati successivi." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordine superiore/inferiore monotonico" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapporto di equalizzazione del flusso" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Più linee di skirt contribuiscono a migliorare l'avvio dell'estrusione per modelli di piccole dimensioni. L'impostazione di questo valore a 0 disattiverà la funzione skirt." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fattore di correzione della velocità basato sulla larghezza di estrusione. A 0% la velocità di movimento viene mantenuta costante alla velocità di stampa. Al 100% la velocità di movimento viene regolata in modo da mantenere costante il flusso (in mm³/s), ovvero le linee la cui larghezza è metà di quella normale vengono stampate due volte più velocemente e le linee larghe il doppio vengono stampate a metà della velocità. Un valore maggiore di 100% può aiutare a compensare la pressione più alta richiesta per estrudere linee larghe." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Abilita controllo accelerazione" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fattore di spostamento senza carico" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Abilita la regolazione dell’accelerazione della testina di stampa. Aumentando le accelerazioni il tempo di stampa si riduce a discapito della qualità di stampa." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Nessun rivest. est. negli interstizi a Z" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Abilita l'accelerazione spostamenti" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modi non tradizionali di stampare i modelli." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Usa una velocità di accelerazione separata per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di accelerazione della linea stampata alla destinazione." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nessuno" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accelerazione di stampa" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nessuno" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L’accelerazione con cui avviene la stampa." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normale" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accelerazione riempimento" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normale" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L’accelerazione con cui viene stampato il riempimento." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto codice G in nessun altro modo." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accelerazione parete" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Non nel rivestimento" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Non su superficie esterna" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accelerazione parete esterna" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angolo ugello" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accelerazione parete interna" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Aree ugello non consentite" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accelerazione del rivestimento superficie superiore" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lunghezza ugello" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accelerazione strato superiore/inferiore" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocità innesco cambio ugello" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocità di retrazione cambio ugello" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accelerazione supporto" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distanza di retrazione cambio ugello" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocità di retrazione cambio ugello" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accelerazione riempimento supporto" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Numero di estrusori" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Numero di estrusori abilitati" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accelerazione interfaccia supporto" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Numero di strati stampati a velocità inferiore" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Accelerazione alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accelerazione parte superiore del supporto" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accelerazione parte inferiore del supporto" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto degli strati superiori. Le aree più vicine agli strati superiori avranno una densità maggiore, fino alla densità del riempimento." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Accelerazione alla quale vengono stampate le parti inferiori del supporto. La stampa ad una accelerazione inferiore può migliorare l'adesione del supporto nella parte superiore del modello." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto delle superfici superiori. Le aree più vicine alle superfici superiori avranno una densità maggiore, fino alla densità del riempimento." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accelerazione della torre di innesco" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Ottagonale" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Disinserita" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accelerazione spostamenti" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset applicato all’oggetto per la direzione X." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset applicato all’oggetto per la direzione Y." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accelerazione dello strato iniziale" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Indica l’accelerazione dello strato iniziale." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset con estrusore" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accelerazione di stampa strato iniziale" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Sul piano di stampa, quando possibile" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Indica l’accelerazione durante la stampa dello strato iniziale." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sul modello, se necessario" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accelerazione spostamenti dello strato iniziale" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Uno alla volta" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Esegue solo uno Z Hop quando si sposta sopra le parti stampate che non possono essere evitate mediante uno spostamento orizzontale con Aggiramento delle parti stampate durante lo spostamento." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accelerazione skirt/brim" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Indica l’accelerazione alla quale sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta all’accelerazione dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad un’accelerazione diversa." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Abilita controllo jerk" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angolo del riparo materiale fuoriuscito" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Abilita la regolazione del jerk della testina di stampa quando la velocità nell’asse X o Y cambia. Aumentando il jerk il tempo di stampa si riduce a discapito della qualità di stampa." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distanza del riparo materiale fuoriuscito" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Abilita jerk spostamenti" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Intervallo ottimale dei rami" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Usa un tasso di jerk separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di jerk della linea stampata alla destinazione." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Ottimizzazione sequenza di stampa pareti" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk stampa" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Ottimizzare la sequenza di stampa delle pareti in modo da ridurre il numero di retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi; alcuni possono richiedere un maggior tempo di esecuzione; si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione. Scegliendo la funzione brim come tipo di adesione del piano di stampa, il primo strato non viene ottimizzato." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Indica il cambio della velocità istantanea massima della testina di stampa." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diametro esterno ugello" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk riempimento" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accelerazione parete esterna" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Estrusore parete esterna" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk parete" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flusso della parete esterna" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Inserto parete esterna" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Jerk parete esterna" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Larghezza delle linee della parete esterna" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk parete interna" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distanza del riempimento parete esterna" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk del rivestimento superficie superiore" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dall'esterno all'interno" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk strato superiore/inferiore" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angolo parete di sbalzo" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocità parete di sbalzo" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk supporto" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa dopo ripristino." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk riempimento supporto" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk interfaccia supporto" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Percentuale della velocità della ventola da usare quando si stampano le zone del rivestimento esterno subito sopra il supporto. L’uso di una velocità ventola elevata può facilitare la rimozione del supporto." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk parte superiore del supporto" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "I poligoni in strati sezionati con una circonferenza inferiore a questo valore verranno scartati. I valori inferiori generano una maglia con risoluzione superiore al costo del tempo di sezionamento. È dedicata in particolare alle stampanti SLA ad alta risoluzione e a modelli 3D molto piccoli, ricchi di dettagli." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori." +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Angolo dei rami preferito" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk parte inferiore del supporto" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Impedisce la transizione avanti e indietro tra una parete aggiuntiva e una di meno. Questo margine estende l'intervallo di larghezze linea che segue a [Larghezza minima della linea perimetrale - Margine, 2 * Larghezza minima della linea perimetrale + Margine]. Incrementando questo margine si riduce il numero di transizioni, che riduce il numero di avvii/interruzioni estrusione e durata dello spostamento. Tuttavia, variazioni ampie della larghezza della linea possono portare a problemi di sottoestrusione o sovraestrusione." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accelerazione della torre di innesco" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flusso torre di innesco" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "Jerk della torre di innesco" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk spostamenti" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Larghezza della linea della torre di innesco" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimo torre di innesco" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk dello strato iniziale" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Dimensioni torre di innesco" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk di stampa strato iniziale" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocità della torre di innesco" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posizione X torre di innesco" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk spostamenti dello strato iniziale" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posizione Y torre di innesco" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk dello skirt/brim" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accelerazione di stampa" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim." +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk stampa" -msgctxt "travel label" -msgid "Travel" -msgstr "Spostamenti" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequenza di stampa" -msgctxt "travel description" -msgid "travel" -msgstr "spostamenti" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocità di stampa" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Abilitazione della retrazione" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Stampa pareti sottili" -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." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrazione al cambio strato" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Stampare le strutture di riempimento solo laddove è necessario supportare le sommità del modello. L'abilitazione di questa funzione riduce il tempo di stampa e l'utilizzo del materiale, ma comporta una disuniforme resistenza dell'oggetto." -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." +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distanza di retrazione" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa." -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." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocità di retrazione" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte." -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." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocità di retrazione" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie." -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." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocità di innesco dopo la retrazione" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." -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." +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura di stampa" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Entità di innesco supplementare dopo la retrazione" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura di stampa Strato iniziale" -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." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Stampare la linea più interna dello skirt con più strati facilita la rimozione dello skirt stesso." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Distanza minima di retrazione" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti." -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." +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualità" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Numero massimo di retrazioni" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto di cubo" -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." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Finestra di minima distanza di estrusione" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Traferro del raft" -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." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Estrusore della base del raft" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modalità Combing" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocità della ventola per la base del raft" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore o effettuare il combing solo nel riempimento." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Spaziatura delle linee dello strato di base del raft" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Disinserita" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Larghezza delle linee dello strato di base del raft" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tutto" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accelerazione di stampa della base del raft" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Non su superficie esterna" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk di stampa della base del raft" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Non nel rivestimento" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocità di stampa della base del raft" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Nel riempimento" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Spessore della base del raft" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Massima distanza di combing senza retrazione" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Conteggio parete base del raft" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margine extra del raft" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrazione prima della parete esterna" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocità della ventola per il raft" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Arretra sempre quando si sposta per iniziare una parete esterna." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Estrusore intermedio del raft" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Aggiramento delle parti stampate durante gli spostamenti" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocità della ventola per il raft intermedio" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Strati intermedi del raft" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Aggiramento dei supporti durante gli spostamenti" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Larghezza delle linee dello strato intermedio del raft" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing." +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accelerazione di stampa raft intermedio" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distanza di aggiramento durante gli spostamenti" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk di stampa raft intermedio" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocità di stampa raft intermedio" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Avvio strato X" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Spaziatura dello strato intermedio del raft" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Spessore dello strato intermedio del raft" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Avvio strato Y" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accelerazione di stampa del raft" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk stampa del raft" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z Hop durante la retrazione" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocità di stampa del raft" -msgctxt "retraction_hop_enabled 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. Previene l’urto dell’ugello sulla stampa durante gli spostamenti riducendo la possibilità di far cadere la stampa dal piano." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Smoothing raft" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z Hop solo su parti stampate" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Estrusore superiore del raft" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Esegue solo uno Z Hop quando si sposta sopra le parti stampate che non possono essere evitate mediante uno spostamento orizzontale con Aggiramento delle parti stampate durante lo spostamento." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocità della ventola per la parte superiore del raft" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altezza Z Hop" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Spessore dello strato superiore del raft" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Strati superiori del raft" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z Hop dopo cambio estrusore" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Larghezza delle linee superiori del raft" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Dopo il passaggio della macchina da un estrusore all’altro, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. In tal modo si previene il rilascio di materiale fuoriuscito dall’ugello sull’esterno di una stampa." +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accelerazione di stampa parte superiore del raft" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z Hop dopo cambio altezza estrusore" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk di stampa parte superiore del raft" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocità di stampa parte superiore del raft" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Raffreddamento" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Spaziatura superiore del raft" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Raffreddamento" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Casuale" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Abilitazione raffreddamento stampa" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Avvio con riempimento casuale" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Abilita le ventole di raffreddamento durante la stampa. Le ventole migliorano la qualità di stampa sugli strati con tempi per strato più brevi e ponti/sbalzi." +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Decidere in modo casuale quale sarà la linea di riempimento ad essere stampata per prima. In tal modo si evita che un segmento diventi il più resistente sebbene si esegua uno spostamento aggiuntivo." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocità della ventola" +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)." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa." +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rettangolare" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Velocità regolare della ventola" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Indica la velocità alla quale ruotano le ventole prima di raggiungere la soglia. Quando uno strato viene stampato a una velocità superiore alla soglia, la velocità della ventola tende gradualmente verso la velocità massima della ventola." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocità massima della ventola" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocità regolare della ventola in altezza" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Indica la velocità di rotazione della ventola al tempo minimo per strato. La velocità della ventola aumenta gradualmente tra la velocità regolare della ventola e la velocità massima della ventola quando viene raggiunta la soglia." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocità regolare della ventola in corrispondenza dello strato" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Soglia velocità regolare/massima della ventola" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Indica il tempo per strato che definisce la soglia tra la velocità regolare e quella massima della ventola. Gli strati che vengono stampati a una velocità inferiore a questo valore utilizzano una velocità regolare della ventola. Per gli strati stampati più velocemente la velocità della ventola aumenta gradualmente verso la velocità massima della ventola." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Estrusione relativa" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocità iniziale della ventola" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Rimozione di tutti i fori" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "La velocità di rotazione della ventola all’inizio della stampa. Negli strati successivi la velocità della ventola aumenta gradualmente da zero fino allo strato corrispondente alla velocità regolare in altezza." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Rimuovere i primi strati vuoti" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocità regolare della ventola in altezza" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rimuovi intersezione maglie" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Indica l’altezza alla quale la ventola ruota alla velocità regolare. Agli strati stampati a velocità inferiore la velocità della ventola aumenta gradualmente dalla velocità iniziale a quella regolare." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Rimuovi angoli interni raft" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocità regolare della ventola in corrispondenza dello strato" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Indica lo strato in corrispondenza del quale la ventola ruota alla velocità regolare. Se è impostata la velocità regolare in altezza, questo valore viene calcolato e arrotondato a un numero intero." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo minimo per strato" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Rimuove i fori presenti su ciascuno strato e mantiene soltanto la forma esterna. Questa funzione ignora qualsiasi invisibile geometria interna. Tuttavia, essa ignora allo stesso modo i fori degli strati visibili da sopra o da sotto." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferenza di appoggio" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrazione prima della parete esterna" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrazione al cambio strato" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Indica il tempo minimo dedicato a uno strato. Questo forza la stampante a rallentare, per impiegare almeno il tempo impostato qui per uno strato. Questo consente il corretto raffreddamento del materiale stampato prima di procedere alla stampa dello strato successivo. La stampa degli strati potrebbe richiedere un tempo inferiore al minimo se la funzione Sollevamento della testina è disabilitata e se la velocità minima non viene rispettata." +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." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocità minima" +msgctxt "wipe_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." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Indica la velocità minima di stampa, a prescindere dal rallentamento per il tempo minimo per strato. Quando la stampante rallenta eccessivamente, la pressione nell’ugello risulta insufficiente con conseguente scarsa qualità di stampa." +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." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Sollevamento della testina" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distanza di retrazione" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando viene raggiunta la velocità minima per il tempo minimo per strato, sollevare la testina dalla stampa e attendere il tempo supplementare fino al raggiungimento del valore per tempo minimo per strato." +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Entità di innesco supplementare dopo la retrazione" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura di stampa per piccoli strati" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Distanza minima di retrazione" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Riduci gradualmente questa temperatura quando si stampa a velocità ridotte a causa del tempo di strato minimo." +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocità di innesco dopo la retrazione" -msgctxt "support label" -msgid "Support" -msgstr "Supporto" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocità di retrazione" -msgctxt "support description" -msgid "Support" -msgstr "Supporto" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocità di retrazione" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generazione supporto" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Destra" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Scala la velocità della ventola a 0-1" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Estrusore del supporto" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Scalare la velocità della ventola in modo che sia compresa tra 0 e 1 anziché tra 0 e 256." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala per la compensazione della contrazione" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Estrusore riempimento del supporto" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scena è dotata di maglie di supporto" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferenze angolo giunzione" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Estrusore del supporto primo strato" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Estrusore interfaccia del supporto" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura." -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla." +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retrazione iniziale ugello condivisa" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Estrusore parte superiore del supporto" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angolo più acuto" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla." +msgctxt "shell description" +msgid "Shell" +msgstr "Guscio" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Estrusore parte inferiore del supporto" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Il più breve" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostra varianti macchina" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Struttura di supporto" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Layer di supporto del bordo del rivestimento" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Spessore del supporto del bordo del rivestimento" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normale" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distanza prolunga rivestimento esterno" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Albero" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sovrapposizione del rivestimento esterno" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Angolo massimo dei rami" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Percentuale di sovrapposizione del rivestimento esterno" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Angolo massimo dei rami mentre crescono intorno al modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per ottenere una portata maggiore." +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Larghezza rimozione rivestimento" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diametro del ramo" +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." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore." +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diametro del tronco" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Salto di alcuni collegamenti per rendere la struttura del supporto più facile da rompere. Questa impostazione è applicabile alla configurazione a zig-zag del riempimento del supporto." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Il diametro dei rami più larghi del supporto dell'albero. Un tronco più spesso è più robusto; un tronco più sottile occupa meno spazio sul piano di stampa." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Angolo del diametro del ramo" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distanza dello skirt" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "L’angolo del diametro dei rami con il graduale ispessimento verso il fondo. Un angolo pari a 0 genera rami con spessore uniforme sull’intera lunghezza. Un angolo minimo può aumentare la stabilità del supporto ad albero." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altezza dello skirt" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Posizionamento supporto" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Numero di linee dello skirt" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Contatto con il Piano di Stampa" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accelerazione skirt/brim" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "In Tutti i Possibili Punti" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Estrusore skirt/brim" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Angolo dei rami preferito" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flusso dello skirt/brim" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "L'angolo dei rami preferito, quando questi non devono evitare il modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per unire più velocemente i rami." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk dello skirt/brim" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento del diametro sul modello" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Larghezza delle linee dello skirt/brim" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Il diametro massimo di un ramo che deve collegarsi al modello può aumentare unendosi ai rami che potrebbero raggiungere il piano di stampa. L'aumento riduce il tempo di stampa, ma aumenta l'area di supporto che poggia sul modello" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Lunghezza minima dello skirt/brim" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocità dello skirt/brim" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altezza minima rispetto al modello" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolleranza di sezionamento" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Entità dell'altezza di un ramo se è posizionato sul modello. Previene piccoli blob di supporto. Questa impostazione viene ignorata quando un ramo supporta un tetto di supporto." +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diametro dello strato iniziale" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Lunghezza massima dettagli di piccole dimensioni" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diametro che ogni ramo cerca di ottenere quando raggiunge la piastra di costruzione. Migliora l'adesione al piano." +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocità dettagli piccole dimensioni" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densità del ramo" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Dimensione massima foro piccolo" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Consente di regolare la densità della struttura di supporto utilizzata per generare le punte dei rami. Un valore più alto si traduce in sbalzi migliori, ma i supporti saranno più difficili da rimuovere. Usa il tetto del supporto per valori molto alti o assicurati che la densità di supporto sia altrettanto alta nella parte superiore." +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura di stampa per piccoli strati" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diametro della punta" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Piccola area inferiore/superiore sulla superficie" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Il diametro della parte superiore della punta dei rami dell'albero di supporto." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Larghezza superiore e inferiore delle regioni più piccole" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limite di portata dei rami" +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." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" +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." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Intervallo ottimale dei rami" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Le piccole aree superiori/inferiori vengono riempite con muri invece che con il modello superiore/inferiore predefinito. Questo aiuta a evitare movimenti a singhiozzo. Per impostazione predefinita, questa opzione è disattivata per il livello più alto (esposto all'aria) (vedere \"Piccola area inferiore/superiore sulla superficie\")." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Brim smart" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferenza di appoggio" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Occultamento intelligente" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Il posizionamento preferito delle strutture di supporto. Se le strutture non si possono collocare nella posizione preferita, saranno collocate altrove, anche se ciò significherà posizionarle sul modello." +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Levigazione dei profili con movimento spiraliforme" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Sul piano di stampa, quando possibile" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella visualizzazione a strati). Notare che la levigatura tende a rimuovere le bavature fini della superficie." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sul modello, se necessario" +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." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angolo di sbalzo del supporto" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Indica l’angolo minimo degli sbalzi per i quali viene aggiunto il supporto. A un valore di 0 ° tutti gli sbalzi vengono supportati, con un valore di 90 ° non sarà fornito alcun supporto." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modalità speciali" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Configurazione del supporto" +msgctxt "speed description" +msgid "Speed" +msgstr "Velocità" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere." +msgctxt "speed label" +msgid "Speed" +msgstr "Velocità" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)." -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Stampa del contorno esterno con movimento spiraliforme" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Appiattisce il contorno esterno attorno all'asse Z con movimento spiraliforme. Questo crea un aumento costante lungo l'asse Z durante tutto il processo di stampa. Questa caratteristica consente di ottenere un modello pieno in una singola stampata con fondo solido. Questa caratteristica deve essere abilitata solo quando ciascuno strato contiene solo una singola parte." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura di Standby" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Codice G avvio" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Incrociata" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Punto di partenza di ogni percorso nell'ambito di uno strato. Quando i percorsi in strati consecutivi iniziano nello stesso punto, sulla stampa può apparire una linea di giunzione verticale. Se si allineano in prossimità di una posizione specificata dall’utente, la linea di giunzione può essere rimossa più facilmente. Se disposti in modo casuale, le imprecisioni in corrispondenza dell'inizio del percorso saranno meno evidenti. Prendendo il percorso più breve la stampa sarà più veloce." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passi per millimetro (E)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Numero delle linee perimetrali supporto" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passi per millimetro (X)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato." +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passi per millimetro (Y)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Numero delle linee perimetrali dell'interfaccia di supporto" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passi per millimetro (Z)" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." +msgctxt "support description" +msgid "Support" +msgstr "Supporto" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Numero delle linee perimetrali del tetto di supporto" +msgctxt "support label" +msgid "Support" +msgstr "Supporto" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accelerazione supporto" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distanza inferiore supporto" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Numero delle linee perimetrali inferiori di supporto" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Collegamento linee supporto" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Numero di linee del brim del supporto" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Collega le estremità delle linee del supporto. L’abilitazione di questa impostazione consente di ottenere un supporto più robusto e ridurre la sottoestrusione, ma si utilizza più materiale." +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Larghezza del brim del supporto" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Collegamento Zig Zag supporto" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Conteggio linee di rottura supporto" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag." +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Dimensioni frammento supporto" msgctxt "support_infill_rate label" msgid "Support Density" msgstr "Densità del supporto" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorità distanza supporto" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distanza tra le linee del supporto" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Estrusore del supporto" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accelerazione parte inferiore del supporto" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densità parte inferiore del supporto" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Estrusore parte inferiore del supporto" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flusso supporto inferiore" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Espansione orizzontale parti inferiori supporto" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distanza tra le linee del supporto dello strato iniziale" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk parte inferiore del supporto" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direzioni della larghezza della linea di supporto inferiore" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direzione delle linee di riempimento supporto" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distanza della linea di supporto inferiore" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza l'angolo predefinito di 0 gradi." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Larghezza della linea di supporto inferiore" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Abilitazione brim del supporto" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Configurazione della parte inferiore del supporto" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genera un brim entro le zone di riempimento del supporto del primo strato. Questo brim viene stampato al di sotto del supporto, non intorno ad esso. L’abilitazione di questa impostazione aumenta l’adesione del supporto al piano di stampa." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocità di stampa della parte inferiore del supporto" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Larghezza del brim del supporto" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Spessore parte inferiore del supporto" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flusso del supporto" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Numero di linee del brim del supporto" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Espansione orizzontale supporto" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più linee brim migliorano l’adesione al piano di stampa, ma utilizzano una maggiore quantità di materiale." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accelerazione riempimento supporto" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distanza Z supporto" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Estrusore riempimento del supporto" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk riempimento supporto" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distanza superiore supporto" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento di supporto" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "È la distanza tra la parte superiore del supporto e la stampa." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direzione delle linee di riempimento supporto" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distanza inferiore supporto" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocità di riempimento del supporto" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "È la distanza tra la stampa e la parte inferiore del supporto." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accelerazione interfaccia supporto" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distanza X/Y supporto" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densità interfaccia supporto" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Estrusore interfaccia del supporto" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorità distanza supporto" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flusso interfaccia di supporto" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Indica se la distanza X/Y del supporto esclude la distanza Z del supporto o viceversa. Quando X/Y esclude Z, la distanza X/Y può allontanare il supporto dal modello, influenzando l’effettiva distanza Z allo sbalzo. È possibile disabilitare questa funzione non applicando la distanza X/Y intorno agli sbalzi." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Espansione orizzontale interfaccia supporto" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y esclude Z" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk interfaccia supporto" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z esclude X/Y" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direzioni della linea dell'interfaccia di supporto" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distanza X/Y supporto minima" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Larghezza della linea dell’interfaccia di supporto" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Configurazione interfaccia supporto" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altezza gradini supporto" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Priorità interfaccia di supporto" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Altezza dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto. Impostare a zero per disabilitare il profilo a scala." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Risoluzione interfaccia supporto" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Larghezza massima gradino supporto" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocità interfaccia supporto" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Larghezza massima dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Spessore interfaccia supporto" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Angolo di pendenza minimo gradini supporto" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Numero delle linee perimetrali dell'interfaccia di supporto" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pendenza minima dell'area alla quale ha effetto la creazione dei gradini. Valori bassi dovrebbero semplificare la rimozione del supporto sulle pendenze meno profonde, ma in realtà dei valori bassi possono generare risultati molto irrazionali sulle altre parti del modello." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk supporto" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Distanza giunzione supporto" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "La distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Espansione orizzontale supporto" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "È l'entità di offset (estensione dello strato) applicato a tutti i poligoni di supporto in ciascuno strato. I valori positivi possono appianare le aree di supporto, accrescendone la robustezza." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento di supporto" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distanza tra le linee del supporto" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Indica lo spessore per strato del materiale di riempimento del supporto. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Larghezza delle linee di supporto" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Fasi di riempimento graduale del supporto" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supporto maglia" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto delle superfici superiori. Le aree più vicine alle superfici superiori avranno una densità maggiore, fino alla densità del riempimento." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angolo di sbalzo del supporto" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altezza fasi di riempimento graduale del supporto" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Configurazione del supporto" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Posizionamento supporto" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Area minima supporto" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accelerazione parte superiore del supporto" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densità parte superiore (tetto) del supporto" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Abilitazione interfaccia supporto" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Estrusore parte superiore del supporto" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Genera un’interfaccia densa tra il modello e il supporto. Questo crea un rivestimento esterno sulla sommità del supporto su cui viene stampato il modello e al fondo del supporto, dove appoggia sul modello." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flusso supporto superiore" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Espansione orizzontale parti superiori supporto" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk parte superiore del supporto" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Abilitazione parte inferiore supporto" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direzioni delle linee di supporto superiori" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Spessore interfaccia supporto" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Larghezza delle linee di supporto superiori" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Configurazione della parte superiore (tetto) del supporto" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocità di stampa della parte superiore (tetto) del supporto" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Spessore parte superiore (tetto) del supporto" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Numero delle linee perimetrali del tetto di supporto" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Spessore parte inferiore del supporto" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocità di stampa del supporto" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altezza gradini supporto" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Risoluzione interfaccia supporto" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Larghezza massima gradino supporto" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Angolo di pendenza minimo gradini supporto" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densità interfaccia supporto" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Struttura di supporto" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Regola la densità delle parti superiori e inferiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distanza superiore supporto" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densità parte superiore (tetto) del supporto" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Numero delle linee perimetrali supporto" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distanza X/Y supporto" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distanza Z supporto" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distanza tra le linee della parte superiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte superiore del supporto, ma può essere regolata separatamente." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Linee di supporto preferite" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densità parte inferiore del supporto" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Supporto preferito" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocità della ventola del rivestimento esterno supportato" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distanza della linea di supporto inferiore" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distanza tra le linee della parte inferiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte inferiore del supporto, ma può essere regolata separatamente." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia superficiale" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Configurazione interfaccia supporto" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modalità superficie" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendenza di adesione superficiale." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia superficiale." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Scambia l'ordine di stampa della prima e seconda linea più interna del brim per agevolarne la rimozione." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Selezionare quali volumi di intersezione maglie appartengono a ciascuno strato, in modo che le maglie sovrapposte diventino interconnesse. Disattivando questa funzione una delle maglie ottiene tutto il volume della sovrapposizione, che viene rimosso dalle altre maglie." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +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." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Configurazione della parte superiore (tetto) del supporto" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Indica l’accelerazione durante la stampa dello strato iniziale." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Configurazione della parte inferiore del supporto" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Indica l’accelerazione dello strato iniziale." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L’accelerazione con cui viene stampato il riempimento." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L’accelerazione con cui viene effettuata la stiratura." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L’accelerazione con cui avviene la stampa." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Accelerazione alla quale vengono stampate le parti inferiori del supporto. La stampa ad una accelerazione inferiore può migliorare l'adesione del supporto nella parte superiore del modello." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Griglia" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Area minima interfaccia supporto" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Indica l’accelerazione con cui viene stampato il raft." -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." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Accelerazione alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Area minima parti superiori supporto" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." -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." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Indica l’accelerazione alla quale sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta all’accelerazione dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad un’accelerazione diversa." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Area minima parti inferiori supporto" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto." -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." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Espansione orizzontale interfaccia supporto" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Espansione orizzontale parti superiori supporto" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Entità di offset applicato alle parti superiori del supporto." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Espansione orizzontale parti inferiori supporto" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Entità di offset applicato alle parti inferiori del supporto." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Priorità interfaccia di supporto" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Quantità di materiale, relativo ad una normale linea del rivestimento, da estrudere durante la stiratura. Mantenere l'ugello pieno aiuta a riempire alcune delle fessure presenti sulla superficie superiore, ma una quantità eccessiva comporta un'estrusione eccessiva con conseguente puntinatura sui lati della superficie." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Come interagiranno l'interfaccia di supporto e il supporto quando si sovrappongono. Attualmente implementato solo per il tetto di supporto." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Supporto preferito" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interfaccia preferita" +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." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Linee di supporto preferite" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linee di interfaccia preferite" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Entrambi si sovrappongono" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Angolo dello sbalzo delle pareti esterne creato per il modello. 0° rende il guscio esterno dello stampo verticale, mentre 90° fa in modo che il guscio esterno dello stampo segua il profilo del modello." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direzioni della linea dell'interfaccia di supporto" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "L’angolo del diametro dei rami con il graduale ispessimento verso il fondo. Un angolo pari a 0 genera rami con spessore uniforme sull’intera lunghezza. Un angolo minimo può aumentare la stabilità del supporto ad albero." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "È l'angolo di inclinazione del supporto conico. Con 0 gradi verticale e 90 gradi orizzontale. Angoli inferiori rendono il supporto più robusto, ma richiedono una maggiore quantità di materiale. Angoli negativi rendono la base del supporto più larga rispetto alla parte superiore." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direzioni delle linee di supporto superiori" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Indica la densità media dei punti introdotti su ciascun poligono in uno strato. Si noti che i punti originali del poligono vengono scartati, perciò una bassa densità si traduce in una riduzione della risoluzione." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direzioni della larghezza della linea di supporto inferiore" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La temperatura preimpostata utilizzata per la stampa. Deve essere la temperatura “base” di un materiale. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Override velocità della ventola" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "La temperatura preimpostata utilizzata per il piano di stampa. Deve essere la temperatura “base” di un piano di stampa. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocità della ventola del rivestimento esterno supportato" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Percentuale della velocità della ventola da usare quando si stampano le zone del rivestimento esterno subito sopra il supporto. L’uso di una velocità ventola elevata può facilitare la rimozione del supporto." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizzo delle torri" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilizza speciali torri per il supporto di piccolissime aree di sbalzo. Queste torri hanno un diametro maggiore rispetto a quello dell'area che supportano. In prossimità dello sbalzo il diametro delle torri diminuisce, formando un 'tetto'." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diametro della torre" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondità (direzione Y) dell’area stampabile." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "Corrisponde al diametro di una torre speciale." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diametro supportato dalla torre" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Il diametro della parte superiore della punta dei rami dell'albero di supporto." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angolazione della parte superiore (tetto) della torre" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Il diametro della ruota che guida il materiale nel tirafilo." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte." +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Il diametro dei rami più larghi del supporto dell'albero. Un tronco più spesso è più robusto; un tronco più sottile occupa meno spazio sul piano di stampa." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maglia supporto di discesa" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "La differenza in altezza dello strato successivo rispetto al precedente." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo." +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distanza tra le linee di stiratura." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scena è dotata di maglie di supporto" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Abilitazione blob di innesco" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo di adesione piano di stampa" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro, misurata in celle. Un numero troppo basso di celle determina una scarsa adesione." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Sono previste diverse opzioni che consentono di migliorare l'applicazione dello strato iniziale dell’estrusione e migliorano l’adesione. Il brim aggiunge un'area piana a singolo strato attorno alla base del modello, per evitare deformazioni. Il raft aggiunge un fitto reticolato con un tetto al di sotto del modello. Lo skirt è una linea stampata attorno al modello, ma non collegata al modello." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un brim di maggiore dimensione aderirà meglio al piano di stampa, ma con riduzione dell'area di stampa." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti inferiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato inferiore. Valori minori consentono di risparmiare sul materiale utilizzato." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nessuno" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti degli strati adiacenti. Valori minori consentono di risparmiare sul materiale utilizzato." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Estrusore adesione piano di stampa" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti superiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato superiore. Valori minori consentono di risparmiare sul materiale utilizzato." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Estrusore skirt/brim" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di queste linee." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa dello skirt o del brim. Utilizzato nell’estrusione multipla." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Indica l'incremento di velocità di raffreddamento dell'ugello in fase di estrusione. Lo stesso valore viene usato per indicare la perdita di velocità di riscaldamento durante il riscaldamento in fase di estrusione." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Estrusore della base del raft" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "Il treno estrusore utilizzato per la stampa del primo strato del raft. Utilizzato nell’estrusione multipla." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Estrusore intermedio del raft" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "Il treno estrusore utilizzato per la stampa dello strato intermedio del raft. Utilizzato nell’estrusione multipla." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Estrusore superiore del raft" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa degli strati superiori del raft. Utilizzato nell’estrusione multipla." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Numero di linee dello skirt" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Più linee di skirt contribuiscono a migliorare l'avvio dell'estrusione per modelli di piccole dimensioni. L'impostazione di questo valore a 0 disattiverà la funzione skirt." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altezza dello skirt" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Stampare la linea più interna dello skirt con più strati facilita la rimozione dello skirt stesso." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distanza dello skirt" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\nQuesta è la distanza minima. Più linee di skirt aumenteranno tale distanza." +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Lunghezza minima dello skirt/brim" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Indica la lunghezza minima dello skirt o del brim. Se tale lunghezza minima non viene raggiunta da tutte le linee skirt o brim insieme, saranno aggiunte più linee di skirt o brim fino a raggiungere la lunghezza minima. Nota: se il valore è impostato a 0, questa funzione viene ignorata." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa dello skirt o del brim. Utilizzato nell’estrusione multipla." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Larghezza del brim" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un brim di maggiore dimensione aderirà meglio al piano di stampa, ma con riduzione dell'area di stampa." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Numero di linee del brim" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa degli strati superiori del raft. Utilizzato nell’estrusione multipla." -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." +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distanza del Brim" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla." -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 "Distanza orizzontale tra la linea del primo brim e il profilo del primo layer della stampa. Un piccolo interstizio può semplificare la rimozione del brim e allo stesso tempo fornire dei vantaggi termici." +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim in sostituzione del supporto" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim solo sull’esterno" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Margine di aggiramento interno del brim" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Una parte completamente racchiusa all'interno di un'altra parte può generare un brim esterno che tocca l'interno dell'altra parte. Questo rimuove tutti i brim entro questa distanza dai fori interni." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Indica la velocità di rotazione della ventola per il raft." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Brim smart" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Scambia l'ordine di stampa della prima e seconda linea più interna del brim per agevolarne la rimozione." +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel riempimento della stampa." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margine extra del raft" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "I primi strati vengono stampati più lentamente rispetto al resto del modello, per ottenere una migliore adesione al piano di stampa ed ottimizzare nel complesso la percentuale di successo delle stampe. La velocità aumenta gradualmente nel corso di esecuzione degli strati successivi." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Smoothing raft" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "È l'interstizio tra lo strato di raft finale ed il primo strato del modello. Solo il primo strato viene sollevato di questo valore per ridurre l'adesione fra lo strato di raft e il modello. Ciò rende più facile rimuovere il raft." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "L’altezza (direzione Z) dell’area stampabile." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Traferro del raft" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "È l'interstizio tra lo strato di raft finale ed il primo strato del modello. Solo il primo strato viene sollevato di questo valore per ridurre l'adesione fra lo strato di raft e il modello. Ciò rende più facile rimuovere il raft." +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Indica l’altezza alla quale la ventola ruota alla velocità regolare. Agli strati stampati a velocità inferiore la velocità della ventola aumenta gradualmente dalla velocità iniziale a quella regolare." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Sovrapposizione Primo Strato" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Strati superiori del raft" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Spessore dello strato superiore del raft" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "È lo spessore degli strati superiori del raft." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Indica l’altezza di ciascuno strato in mm. Valori più elevati generano stampe più rapide con risoluzione inferiore, valori più bassi generano stampe più lente con risoluzione superiore." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Larghezza delle linee superiori del raft" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Spaziatura superiore del raft" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Strati intermedi del raft" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Il numero di strati tra la base e la superficie del raft. Questi costituiscono lo spessore principale del raft. L'incremento di questo numero crea un raft più spesso e robusto." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Spessore dello strato intermedio del raft" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Altezza dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto. Impostare a zero per disabilitare il profilo a scala." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "È lo spessore dello strato intermedio del raft." +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 "Distanza orizzontale tra la linea del primo brim e il profilo del primo layer della stampa. Un piccolo interstizio può semplificare la rimozione del brim e allo stesso tempo fornire dei vantaggi termici." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Larghezza delle linee dello strato intermedio del raft" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n" +"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Indica la larghezza delle linee dello strato intermedio del raft. Una maggiore estrusione del secondo strato provoca l'incollamento delle linee al piano di stampa." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Spaziatura dello strato intermedio del raft" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Il riempimento si sposta di questa distanza lungo l'asse X." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Spessore della base del raft" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Larghezza delle linee dello strato di base del raft" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Indica il jerk con cui viene stampato il raft." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Spaziatura delle linee dello strato di base del raft" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento inferiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento inferiore sulle superfici inclinate del modello." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocità di stampa del raft" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore/inferiore sulle superfici inclinate del modello." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Indica la velocità alla quale il raft è stampato." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore sulle superfici inclinate del modello." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocità di stampa parte superiore del raft" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Indica lo strato in corrispondenza del quale la ventola ruota alla velocità regolare. Se è impostata la velocità regolare in altezza, questo valore viene calcolato e arrotondato a un numero intero." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Indica il tempo per strato che definisce la soglia tra la velocità regolare e quella massima della ventola. Gli strati che vengono stampati a una velocità inferiore a questo valore utilizzano una velocità regolare della ventola. Per gli strati stampati più velocemente la velocità della ventola aumenta gradualmente verso la velocità massima della ventola." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocità di stampa raft intermedio" +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." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocità di stampa della base del raft" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Il materiale del piano di stampa installato sulla stampante." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accelerazione di stampa del raft" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "È l'angolazione massima ammessa delle parti nel riparo. Con 0 gradi verticale e 90 gradi orizzontale. Un angolo più piccolo comporta minori ripari non riusciti, ma maggiore materiale." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Indica l’accelerazione con cui viene stampato il raft." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "L’angolo massimo degli sbalzi dopo essere stati resi stampabili. A un valore di 0° tutti gli sbalzi sono sostituiti da un pezzo del modello collegato al piano di stampa, 90° non cambia il modello in alcun modo." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accelerazione di stampa parte superiore del raft" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Angolo massimo dei rami mentre crescono intorno al modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per ottenere una portata maggiore." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "L'area massima di un foro nella base del modello prima che venga rimossa da Rendi stampabile lo sbalzo. I fori più piccoli di questo verranno mantenuti. Un valore di 0 mm² riempirà i fori nella base del modello." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accelerazione di stampa raft intermedio" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il g-code sarà più piccolo. Deviazione massima rappresenta il limite per Risoluzione massima; pertanto se le due impostazioni sono in conflitto, verrà considerata vera l'impostazione Deviazione massima." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "La distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accelerazione di stampa della base del raft" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "La deviazione massima dell'area di estrusione consentita durante la rimozione di punti intermedi da una linea retta. Un punto intermedio può fungere da punto di modifica larghezza in una lunga linea retta. Pertanto, se viene rimosso, la linea avrà una larghezza uniforme e, come risultato, perderà (o guadagnerà) area di estrusione. In caso di incremento si può notare una leggera sotto (o sovra) estrusione tra pareti parallele rette, poiché sarà possibile rimuovere più punti di variazione della larghezza intermedi. La stampa sarà meno precisa, ma il G-Code sarà più piccolo." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk stampa del raft" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Indica il jerk con cui viene stampato il raft." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Indica il cambio della velocità istantanea massima della testina di stampa." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk di stampa parte superiore del raft" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk di stampa raft intermedio" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft." +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk di stampa della base del raft" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocità della ventola per il raft" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Indica la velocità di rotazione della ventola per il raft." +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocità della ventola per la parte superiore del raft" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocità della ventola per il raft intermedio" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft." +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocità della ventola per la base del raft" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Doppia estrusione" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Abilitazione torre di innesco" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Indica la velocità massima del motore per la direzione X." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Indica la velocità massima del motore per la direzione Y." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Dimensioni torre di innesco" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Indica la velocità massima del motore per la direzione Z." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Indica la larghezza della torre di innesco." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Indica la velocità massima del filamento." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimo torre di innesco" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Larghezza massima dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posizione X torre di innesco" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Indica la velocità di spostamento minima della testina di stampa." -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Indica la coordinata X della posizione della torre di innesco." +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa." -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posizione Y torre di innesco" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Il tempo minimo in cui un estrusore deve essere inattivo prima che l’ugello si raffreddi. Solo quando un estrusore non è utilizzato per un periodo superiore a questo tempo potrà raffreddarsi alla temperatura di standby." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Indica la coordinata Y della posizione della torre di innesco." +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "L'angolo minimo degli sbalzi interni per il quale viene aggiunto il riempimento. Per un valore corrispondente a 0°, gli oggetti sono completamente riempiti di materiale, per un valore corrispondente a 90° non è previsto riempimento." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Ugello pulitura inattiva sulla torre di innesco" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Indica l’angolo minimo degli sbalzi per i quali viene aggiunto il supporto. A un valore di 0 ° tutti gli sbalzi vengono supportati, con un valore di 90 ° non sarà fornito alcun supporto." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." +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." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim torre di innesco" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Indica la lunghezza minima dello skirt o del brim. Se tale lunghezza minima non viene raggiunta da tutte le linee skirt o brim insieme, saranno aggiunte più linee di skirt o brim fino a raggiungere la lunghezza minima. Nota: se il valore è impostato a 0, questa funzione viene ignorata." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'." +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "La larghezza minima della linea per pareti polilinea di riempimento interstizi linea intermedia. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di due linee perimetrali alla stampa di due pareti esterne e di una singola parete centrale al centro. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea di parete dispari viene calcolata come 2 * Larghezza minima della linea di parete pari." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Abilitazione del riparo materiale fuoriuscito" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "La larghezza minima della linea per normali pareti poligonali. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di una singola linea perimetrale sottile alla stampa di due linee perimetrali. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea perimetrale pari viene calcolata come Larghezza della linea perimetrale esterna + 0,5 * Larghezza minima della linea perimetrale dispari." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello." +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Indica la velocità minima di stampa, a prescindere dal rallentamento per il tempo minimo per strato. Quando la stampante rallenta eccessivamente, la pressione nell’ugello risulta insufficiente con conseguente scarsa qualità di stampa." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angolo del riparo materiale fuoriuscito" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "La dimensione minima di un segmento di linea dopo il sezionamento. Se tale dimensione aumenta, la maglia avrà una risoluzione inferiore. Questo può consentire alla stampante di mantenere la velocità per processare il g-code ed aumenterà la velocità di sezionamento eliminando i dettagli della maglia che non è comunque in grado di processare." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "È l'angolazione massima ammessa delle parti nel riparo. Con 0 gradi verticale e 90 gradi orizzontale. Un angolo più piccolo comporta minori ripari non riusciti, ma maggiore materiale." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "La dimensione minima di un segmento lineare di spostamento dopo il sezionamento. Aumentando tale dimensione, le corse di spostamento avranno meno angoli arrotondati. La stampante può così mantenere la velocità per processare il g-code, ma si può verificare una riduzione della precisione di aggiramento del modello." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distanza del riparo materiale fuoriuscito" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pendenza minima dell'area alla quale ha effetto la creazione dei gradini. Valori bassi dovrebbero semplificare la rimozione del supporto sulle pendenze meno profonde, ma in realtà dei valori bassi possono generare risultati molto irrazionali sulle altre parti del modello." -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." +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Indica il tempo minimo dedicato a uno strato. Questo forza la stampante a rallentare, per impiegare almeno il tempo impostato qui per uno strato. Questo consente il corretto raffreddamento del materiale stampato prima di procedere alla stampa dello strato successivo. La stampa degli strati potrebbe richiedere un tempo inferiore al minimo se la funzione Sollevamento della testina è disabilitata e se la velocità minima non viene rispettata." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distanza di retrazione cambio ugello" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." -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." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Il diametro massimo di un ramo che deve collegarsi al modello può aumentare unendosi ai rami che potrebbero raggiungere il piano di stampa. L'aumento riduce il tempo di stampa, ma aumenta l'area di supporto che poggia sul modello" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocità di retrazione cambio ugello" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Il nome del modello della stampante 3D in uso." -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." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocità di retrazione cambio ugello" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing." -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." +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocità innesco cambio ugello" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero." -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." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." -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." +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." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correzioni delle maglie" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Il numero di strati tra la base e la superficie del raft. Questi costituiscono lo spessore principale del raft. L'incremento di questo numero crea un raft più spesso e robusto." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendere le maglie più indicate alla stampa 3D." +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." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unione dei volumi in sovrapposizione" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più linee brim migliorano l’adesione al piano di stampa, ma utilizzano una maggiore quantità di materiale." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Rimozione di tutti i fori" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Rimuove i fori presenti su ciascuno strato e mantiene soltanto la forma esterna. Questa funzione ignora qualsiasi invisibile geometria interna. Tuttavia, essa ignora allo stesso modo i fori degli strati visibili da sopra o da sotto." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Ricucitura completa dei fori" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo il foro con poligoni a contatto. Questa opzione può richiedere lunghi tempi di elaborazione." +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantenimento delle superfici scollegate" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto codice G in nessun altro modo." +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sovrapposizione maglie" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Il numero di pareti, conteggiate dal centro, su cui occorre distribuire la variazione. Valori più bassi indicano che la larghezza delle pareti esterne non cambia." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rimuovi intersezione maglie" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Il diametro esterno della punta dell'ugello." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro." +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Rimozione maglie alternate" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Selezionare quali volumi di intersezione maglie appartengono a ciascuno strato, in modo che le maglie sovrapposte diventino interconnesse. Disattivando questa funzione una delle maglie ottiene tutto il volume della sovrapposizione, che viene rimosso dalle altre maglie." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Configurazione degli strati superiori." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Rimuovere i primi strati vuoti" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Indica la configurazione degli strati superiori/inferiori." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia." +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "La configurazione al fondo della stampa sul primo strato." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Risoluzione massima" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Configurazione utilizzata per la stiratura della superficie superiore." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "La dimensione minima di un segmento di linea dopo il sezionamento. Se tale dimensione aumenta, la maglia avrà una risoluzione inferiore. Questo può consentire alla stampante di mantenere la velocità per processare il g-code ed aumenterà la velocità di sezionamento eliminando i dettagli della maglia che non è comunque in grado di processare." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Risoluzione massima di spostamento" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "La dimensione minima di un segmento lineare di spostamento dopo il sezionamento. Aumentando tale dimensione, le corse di spostamento avranno meno angoli arrotondati. La stampante può così mantenere la velocità per processare il g-code, ma si può verificare una riduzione della precisione di aggiramento del modello." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Deviazione massima" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il g-code sarà più piccolo. Deviazione massima rappresenta il limite per Risoluzione massima; pertanto se le due impostazioni sono in conflitto, verrà considerata vera l'impostazione Deviazione massima." +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "L'angolo dei rami preferito, quando questi non devono evitare il modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per unire più velocemente i rami." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Deviazione massima dell'area di estrusione" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Il posizionamento preferito delle strutture di supporto. Se le strutture non si possono collocare nella posizione preferita, saranno collocate altrove, anche se ciò significherà posizionarle sul modello." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "La deviazione massima dell'area di estrusione consentita durante la rimozione di punti intermedi da una linea retta. Un punto intermedio può fungere da punto di modifica larghezza in una lunga linea retta. Pertanto, se viene rimosso, la linea avrà una larghezza uniforme e, come risultato, perderà (o guadagnerà) area di estrusione. In caso di incremento si può notare una leggera sotto (o sovra) estrusione tra pareti parallele rette, poiché sarà possibile rimuovere più punti di variazione della larghezza intermedi. La stampa sarà meno precisa, ma il G-Code sarà più piccolo." +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Abilita movimento fluido" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forma della testina di stampa. Queste sono le coordinate relative alla posizione della testina di stampa. Questa coincide in genere con la posizione del primo estrusore. Le posizioni a sinistra e davanti alla testina di stampa devono essere coordinate negative." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distanza di spostamento del movimento del fluido" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "I punti di distanza vengono spostati per risistemare il percorso" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "È il volume minimo di un percorso di estrusione prima di consentire il coasting. Per percorsi di estrusione inferiori, nel tubo Bowden si è accumulata una pressione inferiore, quindi il volume rilasciato si riduce in modo lineare. Questo valore dovrebbe essere sempre maggiore del volume di Coasting." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Breve distanza di movimento del fluido" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La velocità (°C/s) alla quale l’ugello si raffredda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "I punti di distanza vengono spostati per risistemare il percorso" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La velocità (°C/s) alla quale l’ugello si riscalda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Angolo di movimento del fluido" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se un segmento del percorso utensile devia più di questo angolo dal movimento generale, viene risistemato." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modalità speciali" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Indica la velocità alla quale viene stampato il riempimento." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modi non tradizionali di stampare i modelli." +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Indica la velocità alla quale viene effettuata la stampa." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequenza di stampa" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." -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 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 "Indica se stampare tutti i modelli un layer alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità \"uno per volta\" è possibile solo se a) è abilitato solo un estrusore b) tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e che tutti i modelli siano più bassi della distanza tra l'ugello e gli assi X/Y." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Indica la velocità alla quale vengono stampate le pareti ponte." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Tutti contemporaneamente" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "La velocità di rotazione della ventola all’inizio della stampa. Negli strati successivi la velocità della ventola aumenta gradualmente da zero fino allo strato corrispondente alla velocità regolare in altezza." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Indica la velocità alla quale ruotano le ventole prima di raggiungere la soglia. Quando uno strato viene stampato a una velocità superiore alla soglia, la velocità della ventola tende gradualmente verso la velocità massima della ventola." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Uno alla volta" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Indica la velocità di rotazione della ventola al tempo minimo per strato. La velocità della ventola aumenta gradualmente tra la velocità regolare della ventola e la velocità massima della ventola quando viene raggiunta la soglia." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Maglia di riempimento" +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." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilizzare questa maglia per modificare il riempimento di altre maglie a cui è sovrapposta. Sostituisce le regioni di riempimento di altre maglie con le regioni di questa maglia. Si consiglia di stampare solo una parete e non il rivestimento esterno superiore/inferiore per questa maglia." +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificazione dell'elaborazione delle maglie" +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." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina la priorità di questa mesh quando si considera la sovrapposizione multipla delle mesh di riempimento. Per le aree con la sovrapposizione di più mesh di riempimento verranno utilizzate le impostazioni della mesh con la classificazione più alta. Una mesh di riempimento con una classificazione più alta modificherà il riempimento delle mesh di riempimento con una classificazione inferiore e delle mesh normali." +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." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ritaglio maglia" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore." +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." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Stampo" +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." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Larghezza minimo dello stampo" +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." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Velocità alla quale viene stampata la parte inferiore del supporto. La stampa ad una velocità inferiore può migliorare l'adesione del supporto nella parte superiore del modello." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altezza parte superiore dello stampo" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angolo stampo" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Indica la velocità alla quale vengono stampate le pareti più esterne. La stampa della parete esterna ad una velocità inferiore migliora la qualità finale del rivestimento. Tuttavia, una grande differenza tra la velocità di stampa della parete interna e quella della parete esterna avrà effetti negativi sulla qualità." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Angolo dello sbalzo delle pareti esterne creato per il modello. 0° rende il guscio esterno dello stampo verticale, mentre 90° fa in modo che il guscio esterno dello stampo segua il profilo del modello." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Indica la velocità alla quale è stampata la torre di innesco. La stampa della torre di innesco a una velocità inferiore può renderla maggiormente stabile quando l’adesione tra i diversi filamenti non è ottimale." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supporto maglia" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Indica la velocità alla quale il raft è stampato." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maglia anti-sovrapposizione" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocità alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilizzare questa maglia per specificare dove nessuna parte del modello deve essere rilevata come in sovrapposizione. Può essere usato per rimuovere struttura di supporto indesiderata." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modalità superficie" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Indica la velocità a cui sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta alla velocità di stampa dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad una velocità diversa." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Trattare il modello solo come una superficie, un volume o volumi con superfici libere. Il modo di stampa normale stampa solo volumi delimitati. “Superficie” stampa una parete singola tracciando la superficie della maglia senza riempimento e senza rivestimento esterno superiore/inferiore. “Entrambi” stampa i volumi delimitati come normali ed eventuali poligoni rimanenti come superfici." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Indica la velocità alla quale viene stampata la struttura di supporto. La stampa della struttura di supporto a velocità elevate può ridurre considerevolmente i tempi di stampa. La qualità superficiale della struttura di supporto di norma non riveste grande importanza in quanto viene rimossa dopo la stampa." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normale" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Entrambi" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Stampa del contorno esterno con movimento spiraliforme" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Velocità alla quale viene eseguito il movimento Z verticale per i sollevamenti in Z. In genere è inferiore alla velocità di stampa, dal momento che il piano o il corpo di stampa della macchina sono più difficili da spostare." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Appiattisce il contorno esterno attorno all'asse Z con movimento spiraliforme. Questo crea un aumento costante lungo l'asse Z durante tutto il processo di stampa. Questa caratteristica consente di ottenere un modello pieno in una singola stampata con fondo solido. Questa caratteristica deve essere abilitata solo quando ciascuno strato contiene solo una singola parte." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Indica la velocità alla quale vengono stampate le pareti." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Levigazione dei profili con movimento spiraliforme" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Velocità alla quale passare sopra la superficie superiore." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella visualizzazione a strati). Notare che la levigatura tende a rimuovere le bavature fini della superficie." +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto." -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Estrusione relativa" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Indica la velocità di stampa degli strati superiori." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del codice G. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto alle fasi E assolute. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script in codice G." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Sperimentale" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funzionalità che non sono state ancora precisate completamente." +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "È la velocità a cui eseguire lo spostamento durante il Coasting, rispetto alla velocità del percorso di estrusione. Si consiglia di impostare un valore leggermente al di sotto del 100%, poiché durante il Coasting la pressione nel tubo Bowden scende." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolleranza di sezionamento" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La velocità dello strato iniziale. È consigliabile un valore inferiore per migliorare l'adesione al piano di stampa. Non influisce sulle strutture di adesione del piano di stampa stesse, come brim e raft." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolleranza verticale negli strati sezionati. Di norma i contorni di uno strato vengono generati prendendo le sezioni incrociate fino al centro dello spessore di ciascun livello (intermedie). In alternativa, ogni strato può avere le aree che cadono all'interno del volume per tutto lo spessore dello strato (esclusive) oppure uno strato presenta le aree che rientrano all'interno di qualsiasi punto dello strato (inclusive). Le aree inclusive conservano la maggior parte dei dettagli; le esclusive generano la soluzione migliore, mentre le intermedie restano più vicine alla superficie originale." +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Intermedia" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Indica la velocità di spostamento per lo strato iniziale. Un valore inferiore è consigliabile per evitare di rimuovere le parti precedentemente stampate dal piano di stampa. Il valore di questa impostazione può essere calcolato automaticamente dal rapporto tra la velocità di spostamento e la velocità di stampa." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Esclusiva" +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." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Ottimizzazione spostamenti riempimento" +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." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando abilitato, l’ordine di stampa delle linee di riempimento viene ottimizzato per ridurre la distanza percorsa. La riduzione del tempo di spostamento ottenuta dipende in particolare dal modello sezionato, dalla configurazione di riempimento, dalla densità, ecc. Si noti che, per alcuni modelli che hanno piccole aree di riempimento, il tempo di sezionamento del modello può aumentare notevolmente." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafico della temperatura del flusso" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)." +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Indica la temperatura usata per la stampa." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonferenza minima dei poligoni" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato per il primo strato." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "I poligoni in strati sezionati con una circonferenza inferiore a questo valore verranno scartati. I valori inferiori generano una maglia con risoluzione superiore al costo del tempo di sezionamento. È dedicata in particolare alle stampanti SLA ad alta risoluzione e a modelli 3D molto piccoli, ricchi di dettagli." +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Indica la temperatura utilizzata per il piano di stampa riscaldato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Generazione della struttura a incastro" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La temperatura utilizzata per scaricare il materiale. deve essere più o meno uguale alla massima temperatura di stampa possibile." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nei punti in cui i modelli si toccano, viene generata una struttura del fascio ad incastro. Questo migliora l'adesione tra i modelli, soprattutto quelli stampati in materiali diversi." +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Larghezza della trave a incastro" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Spessore del riempimento supplementare che supporta i bordi del rivestimento." -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "La larghezza delle travi della struttura ad incastro." +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientamento della struttura ad incastro" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello." -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Conteggio degli strati delle travi ad incastro" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Indica lo spessore degli strati superiore/inferiore nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori/inferiori." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profondità di incastro" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro, misurata in celle. Un numero troppo basso di celle determina una scarsa adesione." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Indica lo spessore per strato di materiale di riempimento. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Prevenzione incastro dei bordi" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Indica lo spessore per strato del materiale di riempimento del supporto. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Il tipo di codice G da generare." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Rottura del supporto in pezzi di grandi dimensioni" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Salto di alcuni collegamenti per rendere la struttura del supporto più facile da rompere. Questa impostazione è applicabile alla configurazione a zig-zag del riempimento del supporto." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La larghezza (direzione X) dell’area stampabile." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Dimensioni frammento supporto" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso." +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La larghezza delle travi della struttura ad incastro." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Conteggio linee di rottura supporto" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Indica la larghezza della torre di innesco." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Abilitazione del riparo paravento" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Indica la larghezza entro cui è ammessa la distorsione (jitter). Si consiglia di impostare questo valore ad un livello inferiore rispetto alla larghezza della parete esterna, poiché le pareti interne rimangono inalterate." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "In tal modo si creerà una protezione attorno al modello che intrappola l'aria (calda) e lo protegge da flussi d’aria esterna. Particolarmente utile per i materiali soggetti a deformazione." +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." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distanza X/Y del riparo paravento" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Indica la coordinata X della posizione della torre di innesco." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Indica la coordinata Y della posizione della torre di innesco." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitazione del riparo paravento" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Piena altezza" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitazione in altezza" +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." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altezza del riparo paravento" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "In tal modo si creerà una protezione attorno al modello che intrappola l'aria (calda) e lo protegge da flussi d’aria esterna. Particolarmente utile per i materiali soggetti a deformazione." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo." +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diametro della punta" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendi stampabile lo sbalzo" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione XY (orizzontalmente)." -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Cambia la geometria del modello stampato in modo da richiedere un supporto minimo. Sbalzi molto inclinati diventeranno sbalzi poco profondi. Le aree di sbalzo scendono per diventare più verticali." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione Z (verticalmente)." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Massimo angolo modello" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "L’angolo massimo degli sbalzi dopo essere stati resi stampabili. A un valore di 0° tutti gli sbalzi sono sostituiti da un pezzo del modello collegato al piano di stampa, 90° non cambia il modello in alcun modo." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Strati superiori" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Area foro di sbalzo massima" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distanza prolunga rivestimento superiore" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "L'area massima di un foro nella base del modello prima che venga rimossa da Rendi stampabile lo sbalzo. I fori più piccoli di questo verranno mantenuti. Un valore di 0 mm² riempirà i fori nella base del modello." +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Larghezza rimozione rivestimento superiore" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Abilitazione della funzione di Coasting" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accelerazione della parete interna della superficie superiore" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Il Coasting sostituisce l'ultima parte di un percorso di estrusione con un percorso di spostamento. Il materiale fuoriuscito viene utilizzato per stampare l'ultimo tratto del percorso di estrusione al fine di ridurre i filamenti." +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk parete esterna della superficie superiore" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume di Coasting" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocità di stampa della parete interna della superficie superiore" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flusso della parete interna della superficie superiore" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimo prima del Coasting" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accelerazione della parete esterna della superficie superiore" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "È il volume minimo di un percorso di estrusione prima di consentire il coasting. Per percorsi di estrusione inferiori, nel tubo Bowden si è accumulata una pressione inferiore, quindi il volume rilasciato si riduce in modo lineare. Questo valore dovrebbe essere sempre maggiore del volume di Coasting." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flusso della parete esterna della superficie superiore" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocità di Coasting" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk parete interna della superficie superiore" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "È la velocità a cui eseguire lo spostamento durante il Coasting, rispetto alla velocità del percorso di estrusione. Si consiglia di impostare un valore leggermente al di sotto del 100%, poiché durante il Coasting la pressione nel tubo Bowden scende." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna della superficie superiore" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Dimensioni cavità 3D incrociata" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accelerazione del rivestimento superficie superiore" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Estrusore rivestimento superficie superiore" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Immagine di densità del riempimento incrociato" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flusso rivestimento esterno superficie superiore" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel riempimento della stampa." +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk del rivestimento superficie superiore" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Immagine di densità del riempimento incrociato per il supporto" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Strati di rivestimento superficie superiore" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direzioni linea rivestimento superficie superiore" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Abilitazione del supporto conico" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Larghezza linea rivestimento superficie superiore" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Configurazione del rivestimento superficie superiore" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angolo del supporto conico" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocità del rivestimento superficie" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "È l'angolo di inclinazione del supporto conico. Con 0 gradi verticale e 90 gradi orizzontale. Angoli inferiori rendono il supporto più robusto, ma richiedono una maggiore quantità di materiale. Angoli negativi rendono la base del supporto più larga rispetto alla parte superiore." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Spessore dello strato superiore" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Larghezza minima del supporto conico" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Nelle superfici superiore e/o inferiore dell'oggetto con un angolo più grande di questa impostazione, il rivestimento esterno non sarà prolungato. Questo evita il prolungamento delle aree del rivestimento esterno strette che vengono create quando la pendenza della superficie del modello è quasi verticale. Un angolo di 0° è orizzontale e non causa il prolungamento di alcun rivestimento esterno, mentre un angolo di 90° è verticale e causa il prolungamento di tutto il rivestimento esterno." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili." +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rivestimento esterno incoerente (fuzzy)" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" -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)." +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accelerazione strato superiore/inferiore" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Fuzzy Skin solo all'esterno" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Estrusore superiore/inferiore" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Distorce solo i profili delle parti, non i fori di queste." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flusso superiore/inferiore" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk strato superiore/inferiore" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Indica la larghezza entro cui è ammessa la distorsione (jitter). Si consiglia di impostare questo valore ad un livello inferiore rispetto alla larghezza della parete esterna, poiché le pareti interne rimangono inalterate." +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direzioni delle linee superiori/inferiori" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densità del rivestimento esterno incoerente (fuzzy)" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Larghezza delle linee superiore/inferiore" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Indica la densità media dei punti introdotti su ciascun poligono in uno strato. Si noti che i punti originali del poligono vengono scartati, perciò una bassa densità si traduce in una riduzione della risoluzione." +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Configurazione dello strato superiore/inferiore" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocità di stampa delle parti superiore/inferiore" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Spessore dello strato superiore/inferiore" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Offset massimo dell'estrusione di compensazione del flusso" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Contatto con il Piano di Stampa" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diametro della torre" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fattore di compensazione del flusso" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angolazione della parte superiore (tetto) della torre" -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." +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 "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uso di strati adattivi" +msgctxt "travel label" +msgid "Travel" +msgstr "Spostamenti" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello." +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accelerazione spostamenti" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variazione massima strati adattivi" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distanza di aggiramento durante gli spostamenti" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base." +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk spostamenti" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Dimensione variazione strati adattivi" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocità degli spostamenti" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "La differenza in altezza dello strato successivo rispetto al precedente." +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Trattare il modello solo come una superficie, un volume o volumi con superfici libere. Il modo di stampa normale stampa solo volumi delimitati. “Superficie” stampa una parete singola tracciando la superficie della maglia senza riempimento e senza rivestimento esterno superiore/inferiore. “Entrambi” stampa i volumi delimitati come normali ed eventuali poligoni rimanenti come superfici." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensione della topografia dei layer adattivi" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Albero" -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." +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-esagonale" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angolo parete di sbalzo" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -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." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocità parete di sbalzo" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa." +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Abilita impostazioni ponte" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti." +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diametro del tronco" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Lunghezza minima parete ponte" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unione dei volumi in sovrapposizione" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." msgstr "Le pareti non supportate di lunghezza inferiore a questo valore verranno stampate utilizzando le normali impostazioni parete. Le pareti non supportate di lunghezza superiore verranno stampate utilizzando le impostazioni parete ponte." -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Soglia di supporto rivestimento esterno ponte" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uso di strati adattivi" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizzo delle torri" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Usa una velocità di accelerazione separata per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di accelerazione della linea stampata alla destinazione." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Usa un tasso di jerk separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di jerk della linea stampata alla destinazione." -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." +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del codice G. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto alle fasi E assolute. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script in codice G." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densità massima del riempimento rado del Bridge" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilizza speciali torri per il supporto di piccolissime aree di sbalzo. Queste torri hanno un diametro maggiore rispetto a quello dell'area che supportano. In prossimità dello sbalzo il diametro delle torri diminuisce, formando un 'tetto'." -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 "Densità massima del riempimento considerato rado. Il rivestimento esterno sul riempimento rado è considerato non supportato; pertanto potrebbe essere trattato come rivestimento esterno ponte." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilizzare questa maglia per modificare il riempimento di altre maglie a cui è sovrapposta. Sostituisce le regioni di riempimento di altre maglie con le regioni di questa maglia. Si consiglia di stampare solo una parete e non il rivestimento esterno superiore/inferiore per questa maglia." -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting parete ponte" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto." +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilizzare questa maglia per specificare dove nessuna parte del modello deve essere rilevata come in sovrapposizione. Può essere usato per rimuovere struttura di supporto indesiderata." -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocità di stampa della parete ponte" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Specificato dall’utente" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Indica la velocità alla quale vengono stampate le pareti ponte." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala verticale per la compensazione della contrazione" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flusso della parete ponte" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolleranza verticale negli strati sezionati. Di norma i contorni di uno strato vengono generati prendendo le sezioni incrociate fino al centro dello spessore di ciascun livello (intermedie). In alternativa, ogni strato può avere le aree che cadono all'interno del volume per tutto lo spessore dello strato (esclusive) oppure uno strato presenta le aree che rientrano all'interno di qualsiasi punto dello strato (inclusive). Le aree inclusive conservano la maggior parte dei dettagli; le esclusive generano la soluzione migliore, mentre le intermedie restano più vicine alla superficie originale." -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendi il riscaldamento del piano di stampa" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocità di stampa del rivestimento esterno ponte" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendi il riscaldamento dell’ugello" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accelerazione parete" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flusso del rivestimento esterno ponte" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Conteggio distribuzione parete" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Estrusore pareti" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densità del rivestimento esterno ponte" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flusso della parete" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk parete" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocità della ventola ponte" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Numero delle linee perimetrali" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte." +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Larghezza delle linee perimetrali" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte a strati multipli" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordinamento parete" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se abilitata, il secondo e il terzo strato sopra l’aria vengono stampati utilizzando le seguenti impostazioni. In caso contrario, questi strati vengono stampati utilizzando le impostazioni normali." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocità di stampa della parete" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocità di stampa del secondo rivestimento esterno ponte" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Spessore delle pareti" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lunghezza transizione parete" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flusso del secondo rivestimento esterno ponte" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distanza di filtro transizione parete" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margine filtro di transizione parete" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densità del secondo rivestimento esterno ponte" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angolo di soglia di transizione parete" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." +msgctxt "shell label" +msgid "Walls" +msgstr "Pareti" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" +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." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte." +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocità di stampa del terzo rivestimento esterno ponte" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte." +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando abilitato, l’ordine di stampa delle linee di riempimento viene ottimizzato per ridurre la distanza percorsa. La riduzione del tempo di spostamento ottenuta dipende in particolare dal modello sezionato, dalla configurazione di riempimento, dalla densità, ecc. Si noti che, per alcuni modelli che hanno piccole aree di riempimento, il tempo di sezionamento del modello può aumentare notevolmente." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flusso del terzo rivestimento esterno ponte" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto." -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Se abilitato, le coordinate della giunzione Z sono riferite al centro di ogni parte. Se disabilitato, le coordinate definiscono una posizione assoluta sul piano di stampa." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densità del terzo rivestimento esterno ponte" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando è maggiore di zero, l'Espansione orizzontale dei fori viene applicata gradualmente sui fori piccoli (i fori piccoli vengono espansi maggiormente). Quando l'opzione è impostata su zero, l'espansione orizzontale sarà applicata a tutti i fori. I fori più grandi del diametro massimo di espansione orizzontale non saranno espansi." -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocità della ventola del terzo rivestimento esterno ponte" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Se maggiore di zero, l'espansione orizzontale del foro è la quantità di offset applicata a tutti i fori in ciascun livello. I valori positivi aumentano la dimensione dei fori, i valori negativi riducono la dimensione dei fori. Se questa impostazione è abilitata, può essere ulteriormente regolata con l'opzione del diametro max dell'espansione orizzontale del foro." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Pulitura ugello tra gli strati" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "clean_between_layers description" -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 "Indica se includere nel G-Code la pulitura ugello tra i layer (massimo 1 per layer). L'attivazione di questa impostazione potrebbe influenzare il comportamento della retrazione al cambio layer. Utilizzare le impostazioni di retrazione per pulitura per controllare la retrazione in corrispondenza dei layer in cui sarà in funzione lo script di pulitura." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume di materiale tra le operazioni di pulitura" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." -msgctxt "max_extrusion_before_wipe description" -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 "Il massimo volume di materiale che può essere estruso prima di iniziare un'altra operazione di pulitura ugello. Se questo valore è inferiore al volume del materiale richiesto in un layer, l'impostazione non ha effetto in questo layer, vale a dire che si limita a una pulitura per layer." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando viene raggiunta la velocità minima per il tempo minimo per strato, sollevare la testina dalla stampa e attendere il tempo supplementare fino al raggiungimento del valore per tempo minimo per strato." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Retrazione per pulitura abilitata" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando il modello presenta piccoli spazi vuoti verticali composti da un numero ridotto di strati, intorno a questi strati di norma dovrebbe essere presente un rivestimento esterno nell'interstizio. Abilitare questa impostazione per non generare il rivestimento esterno se l'interstizio verticale è molto piccolo. Ciò consente di migliorare il tempo di stampa e il tempo di sezionamento, ma dal punto di vista tecnico lascia il riempimento esposto all'aria." -msgctxt "wipe_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." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quando creare transizioni tra numeri di parete pari e dispari. Una forma a cuneo con un angolo maggiore di questa impostazione non presenta transazioni e nessuna parete verrà stampata al centro per riempire lo spazio rimanente. Riducendo questa impostazione si riduce il numero e la lunghezza di queste pareti centrali, ma potrebbe lasciare spazi vuoti o sovraestrusione." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Quando si esegue la transizione tra numeri di parete diversi poiché la parte diventa più sottile, viene allocata una determinata quantità di spazio per dividere o unire le linee perimetrali." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distanza di retrazione per pulitura" +msgctxt "wipe_hop_enable description" +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 "Durante la pulizia, 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 "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura." +msgctxt "retraction_hop_enabled 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. Previene l’urto dell’ugello sulla stampa durante gli spostamenti riducendo la possibilità di far cadere la stampa dal piano." -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Entità di innesco supplementare dopo retrazione per pulitura" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Indica se la distanza X/Y del supporto esclude la distanza Z del supporto o viceversa. Quando X/Y esclude Z, la distanza X/Y può allontanare il supporto dal modello, influenzando l’effettiva distanza Z allo sbalzo. È possibile disabilitare questa funzione non applicando la distanza X/Y intorno agli sbalzi." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocità di retrazione per pulitura" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocità di retrazione per pulitura" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Indica se gli estrusori condividono un singolo riscaldatore piuttosto che avere ognuno il proprio." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocità di pulitura retrazione" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Indica se gli estrusori condividono un singolo ugello piuttosto che avere ognuno il proprio. Se impostato su true, si prevede che lo script gcode di avvio della stampante imposti tutti gli estrusori su uno stato di retrazione iniziale noto e mutuamente compatibile (nessuno o un solo filamento non retratto); in questo caso lo stato di retrazione iniziale è descritto, per estrusore, dal parametro 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura." +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Indica se la macchina ha un piano di stampa riscaldato." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa pulitura" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa dopo ripristino." +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Per centrare l’oggetto al centro del piano di stampa (0,0) anziché utilizzare il sistema di coordinate in cui l’oggetto è stato salvato." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Pulitura Z Hop" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura." -msgctxt "wipe_hop_enable description" -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 "Durante la pulizia, 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 "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Sceglie se includere comandi temperatura piano di stampa all’avvio del codice G. Quando start_gcode contiene già comandi temperatura piano di stampa la parte anteriore di Cura disabilita automaticamente questa impostazione." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altezza Z Hop pulitura" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Sceglie se includere comandi temperatura ugello all’avvio del codice G. Quando start_gcode contiene già comandi temperatura ugello la parte anteriore di Cura disabilita automaticamente questa impostazione." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." +msgctxt "clean_between_layers description" +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 "Indica se includere nel G-Code la pulitura ugello tra i layer (massimo 1 per layer). L'attivazione di questa impostazione potrebbe influenzare il comportamento della retrazione al cambio layer. Utilizzare le impostazioni di retrazione per pulitura per controllare la retrazione in corrispondenza dei layer in cui sarà in funzione lo script di pulitura." -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocità di sollevamento (Hop) per pulitura" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posizione X spazzolino di pulitura" +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 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 "Indica se stampare tutti i modelli un layer alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità \"uno per volta\" è possibile solo se a) è abilitato solo un estrusore b) tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e che tutti i modelli siano più bassi della distanza tra l'ugello e gli assi X/Y." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Posizione X in cui verrà avviato lo script di pulitura." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Conteggio ripetizioni operazioni di pulitura" +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." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distanza spostamento longitudinale di pulitura" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Indica la larghezza di una singola linea di riempimento." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino." +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Dimensione massima foro piccolo" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Indica la larghezza di una linea singola. In generale, la larghezza di ciascuna linea deve corrispondere alla larghezza dell’ugello. Tuttavia, una lieve riduzione di questo valore potrebbe generare stampe migliori." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Lunghezza massima dettagli di piccole dimensioni" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Indica la larghezza di una singola linea della torre di innesco." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Indica la larghezza di una singola linea dello skirt o del brim." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocità dettagli piccole dimensioni" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Indica la larghezza di una singola linea di supporto inferiore." -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." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Indica la larghezza di una singola linea di supporto superiore." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Indica la larghezza di una singola linea di supporto." -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." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Indica la larghezza di una singola linea superiore/inferiore." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alterna direzioni parete" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo." +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Indica la larghezza di una singola linea perimetrale." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Rimuovi angoli interni raft" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Indica la larghezza delle linee dello strato intermedio del raft. Una maggiore estrusione del secondo strato provoca l'incollamento delle linee al piano di stampa." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Conteggio parete base del raft" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Impostazioni riga di comando" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Larghezza della parete che sostituirà feature sottili (in base alle dimensioni minime della feature) del modello. Se la larghezza minima della linea perimetrale è più sottile dello spessore della feature, la parete diventerà spessa come la feature stessa." -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura." +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posizione X spazzolino di pulitura" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centra oggetto" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocità di sollevamento (Hop) per pulitura" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Per centrare l’oggetto al centro del piano di stampa (0,0) anziché utilizzare il sistema di coordinate in cui l’oggetto è stato salvato." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Ugello pulitura inattiva sulla torre di innesco" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distanza spostamento longitudinale di pulitura" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posizione maglia X" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Pulitura ugello tra gli strati" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset applicato all’oggetto per la direzione X." +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa pulitura" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posizione maglia Y" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Conteggio ripetizioni operazioni di pulitura" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset applicato all’oggetto per la direzione Y." +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distanza di retrazione per pulitura" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posizione maglia Z" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Retrazione per pulitura abilitata" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’." +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Entità di innesco supplementare dopo retrazione per pulitura" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrice rotazione maglia" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocità di pulitura retrazione" -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 "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocità di retrazione per pulitura" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flusso graduale abilitato" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocità di retrazione per pulitura" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Pulitura Z Hop" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accelerazione max del flusso graduale" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altezza Z Hop pulitura" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accelerazione massima per modifiche di flusso graduale" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Nel riempimento" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accelerazione del flusso max del livello iniziale" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Tenere nota dello strumento attivo dopo l'invio di comandi temporanei allo strumento non attivo. Richiesto per la stampa con doppio estrusore con Smoothie o altro firmware con comandi modali dello strumento." -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X in direzione positiva" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Dimensione della fase di discretizzazione del flusso graduale" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Posizione X in cui verrà avviato lo script di pulitura." -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durata di ciascuna fase nella modifica del flusso graduale" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y esclude Z" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reimposta durata flusso" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y in direzione positiva" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z in direzione positiva" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z Hop dopo cambio estrusore" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z Hop dopo cambio altezza estrusore" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altezza Z Hop" -msgctxt "material description" -msgid "Material" -msgstr "Materiale" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z Hop solo su parti stampate" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocità di sollevamento Z" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z Hop durante la retrazione" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Allineamento delle giunzioni a Z" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posizione della cucitura in Z" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Riferimento giunzione Z" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Giunzione Z X" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Giunzione Z Y" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z esclude X/Y" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "material label" -msgid "Material" -msgstr "Materiale" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Raggruppa le pareti esterne" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flusso della parete esterna della superficie superiore" +msgctxt "travel description" +msgid "travel" +msgstr "spostamenti" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "È la distanza tra la stampa e la parte inferiore del supporto." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flusso della parete interna della superficie superiore" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Durata di ciascuna fase nella modifica del flusso graduale" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna della superficie superiore" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Abilita le modifiche del flusso graduale. Se abilitate, il flusso viene gradualmente aumentato/diminuito rispetto al flusso target. Questa impostazione è utile per le stampanti con un tubo bowden in cui il flusso non viene immediatamente modificato all'avvio/all'arresto del motore dell'estrusore." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Per ogni corsa più lunga di questo valore, il flusso di materiale viene reimpostato al flusso target dei percorsi" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocità di stampa della parete interna della superficie superiore" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Dimensione della fase di discretizzazione del flusso graduale" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Flusso graduale abilitato" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accelerazione della parete esterna della superficie superiore" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Accelerazione max del flusso graduale" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Accelerazione del flusso max del livello iniziale" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accelerazione della parete interna della superficie superiore" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Accelerazione massima per modifiche di flusso graduale" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocità minima per le modifiche del flusso graduale per il primo livello" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk parete interna della superficie superiore" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Brim torre di innesco" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk parete esterna della superficie superiore" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Reimposta durata flusso" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 4aefbe2bb34..68e8674d350 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -135,8 +136,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*これらの変更を有効にするには、アプリケーションを再始動する必要があります。" msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- マーケットプレースから材料プロファイルとプラグインを追加\n- 材料プロファイルとプラグインのバックアップと同期\n- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- マーケットプレースから材料プロファイルとプラグインを追加\n" +"- 材料プロファイルとプラグインのバックアップと同期\n" +"- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" msgctxt "@heading" msgid "-- incomplete --" @@ -162,6 +169,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF ファイル" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MFリーダー" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MFリーダー" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MFリーダーのプラグインが破損しています。" @@ -182,29 +197,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "ユーザーが変更した設定のみがカスタムプロファイルに保存されます。
    その設定に対応する材料の場合、新しいカスタムプロファイルは %1からプロパティを継承します。" +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGLレンダラー: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGLベンダー: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGLバージョン: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

    \n

    「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

    \n" +"

    「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

    \n

    開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

    \n

    バックアップは、設定フォルダに保存されます。

    \n

    問題解決のために、このクラッシュ報告をお送りください。

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

    \n" +"

    開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

    \n" +"

    バックアップは、設定フォルダに保存されます。

    \n" +"

    問題解決のために、このクラッシュ報告をお送りください。

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

    \n

    {model_names}

    \n

    可能な限り最高の品質および信頼性を得る方法をご覧ください。

    \n

    印字品質ガイドを見る

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

    \n" +"

    {model_names}

    \n" +"

    可能な限り最高の品質および信頼性を得る方法をご覧ください。

    \n" +"

    印字品質ガイドを見る

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -223,6 +266,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF ファイル" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMFリーダー" + msgctxt "@label" msgid "Abort" msgstr "中止" @@ -259,6 +306,10 @@ msgctxt "@button" msgid "Accept" msgstr "承認する" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" + msgctxt "@label" msgid "Account synced" msgstr "アカウント同期" @@ -351,6 +402,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "プリンタを手動で追加する" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "アカウントからプリンター{name}({model})を追加しています" @@ -387,10 +439,23 @@ msgctxt "@button" msgid "Agree" msgstr "同意する" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "全てのファイル" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "すべてのサポートのタイプ ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "匿名データの送信を許可する" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-codeファイルの読み込み、表示を許可する。" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "毎回確認する" @@ -463,6 +528,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1 をキューの最上位に移動しますか?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name}を一時的に削除してもよろしいですか?" @@ -471,6 +537,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。" +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1を取り外しますか?この作業はやり直しが効きません!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。" @@ -483,6 +554,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "すべてのモデルをグリッドに配置" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "質問をする" @@ -531,6 +606,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "バックアップとリセットの設定" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "構成をバックアップしてリストアします。" + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "材料設定とプラグインのバックアップと同期" @@ -543,6 +622,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "バックアップ" +msgctxt "@label" +msgid "Balanced" +msgstr "バランス" + msgctxt "@action:label" msgid "Base (mm)" msgstr "ベース(mm)" @@ -619,10 +702,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMakerプリンターに接続できませんか?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "プリンタを追加する前に、{0}からプロファイルの取り込はできません。" +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。" @@ -631,6 +716,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFPファイルに書き込めません:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "キャンセル" + msgctxt "@button" msgid "Cancel" msgstr "キャンセル" @@ -691,8 +780,21 @@ msgctxt "@label" msgid "Checking..." msgstr "確認しています..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "ファームウェアアップデートをチェックする。" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" msgctxt "@action:inmenu menubar:edit" @@ -771,6 +873,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "圧縮G-codeファイル" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "圧縮G-codeリーダー" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "圧縮G-codeライター" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "構成の変更" @@ -807,6 +917,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "直径変更の確認" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "モデルを取り除きました" + msgctxt "@action:button" msgid "Connect" msgstr "接続" @@ -839,6 +953,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "クラウド経由で接続" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker Communityをご参照ください。" @@ -879,6 +997,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。" @@ -891,6 +1010,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "サーバーの応答を解釈できませんでした。" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "マーケットプレースにアクセスできませんでした。" @@ -903,6 +1026,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "材料アーカイブを{}に保存できませんでした:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}を保存できませんでした: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" @@ -911,17 +1040,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "データをプリンタにアップロードできませんでした。" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}\n処理を実行する権限がありません。" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"EnginePluginを開始できませんでした:{self._plugin_id}\n" +"処理を実行する権限がありません。" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}\nOSによりブロックされています(ウイルス対策?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"EnginePluginを開始できませんでした:{self._plugin_id}\n" +"OSによりブロックされています(ウイルス対策?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}\nリソースは一時的に利用できません" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"EnginePluginを開始できませんでした:{self._plugin_id}\n" +"リソースは一時的に利用できません" msgctxt "@title:window" msgid "Crash Report" @@ -963,6 +1107,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Libraryでプリントプロジェクトを作成します。" +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "バックアップを作成しています..." @@ -975,10 +1123,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura バックアップ" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura バックアップ" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Curaプロファイル" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Curaプロファイルリーダー" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Curaプロファイルライター" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Curaが3MF fileを算出します" @@ -991,13 +1151,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Curaを開始できません" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。" msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "CuraはUltiMakerのコミュニティの協力によって開発され、\nCuraはオープンソースで使えることを誇りに思います:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"CuraはUltiMakerのコミュニティの協力によって開発され、\n" +"Curaはオープンソースで使えることを誇りに思います:" msgctxt "@label" msgid "Cura language" @@ -1007,6 +1172,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Curaバージョン" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Curaエンジンバックエンド" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "通貨:" @@ -1087,10 +1264,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "デフォルト" -msgctxt "@label" -msgid "Default" -msgstr "デフォルト" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "プロファイル交換時に設定値を変更するためのデフォルト処理: " @@ -1263,10 +1436,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "取り出す" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "リムーバブルデバイス{0}を取り出す" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" @@ -1291,6 +1466,10 @@ msgctxt "@label" msgid "Enabled" msgstr "有効" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" + msgctxt "@title:label" msgid "End G-code" msgstr "G-codeの終了" @@ -1319,6 +1498,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "プリンターのIPアドレスを入力します。" +msgctxt "@info:title" +msgid "Error" +msgstr "エラー" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "エラー・トレースバック" @@ -1363,6 +1546,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "書き出し完了" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "{0}にプロファイルを書き出しました" @@ -1371,6 +1555,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "UltiMaker Curaをプラグインと材料プロファイルで拡張します。" +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" + msgctxt "@label" msgid "Extruder" msgstr "エクストルーダー" @@ -1407,6 +1595,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "材料のアーカイブを作成してプリンターと同期するのに失敗しました。" +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" @@ -1415,22 +1604,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "フィラメントの書き出しに失敗しました %1: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "{0}にプロファイルを書き出すのに失敗しました: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "{0}にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルの取り込みに失敗しました:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルの取り込に失敗しました:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}からプロファイルの取り込に失敗しました:{1}" @@ -1463,6 +1657,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "フィラメントの重さ" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "すでに存在するファイルです" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "ファイル保存" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" @@ -1495,6 +1698,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "ファームウェアアップデート" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "ファームウェアアップデートチェッカー" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "ファームウェアアップデーター" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。" @@ -1591,6 +1802,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-codeファイル" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-codeプロファイルリーダー" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-codeリーダー" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-codeライター" + msgctxt "@label" msgid "G-code flavor" msgstr "G-codeフレーバー" @@ -1623,6 +1846,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "ガントリーの高さ" +msgctxt "@title:tab" +msgid "General" +msgstr "一般" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。" @@ -1655,6 +1882,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "グリッドの配置" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "グループ #{group_nr}" @@ -1727,6 +1955,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" +msgctxt "name" +msgid "Image Reader" +msgstr "画像リーダー" + msgctxt "@action:button" msgid "Import" msgstr "取り込む" @@ -1975,6 +2207,10 @@ msgctxt "@action" msgid "Learn more" msgstr "詳しく見る" +msgctxt "@action:button" +msgid "Learn more" +msgstr "詳しく見る" + msgctxt "@button" msgid "Learn more" msgstr "詳しく見る" @@ -2003,6 +2239,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "左ビュー" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "レガシーCuraプロファイルリーダー" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "問題が発生していることを開発者にお知らせください。" @@ -2083,6 +2323,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "ログ" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "プリンターへの接続が切断されました" @@ -2091,6 +2335,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "プリンターの設定" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "プリンターの設定アクション" + msgctxt "@backuplist:label" msgid "Machines" msgstr "プリンタ" @@ -2103,6 +2351,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "データファイルを送信する前に、プリンターとプリンターの構成設定にそのG-codeが適応しているか確認してください。G-codeの表示が適切でない場合があります。" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "フィラメントを管理する..." @@ -2151,6 +2415,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "UltiMaker Curaのプラグインと材料プロファイルはここで管理します。プラグインを常に最新の状態に保ち、セットアップのバックアップを定期的に取るようにしてください。" +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" + msgctxt "@label" msgid "Manufacturer" msgstr "製造元" @@ -2163,6 +2435,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "マーケットプレース" +msgctxt "name" +msgid "Marketplace" +msgstr "マーケットプレース" + msgctxt "@action:label" msgid "Material" msgstr "材料" @@ -2179,6 +2455,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "フィラメントの色" +msgctxt "name" +msgid "Material Profiles" +msgstr "フィラメントプロファイル" + msgctxt "@label" msgid "Material Type" msgstr "フィラメントタイプ" @@ -2223,6 +2503,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "モード" +msgctxt "name" +msgid "Model Checker" +msgstr "モデルチェッカー" + msgctxt "@info:title" msgid "Model Errors" msgstr "モデルエラー" @@ -2239,6 +2523,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "モニター" +msgctxt "name" +msgid "Monitor Stage" +msgstr "モニターステージ" + msgctxt "@action:button" msgid "Monitor print" msgstr "プリントをモニタリング" @@ -2312,6 +2600,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "ネットワークエラー" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "%sの新しい安定版ファームウェアが利用可能です" @@ -2324,6 +2613,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "新しいUltiMakerプリンターは、Digital Factoryに接続してリモートで監視できます。" +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" @@ -2369,6 +2659,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "コスト予測がありません" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "ファイル{0}にはカスタムプロファイルがインポートされていません" @@ -2477,6 +2768,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "エクストルーダーの数" +msgctxt "@action:button" +msgid "OK" +msgstr "" + msgctxt "@label" msgid "OS language" msgstr "OS言語" @@ -2497,6 +2792,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "トップのレイヤーを表示する" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。" @@ -2629,7 +2925,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "クリップボードから貼り付け" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "一時停止" @@ -2654,6 +2949,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "各モデル設定" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "各モデル設定ツール" + msgid "Perspective" msgstr "パースペクティブ表示" @@ -2690,8 +2989,15 @@ msgid "Please give the required permissions when authorizing this application." msgstr "このアプリケーションの許可において必要な権限を与えてください。" msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "プリンタが接続されているか確認し、以下を行います。\n- プリンタの電源が入っているか確認します。\n- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"プリンタが接続されているか確認し、以下を行います。\n" +"- プリンタの電源が入っているか確認します。\n" +"- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" msgctxt "@text" msgid "Please name your printer" @@ -2705,6 +3011,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "このプロファイルの名前を指定してください。" +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "プラグインライセンスをお読みになり、同意してください。" @@ -2714,8 +3024,16 @@ msgid "Please remove the print" msgstr "造形物を取り出してください" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "設定を見直し、モデルが次の状態かどうかを確認してください。\n- 造形サイズに合っている\n- 有効なエクストルーダーに割り当てられている\n- すべてが修飾子メッシュとして設定されているわけではない" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"設定を見直し、モデルが次の状態かどうかを確認してください。\n" +"- 造形サイズに合っている\n" +"- 有効なエクストルーダーに割り当てられている\n" +"- すべてが修飾子メッシュとして設定されているわけではない" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2765,6 +3083,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "後処理" +msgctxt "name" +msgid "Post Processing" +msgstr "後処理" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "プラグイン処理後" @@ -2781,6 +3103,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "準備する" +msgctxt "name" +msgid "Prepare Stage" +msgstr "ステージの準備" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "準備中..." @@ -2801,6 +3127,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "プレビュー" +msgctxt "name" +msgid "Preview Stage" +msgstr "プレビューステージ" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "プライムタワー" @@ -2927,6 +3257,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "プリンターの設定は、プロジェクトに保存されている設定に合わせて更新されます。" +msgctxt "@title:tab" +msgid "Printers" +msgstr "プリンター" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Digital Factoryからプリンターが追加されました:" @@ -2987,6 +3321,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "プロファイル設定" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "プロファイル{0}は不特定なファイルまたは破損があります。" @@ -3011,18 +3346,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "プログラミング用語" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "プロジェクトファイル {0} に不明なマシンタイプ {1} があります。マシンをインポートできません。代わりにモデルをインポートします。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "プロジェクトファイル{0}は破損しています:{1}。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "プロジェクトファイル{0}はこのバージョンのUltiMaker Curaでは認識できないプロファイルを使用して作成されています。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" @@ -3031,6 +3370,106 @@ msgctxt "@label" msgid "Properties" msgstr "プロパティ" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "ファームウェアアップデートのためのマシン操作を提供します。" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Curaでモニターステージを提供します。" + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "ノーマルなソリットメッシュビューを供給する。" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Curaで準備ステージを提供します。" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Curaでプレビューステージを提供します。" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Curaプロファイルを書き出すためのサポートを供給する。" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Curaプロファイルを取り込むためのサポートを供給する。" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMFファイルの読込みをサポートしています。" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3Dファイルを読むこむためのサポートを供給する。" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "モデルファイルを読み込むためのサポートを供給します。" + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MFファイルを読むこむためのサポートを供給する。" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "各モデル設定を与える。" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "透視ビューイング。" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "スライスされたレイヤーデータのプレビューを提供します。" + msgctxt "@label" msgid "PyQt version" msgstr "PyQtバージョン" @@ -3051,6 +3490,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Qtバージョン" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。" @@ -3067,6 +3507,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1を終了する" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "圧縮ファイルからG-codeを読み取ります。" + msgctxt "@button" msgid "Recommended" msgstr "推奨" @@ -3119,6 +3563,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "リムーバブルドライブ" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" + msgctxt "@action:button" msgid "Remove" msgstr "取り除く" @@ -3135,6 +3583,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "名を変える" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "プロファイル名を変える" @@ -3271,14 +3723,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "リムーバブルドライブに保存" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "リムーバブルドライブ{0}に {1}として保存" +msgctxt "@info:title" +msgid "Saving" +msgstr "保存中" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存中" @@ -3371,6 +3830,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "プリンターに材料を送信しています" +msgctxt "name" +msgid "Sentry Logger" +msgstr "監視ロガー" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "シリアルコミュニケーションライブラリー" @@ -3403,6 +3866,10 @@ msgctxt "@label" msgid "Settings" msgstr "設定" +msgctxt "@title:tab" +msgid "Settings" +msgstr "設定" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "現在利用可能な次のエクストルーダーに合わせて設定が変更されました:" @@ -3563,6 +4030,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMakerのプラットフォームにサインイン" +msgctxt "name" +msgid "Simulation View" +msgstr "シミュレーションビュー" + msgctxt "@tooltip" msgid "Skin" msgstr "スキン" @@ -3591,6 +4062,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "セッティングを変更すると自動にスライスします。" +msgctxt "name" +msgid "Slice info" +msgstr "スライスインフォメーション" + msgctxt "@message:title" msgid "Slicing failed" msgstr "スライスに失敗しました" @@ -3607,13 +4082,22 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "スムージング" +msgctxt "name" +msgid "Solid View" +msgstr "ソリッドビュー" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "ソリッドビュー" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n表示されるようにクリックしてください。" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"いくらかの非表示設定は通常の計算された値と異なる値を使用します。\n" +"表示されるようにクリックしてください。" msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3628,8 +4112,13 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "%1で定義された一部の設定値が上書きされました。" msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "いくらかの設定プロファイルにある値とことなる場合無効にします。\nプロファイルマネージャーをクリックして開いてください。" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"いくらかの設定プロファイルにある値とことなる場合無効にします。\n" +"プロファイルマネージャーをクリックして開いてください。" msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3655,8 +4144,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "スポンサーCura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "スポンサーCura" @@ -3701,6 +4188,10 @@ msgctxt "@label" msgid "Strength" msgstr "強度" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "フィラメントの%1への書き出しが完了ました" @@ -3709,6 +4200,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "フィラメント%1の取り込みに成功しました" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" @@ -3729,6 +4221,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "サポートブロッカー" +msgctxt "name" +msgid "Support Eraser" +msgstr "サポート消去機能" + msgctxt "@tooltip" msgid "Support Infill" msgstr "サポートイルフィル" @@ -3834,6 +4330,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "バックアップが最大ファイルサイズを超えています。" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "バランスのとれたプロファイルは、生産性、表面品質、機械的特性、寸法精度のバランスを取るために設計されています。" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "ミリメートルでビルドプレートからベースの高さ。" @@ -3890,6 +4390,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "{0} は既に存在します。ファイルを上書きしますか?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" @@ -3948,8 +4453,22 @@ msgid "The nozzle inserted in this extruder." msgstr "ノズルが入ったエクストルーダー。" msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "プリントのインフィル材料のパターン:\n\n非機能モデルをクイックプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。 \n\n応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。\n\n複数の方向に高い強度を必要とする機能的な3Dプリントの場合は、キュービック、キュービックサブディビジョン、クォーターキュービック、オクテット、ジャイロイドを使用します。" +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"プリントのインフィル材料のパターン:\n" +"\n" +"非機能モデルをクイックプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。 \n" +"\n" +"応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。\n" +"\n" +"複数の方向に高い強度を必要とする機能的な3Dプリントの場合は、キュービック、キュービックサブディビジョン、クォーターキュービック、オクテット、ジャイロイドを使用します。" msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4100,6 +4619,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "このプロファイル{0}には、正しくないデータが含まれているため、インポートできません。" @@ -4113,8 +4633,13 @@ msgid "This project contains materials or plugins that are currently not install msgstr "このプロジェクトには、現在Curaにインストールされていない素材またはプラグインが含まれています。
    不足しているパッケージをインストールすると、プロジェクトが再度開きます。" msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "この設定にプロファイルと異なった値があります。\nプロファイルの値を戻すためにクリックしてください。" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"この設定にプロファイルと異なった値があります。\n" +"プロファイルの値を戻すためにクリックしてください。" msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4130,8 +4655,13 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "このセッティングは通常計算されます、今は絶対値に固定されています。\n計算された値に変更するためにクリックを押してください。" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"このセッティングは通常計算されます、今は絶対値に固定されています。\n" +"計算された値に変更するためにクリックを押してください。" msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4157,6 +4687,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "材料プロファイルをDigital Factoryに接続されているすべてのプリンターと自動的に同期するには、Curaにサインインしている必要があります。" +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "接続を確立するには、{website_link}にアクセスしてください" @@ -4169,6 +4700,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "印刷ジョブをネットワークを介してプリンターに直接送信するには、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターを WIFI ネットワークに接続します。Cura をプリンタに接続していない場合でも、USB ドライブを使用して g コードファイルをプリンターに転送することはできます。" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください" @@ -4217,6 +4749,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimeshリーダー" + msgctxt "@button" msgid "Troubleshooting" msgstr "トラブルシューティング" @@ -4233,10 +4769,26 @@ msgctxt "@action:label" msgid "Type" msgstr "タイプ" +msgctxt "@label" +msgid "Type" +msgstr "タイプ" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP リーダー" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFPライター" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USBプリンティング" +msgctxt "name" +msgid "USB printing" +msgstr "USBプリンティング" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMakerアカウント" @@ -4253,6 +4805,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMakerフォーマットパッケージ" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimakerネットワーク接続" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker検証済みパッケージ" @@ -4261,6 +4817,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker検証済みプラグイン" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMakerプリンターのアクション" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMakerプリンター" @@ -4273,6 +4833,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "プロファイルを追加できません。" @@ -4281,13 +4845,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "以下のローカルEnginePluginサーバーの実行可能ファイルが見つかりません:{self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "実行中のEnginePluginを強制終了できません:{self._plugin_id}\nアクセスが拒否されました。" +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"実行中のEnginePluginを強制終了できません:{self._plugin_id}\n" +"アクセスが拒否されました。" msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4309,10 +4879,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}" @@ -4321,6 +4893,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" @@ -4369,6 +4942,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "不明なパッケージ" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}" @@ -4433,15 +5007,119 @@ msgctxt "@button" msgid "Updating..." msgstr "更新中..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "カスタムファームウェアをアップロードする" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "プリントジョブをプリンターにアップロードしています。" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" -msgctxt "@info:backup_status" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "構成をCura 4.6.2からCura 4.7に更新します。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "構成をCura 5.3からCura 5.4にアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "カスタムファームウェアをアップロードする" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "プリントジョブをプリンターにアップロードしています。" + +msgctxt "@info:backup_status" msgid "Uploading your backup..." msgstr "バックアップをアップロードしています..." @@ -4465,6 +5143,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "ボロノイ図生成を含むユーティリティライブラリ" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1 から2.2にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2 から2.4にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5から2.6にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6から2.7にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7から3.0にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0から3.1にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2から3.3にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3から3.4にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4 から 3.5 にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5 から 4.0 にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.0 から 4.1 にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "バージョン4.11から4.12へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "バージョン4.13から5.0へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2から4.3にバージョンをアップグレート" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3から4.4にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4から4.5にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "バージョン4.5から4.6へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0から4.6.2へのバージョン更新" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2から4.7へのバージョン更新" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "バージョン4.7から4.8へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "バージョン4.8から4.9へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "バージョン4.9から4.10へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2から5.3にバージョンアップグレート" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3から5.4へのバージョンアップ" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4から5.5へのバージョンアップ" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factoryでプリンターを表示する" @@ -4513,6 +5295,11 @@ msgctxt "@button" msgid "Want more?" msgstr "詳しく知りたい?" +msgctxt "@info:title" +msgid "Warning" +msgstr "警告" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。" @@ -4573,6 +5360,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "幅(mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "圧縮ファイルにG-codeを書き込みます。" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "ファイルにG-codeを書き込みます。" + msgctxt "@label" msgid "X (Width)" msgstr "X(幅)" @@ -4585,6 +5380,10 @@ msgctxt "@label" msgid "X min" msgstr "X分" +msgctxt "name" +msgid "X-Ray View" +msgstr "透視ビュー" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "透視ビューイング" @@ -4597,6 +5396,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3Dファイル" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3Dリーダー" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (奥行き)" @@ -4614,18 +5417,30 @@ msgid "Yes" msgstr "はい" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n" +"続行してもよろしいですか?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" +"続行してもよろしいですか?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。" +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。" @@ -4636,7 +5451,10 @@ msgstr "現在バックアップは存在しません。[今すぐバックア msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "一部のプロファイル設定がカスタマイズされています。\nこれらの変更された設定をプロファイルの切り替え後も維持しますか?\n変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" +msgstr "" +"一部のプロファイル設定がカスタマイズされています。\n" +"これらの変更された設定をプロファイルの切り替え後も維持しますか?\n" +"変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4666,9 +5484,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "新しいプリンターがUltiMaker Curaに自動的に表示されます" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -4726,6 +5549,7 @@ msgctxt "@label" msgid "version: %1" msgstr "バージョン: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "次回のアカウントの同期までに{printer_name}は削除されます。" @@ -4734,626 +5558,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}プラグインのダウンロードに失敗しました" -msgid "Provides support for exporting Cura profiles." -msgstr "Curaプロファイルのエクスポートをサポートします。" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Curaプロファイルライター" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "デフォルト" -msgctxt "name" -msgid "Slice info" -msgstr "スライスインフォメーション" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "レガシーCuraプロファイルリーダー" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3Dファイルを読むこむためのサポートを供給する。" - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3Dリーダー" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFPライター" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5 から 4.0 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "バージョン4.7から4.8へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "バージョン4.9から4.10へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2から3.3にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7から3.0にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "バージョン4.11から4.12へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6から2.7にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "バージョン4.8から4.9へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3から4.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3から3.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4から4.5にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5から2.6にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1 から2.2にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2から4.3にバージョンをアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2から5.3にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2 から2.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4 から 3.5 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "バージョン4.13から5.0へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4から5.5へのバージョンアップ" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "バージョン4.5から4.6へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0から3.1にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "構成をCura 4.6.2からCura 4.7に更新します。" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2から4.7へのバージョン更新" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "構成をCura 5.3からCura 5.4にアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3から5.4へのバージョンアップ" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" - -msgctxt "name" -msgid "Post Processing" -msgstr "後処理" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "スライスされたレイヤーデータのプレビューを提供します。" - -msgctxt "name" -msgid "Simulation View" -msgstr "シミュレーションビュー" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Curaプロファイルを取り込むためのサポートを供給する。" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Curaプロファイルリーダー" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "各モデル設定を与える。" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "各モデル設定ツール" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Curaでプレビューステージを提供します。" - -msgctxt "name" -msgid "Preview Stage" -msgstr "プレビューステージ" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" - -msgctxt "name" -msgid "Support Eraser" -msgstr "サポート消去機能" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-codeファイルの読み込み、表示を許可する。" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-codeリーダー" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "構成をバックアップしてリストアします。" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura バックアップ" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" - -msgctxt "name" -msgid "Material Profiles" -msgstr "フィラメントプロファイル" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMakerプリンターのアクション" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "透視ビューイング。" - -msgctxt "name" -msgid "X-Ray View" -msgstr "透視ビュー" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Ultimakerのネットワーク接属できるプリンターのネットワーク接続を管理します。" - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ultimakerネットワーク接続" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "プリンターの設定アクション" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "モデルファイルを読み込むためのサポートを供給します。" - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimeshリーダー" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" - -msgctxt "name" -msgid "Marketplace" -msgstr "マーケットプレース" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Curaでモニターステージを提供します。" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "モニターステージ" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" - -msgctxt "name" -msgid "Image Reader" -msgstr "画像リーダー" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "ファームウェアアップデートのためのマシン操作を提供します。" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "ファームウェアアップデーター" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Curaエンジンバックエンド" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Curaで準備ステージを提供します。" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "ステージの準備" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "ファームウェアアップデートをチェックする。" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "ファームウェアアップデートチェッカー" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "ファイルにG-codeを書き込みます。" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-codeライター" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" - -msgctxt "name" -msgid "Model Checker" -msgstr "モデルチェッカー" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MFリーダー" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" - -msgctxt "name" -msgid "USB printing" -msgstr "USBプリンティング" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMFファイルの読込みをサポートしています。" - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMFリーダー" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-codeプロファイルリーダー" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "ノーマルなソリットメッシュビューを供給する。" - -msgctxt "name" -msgid "Solid View" -msgstr "ソリッドビュー" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "監視ロガー" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "圧縮ファイルからG-codeを読み取ります。" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "圧縮G-codeリーダー" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP リーダー" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MFリーダー" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "圧縮ファイルにG-codeを書き込みます。" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "圧縮G-codeライター" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Curaプロファイルを書き出すためのサポートを供給する。" - -msgctxt "@info:title" -msgid "Error" -msgstr "エラー" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "キャンセル" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "設定" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "{0} は既に存在します。ファイルを上書きしますか?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "詳しく見る" - -msgctxt "@title:tab" -msgid "General" -msgstr "一般" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1を取り外しますか?この作業はやり直しが効きません!" - -msgctxt "@label" -msgid "Type" -msgstr "タイプ" - -msgctxt "@info:title" -msgid "Saving" -msgstr "保存中" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "すでに存在するファイルです" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "すべてのサポートのタイプ ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0}を保存できませんでした: {1}" - -msgctxt "@info:title" -msgid "Warning" -msgstr "警告" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "プリンター" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "ファイル保存" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "モデルを取り除きました" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "全てのファイル" - -msgctxt "@label" -msgid "Balanced" -msgstr "バランス" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "バランスのとれたプロファイルは、生産性、表面品質、機械的特性、寸法精度のバランスを取るために設計されています。" +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Curaプロファイルのエクスポートをサポートします。" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index f7af60bb673..d6e5ffe40e7 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "エクストルーダー" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "エクストルーダープリント冷却ファン" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "エクストルーダー" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "エクストルーダーがG-Codeを終了する" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "エクストルーダーのエンドポジションの絶対値" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。" - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "エクストルーダーエンド位置X" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のX座標の最終位置。" - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "エクストルーダーエンド位置Y" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のY座標の最終位置。" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "エクストルーダープリント冷却ファン" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "エクストルーダーがG-Codeを開始する" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "エクストルーダーのスタート位置の絶対値" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "エクストルーダー スタート位置X" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのX座標のスタート位置。" - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "エクストルーダースタート位置Y" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのY座標のスタート位置。" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。" + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" + +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" + +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ノズルID" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Xノズルオフセット" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "ノズルのX軸のオフセット。" - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Yノズルオフセット" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "ノズルのY軸のオフセット。" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" - -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーを切った際のX座標の最終位置。" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "ノズルのX軸のオフセット。" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーのX座標のスタート位置。" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーを切った際のY座標の最終位置。" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "ノズルのY軸のオフセット。" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーのY座標のスタート位置。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 60c41dcff3c..6e19d04e13e 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5470 +12,5542 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "プリンターのタイプ" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3Dプリンターの機種名。" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "プリンターのバリエーションの表示" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。" -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Codeの開始" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。" -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "最初に実行するG-codeコマンドは、\nで区切ります。" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-codeの終了" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "最後に実行するG-codeコマンドは、\nで区切ります。" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "マテリアルGUID" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "マテリアルのGUID。これは自動的に設定されます。" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "ビルドプレート加熱待ち時間" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。" -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "ノズル加熱待ち時間" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "開始時にノズルの温度が達するまで待つかどうか。" +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "エクストルーダーの絶対位置" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "マテリアル温度を含む" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "適応レイヤー最大差分" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "適応レイヤーのトポグラフィーサイズ" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "ビルドプレート温度を含む" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "適応レイヤー差分ステップサイズ" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "プリンターの幅" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。\n" +"この機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "造形可能領域の幅(X方向)。" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "密着性" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "プリンターの奥行" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "接着傾向" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "造形可能領域の幅(Y方向)。" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "プリンターの高さ" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "造形可能領域の幅(Z方向)。" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "プリントのインフィルの密度を調整します。" -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "ビルドプレートの形状" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "造形不可領域を考慮しないビルドプレートの形状。" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "枝の先端を生成するために使用されるサポート構造の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。非常に大きな値を指定するにはサポートルーフを使用するか、上部のサポート密度が同様に高くなるようにしてください。" -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "長方形" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "楕円形" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "ビルドプレートの材料" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "プリンターに取り付けられているビルドプレートの材料です。" +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "ガラス" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。" -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "アルミニウム" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "すべて" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "加熱式ビルドプレートあり" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "一度にすべて" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "造形温度安定化処理有り" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "代替予備壁" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "機器が造形温度を安定化処理できるかどうかです。" +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "代替メッシュの削除" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "ウォールの代替の向き" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "アルミニウム" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "常にアクティブなツールを書き込む" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "中心位置" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "エクストルーダーの数" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "サポートのフロアに適用されるオフセット量。" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "有効なエクストルーダーの数" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "サポートのルーフに適用されるオフセット量。" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "ノズル外径" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "ノズルの外径。" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "ノズル長さ" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "メッシュオーバーハング例外" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "滲出防止引戻し位置" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "ノズル角度" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "滲出防止引戻し速度" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "水平面とノズル直上の円錐部分との間の角度。" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "ノズル加熱長さ" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "ノズルからの熱がフィラメントに伝達される距離。" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "移動は印刷したパーツを回避する" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "ノズルの温度管理を有効にする" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "移動はサポートを回避する" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "戻る" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "加熱速度" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "後方左" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "後方右" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "両方" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "スタンバイ温度までの最短時間" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "両方重ねる" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底面レイヤー" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-codeフレーバー" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底層初期レイヤー" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "生成するG-codeの種類です。" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底面展開距離" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底面除去幅" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底面厚さ" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "枝密度" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "枝直径" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "枝直径角度" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "フィラメントの引き出し準備引戻し位置" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "フィラメント引き出し準備引戻し速度" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "フィラメント引き出し準備温度" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "フィラメント引き出しの引戻し位置" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "ファームウェア引き戻し" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "フィラメント引き出しの引戻し速度" -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) を使用するかどうか。" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "フィラメント引き出し温度" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "エクストルーダーのヒーター共有" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "接続部分のサポート分割" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "ブリッジファン速度" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "エクストルーダーの共有ノズル" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "ブリッジを構成する多重レイヤー" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。" +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "ブリッジセカンドスキンの密度" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共有ノズルの初期引き戻し" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "ブリッジセカンドスキンのファン速度" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "ブリッジセカンドスキンのフロー" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "拒否エリア" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "ブリッジセカンドスキンの速度" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "ブリッジスキンの密度" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "ノズル拒否エリア" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "ブリッジスキンフロー" -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。" +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "ブリッジスキン速度" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "プリントヘッドとファンポリゴン" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "ブリッジスキンサポートのしきい値" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "ブリッジスパースインフィル最大密度" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "ガントリーの高さ" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。" - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "エクストルーダーのオフセット" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "エクストルーダーの絶対位置" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "最大速度X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X方向のモーターの最大速度。" - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "最大速度Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y方向のモーターの最大速度。" - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "最大速度Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z方向のモーターの最大速度。" - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "最大速度E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "フィラメントの最大速度。" - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "最大加速度X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X方向のモーターの最大速度" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "最大加速度Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y方向のモーターの最大加速度。" - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "最大加速度Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z方向のモーターの最大加速度。" - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "フィラメント最大加速度" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "フィラメントのモーターの最大加速度。" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "ブリッジサードスキンの密度" -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "デフォルト加速度" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "ブリッジサードスキンのファン速度" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "プリントヘッド移動のデフォルトの加速度。" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "ブリッジサードスキンのフロー" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "X-Yデフォルトジャーク" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "ブリッジサードスキンの速度" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "水平面内での移動のデフォルトジャーク。" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "ブリッジ壁コースティング" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Zデフォルトジャーク" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "ブリッジ壁フロー" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z方向のモーターのデフォルトジャーク。" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "ブリッジ壁速度" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "フィラメントデフォルトジャーク" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "ブリム" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "フィラメントのモーターのデフォルトジャーク。" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "ブリム距離" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "ミリメートルあたりのステップ (X)" +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "内側縁がマージンに接触しないようにする" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "ブリムライン数" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "ミリメートルあたりのステップ (Y)" +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "外側にブリムのみ印刷" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "ブリム交換サポート" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "ミリメートルあたりのステップ (Z)" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "ブリム幅" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレート密着性" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "ミリメートルあたりのステップ (E)" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "ビルドプレート接着エクストルーダー" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "ビルドプレート接着タイプ" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "プラス方向の X エンドストップ" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "ビルドプレートの材料" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "ビルドプレートの形状" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "プラス方向の Y エンドストップ" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "ビルドプレート温度" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "初期レイヤーのビルドプレート温度" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "プラス方向の Z エンドストップ" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "造形温度" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。" +msgctxt "center_object label" +msgid "Center Object" +msgstr "オブジェクト中心配置" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小送り速度" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "プリントヘッドの最小移動速度。" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "フィーダーホイール直径" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "コースティング速度" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "材料をフィーダーに送るホイールの直径。" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "コースティングのボリューム" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "ファン速度を0~1にスケール" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "コーミングモード" -msgctxt "resolution label" -msgid "Quality" -msgstr "品質" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "コマンドライン設定" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "レイヤー高さ" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "初期レイヤー高さ" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "line_width label" -msgid "Line Width" -msgstr "ライン幅" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "ウォールライン幅" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "ウォールラインの幅。" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "外側ウォールライン幅" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心円" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "円錐サポートの角度" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "内側ウォールライン幅" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "円錐サポートの最大幅" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "インフィルライン接合" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "上下面ライン幅" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "インフィルポリゴン接合" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "上辺/底辺線のライン幅。" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "サポートライン接続" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "インフィルラインの幅" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "サポートジグザグ接続" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "インフィル線の幅。" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "上層/底層ポリゴンに接合" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "スカート/ブリムラインの幅" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "単一のスカートまたはブリムラインの幅。" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "サポートライン幅" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "単一のサポート構造のライン幅。" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "サポート面のライン幅" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "サポートのルーフ、フロアのライン幅。" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "サポートルーフのライン幅" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "サポートルーフのライン一幅。" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "サポートフロアのライン幅" +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "サポートのフロアのラインの一幅。" +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "プライムタワーのライン幅" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "クロス" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "単一のプライムタワーラインの幅。" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "クロス" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "初期レイヤーのライン幅" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3Dクロス" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "3Dクロスポケットのサイズ" -msgctxt "shell label" -msgid "Walls" -msgstr "ウォール" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "サポート用クロス画像のインフィル密度" -msgctxt "shell description" -msgid "Shell" -msgstr "外郭" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "クロス画像のインフィル密度" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "ウォールエクストルーダー" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "結晶性材料" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "キュービック" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁用エクストルーダー" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "キュービックサブディビジョン" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "キュービックサブディビジョンシェル" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁用エクストルーダー" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "メッシュ切断" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁の厚さ" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "デフォルト加速度" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "ビルドプレートのデフォルト温度" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "ウォールライン数" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "フィラメントデフォルトジャーク" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "デフォルト印刷温度" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "ウォール移行長さ" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "X-Yデフォルトジャーク" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Zデフォルトジャーク" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "ウォール分配数" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "水平面内での移動のデフォルトジャーク。" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z方向のモーターのデフォルトジャーク。" -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "ウォール移行しきい値角度" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "フィラメントのモーターのデフォルトジャーク。" -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "ウォール移行フィルター距離" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "ウォール移行フィルターマージン" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁移動距離" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "モデルと接続される枝の直径増加" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁はめ込み" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "ビルドプレートに到達したときに、すべての枝が達成しようとする直径。ベッドの接着性が向上します。" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。" -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "壁印刷順序の最適化" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "拒否エリア" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "ウォール順序" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "内側から外側へ" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "外側から内側へ" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "代替予備壁" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "サポートの上部から印刷物までの距離。" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小ウォールライン幅" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数ウォールライン幅" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。" -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "ドラフトシールドと造形物のX / Y方向の距離。" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数ウォールライン幅" +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "壁(ooze shield)の造形物からの距離。" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "薄壁印刷" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "印刷物からX/Y方向へのサポート材との距離。" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "ノズルサイズよりも細い壁を作ります。" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "パスを滑らかにするため、距離点が移動されます" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小フィーチャーサイズ" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "パスを滑らかにするため、距離点が移動されます" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄肉ウォールライン幅" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "ドラフトシールドの高さ" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "ドラフトシールドの制限" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平展開" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "ドラフトシールドとX/Yの距離" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "サポートメッシュの下処理" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "初期層水平展開" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "デュアルエクストルーダー" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "楕円形" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "穴の水平展開" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "加速度制御を有効にする" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "ゼロより大きい場合、穴の水平方向の拡張は、レイヤーごとにすべての穴に適用されるオフセットの量になります。プラスの値を指定すると穴のサイズが大きくなり、マイナスの値を指定すると穴のサイズが小さくなります。この設定を有効にすると、さらに穴の水平方向の拡張最大直径で微調整できます。" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "ブリッジ設定を有効にする" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "穴の水平展開の最大直径" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "コースティングを有効にする" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "0より大きい場合、穴の水平展開が小さい穴に対して徐々に適用されます(小さい穴はさらに展開されます)。0に設定すると、すべての穴に穴の水平展開が適用されます。穴の水平展開の最大直径より大きい穴は展開されません。" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "円錐サポートを有効にする" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Zシーム合わせ" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "ドラフトシールドを有効にする" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "フルイドモーションを有効にする" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "ユーザー指定" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "アイロン有効" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "ジャーク制御を有効にする" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "ランダム" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "ノズルの温度管理を有効にする" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "鋭い角" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ooze Shieldを有効にする" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Zシーム位置" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "プライムボルブを有効にする" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "プライムタワーを有効にする" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "後方左" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "印刷中の冷却を有効にする" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "戻る" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "引き戻し有効" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "後方右" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "サポートブリムを有効にする" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "サポートフロアを有効にする" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "前方右" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "サポートインタフェースを有効にする" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "サポートルーフを有効にする" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "前左" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "トラベルジャークを有効にする" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "ZシームX" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各印刷を開始するX座\n標の位置。" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "ZシームY" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "シームコーナー設定" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-codeの終了" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "なし" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "フィラメントパージ長さの後" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "シーム非表示" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "フィラメントパージ速度の後" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "シーム表示" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "シーム表示/非表示" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全対象" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "スマート・シーム" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "排他" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "相対Zシーム" +msgctxt "experimental label" +msgid "Experimental" +msgstr "実験" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "シーム表示" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "トップ/ボトム" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "強めのスティッチング" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "トップ/ボトム" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。" -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "上部表面用エクストルーダー" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "外側インフィル壁の数" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "外側表面の数" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "上部表面レイヤー" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "ノズル切替え後のプライムに必要な余剰材料。" -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "最上面のライン幅" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "プリントの上部の 線の幅。" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "上部表面パターン" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "エクストルーダーのヒーター共有" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "上層のパターン。" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "エクストルーダーの共有ノズル" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "直線" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "押出クールダウン速度修飾子" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "ファン速度" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "上面方向一貫性" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "ファン速度上書き" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。" -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "最上面のラインの向き" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "これからもっと充実させていく機能です。" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "フィーダーホイール直径" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "上部/底面エクストルーダー" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最終印刷温度" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "ファームウェア引き戻し" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "上部/底面の厚さ" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "最初のレイヤー用サポートエクストルーダー" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" +msgctxt "material_flow label" +msgid "Flow" +msgstr "フロー" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "上部厚さ" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "フロー均一化率" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量補正要因" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "上部レイヤー" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量補正時の最大抽出オフセット" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "フロー温度グラフ" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底面厚さ" +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 "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "最初のレイヤーの底面ラインのフロー補正" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底面レイヤー" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "インフィルのフロー補正。" -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支持材の天井面または床面のフロー補正。" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初期底面レイヤー" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "印刷物の上部表面のフロー補正。" -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 "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "プライムタワーのフロー補正。" -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "上層/底層パターン" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "スカートまたはブリムのフロー補正。" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "上層/底層のパターン。" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支持材床面のフロー補正。" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直線" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支持材天井面のフロー補正。" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支持材のフロー補正。" -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。" -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底層初期レイヤー" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最外壁のフロー補正。" -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "第1層のプリントの底部のパターン。" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "最外の壁ラインにおける流量補正。" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直線" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "上面/下面のフロー補正。" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)" -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "上層/底層ポリゴンに接合" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "最外壁以外の壁のフロー補正。" + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "壁のフロー補正。" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "上面/底面の方向一貫性" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "フローモーション角度" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "フルイドモーション(移動距離)" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "上層/底層ラインの向き" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "フルイドモーション(近距離)" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "フラッシュパージ長さ" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "小さい上下幅" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "フラッシュパージ速度" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりに壁で埋められます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "表面の小さな上部/下部" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "前左" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 軸ギャップにスキンなし" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "前方右" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "制限なし" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "外側表面の数" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "ファジースキン" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。" +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "ファジースキンの密度" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "アイロン有効" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "ファジースキン外のみ" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "ファジースキン点間距離" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "最上層のみアイロン" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "ファジースキンの厚さ" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-codeフレーバー" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "アイロンパターン" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"最後に実行するG-codeコマンドは、\n" +"で区切ります。" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "アイロンのパターン。" +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"最初に実行するG-codeコマンドは、\n" +"で区切ります。" -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "マテリアルのGUID。これは自動的に設定されます。" -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "ガントリーの高さ" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "アイロン方向一貫性" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "インターロック構造の生成" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "サポート開始" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "アイロン線のスペース" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "アイロンライン同士の距離。" +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "アイロンフロー" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "アイロンインセット" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "ガラス" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "アイロン速度" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "上部表面通過時の速度。" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "インフィル半減高さ" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "アイロン加速度" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "インフィル半減回数" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "アイロン時の加速度。" +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "サポートインフィル半減前の高さ" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "アイロンジャーク" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "サポートインフィル半減回数" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "アイロン時の最大加速度。" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "表面公差量" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "表面公差" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "表面除去幅" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "グリッド" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "上面除去幅" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外壁をグループ化" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底面除去幅" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "造形温度安定化処理有り" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "加熱式ビルドプレートあり" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "表面展開距離" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "加熱速度" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "ノズル加熱長さ" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "上面展開距離" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "シーム非表示" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底面展開距離" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "シーム表示/非表示" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "穴の水平展開" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "表面展開最大角" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "穴の水平展開の最大直径" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "表面展開最小角" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平展開" -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 "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平スケールファクタ収縮補正" -msgctxt "infill label" -msgid "Infill" -msgstr "インフィル" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "加熱中にフィラメントの引き出しが生じる距離。" -msgctxt "infill description" -msgid "Infill" -msgstr "インフィル" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "インフィルエクストルーダー" +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 "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。" -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "インフィル密度" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "プリントのインフィルの密度を調整します。" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "インフィルライン距離" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "材料を切り替えた後に、材料の下準備をする速度。" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "インフィルパターン" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料を乾燥保管容器の外に置くことができる期間。" -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "トライヘキサゴン" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "キュービック" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "キュービックサブディビジョン" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "オクテット" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "サポートインターフェイスとサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "クォーターキュービック" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "モデル上に枝を配置する場合、どれくらいの高さが必要かを示します。サポート材が小さな塊になることを防止します。枝がサポートルーフを支えている場合、この設定は無視されます。" -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +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 "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "ツールパスセグメントが一般的な動きからこの角度よりも大きく逸脱している場合、セグメントは平滑化されます。" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "クロス" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3Dクロス" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "ライトニング" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "インフィルライン接合" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "ビルドプレート温度を含む" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "マテリアル温度を含む" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "インフィルポリゴン接合" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包括" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。" +msgctxt "infill description" +msgid "Infill" +msgstr "インフィル" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "インフィルラインの向き" +msgctxt "infill label" +msgid "Infill" +msgstr "インフィル" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "インフィル加速度" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "インフィル優先" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "インフィルXオフセット" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "インフィル密度" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "インフィルエクストルーダー" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "インフィルYオフセット" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "インフィルフロー" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "インフィルジャーク" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "インフィル開始のランダム化" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "インフィル層の厚さ" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "インフィルラインの向き" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "インフィルライン距離" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "インフィルライン乗算" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "外側インフィル壁の数" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "インフィルラインの幅" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。\nこの機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "インフィルメッシュ" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "キュービックサブディビジョンシェル" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "インフィルオーバーハング角度" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "インフィル公差" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "インフィル公差量" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "インフィルパターン" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "インフィル公差" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "インフィル速度" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "インフィルサポート" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "インフィル移動最適化" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "インフィル移動距離" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "インフィルXオフセット" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "インフィル層の厚さ" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "インフィルYオフセット" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初期底面レイヤー" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "インフィル半減回数" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "初期ファン速度" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "初期レイヤー加速度" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "インフィル半減高さ" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "初期レイヤーの底面フロー" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "初期レイヤー直径" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "インフィル優先" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "初期レイヤーフロー" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\nはじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "初期レイヤー高さ" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小インフィル領域" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "初期層水平展開" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "初期レイヤーインナーウォールのフロー" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "インフィルサポート" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "初期レイヤージャーク" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "初期レイヤーのライン幅" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "インフィルオーバーハング角度" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "初期レイヤーアウターウォールのフロー" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "初期レイヤー印刷加速度" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "スキンエッジサポートの厚さ" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "初期レイヤー印刷ジャーク" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "初期レイヤー印刷速度" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "スキンエッジサポートレイヤー" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "初期レイヤー速度" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "スキンエッジをサポートするインフィルレイヤーの数。" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "初期層サポートラインの距離" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "ライトニングインフィルサポート角度" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "初期レイヤー移動加速度" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "初期レイヤー移動ジャーク" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "ライトニングインフィルオーバーハング角度" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "初期レイヤー移動速度" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "初期レイヤーZのオーバーラップ" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "ライトニングインフィル刈り込み角度" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "初期印刷温度" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内壁加速度" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内壁用エクストルーダー" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内壁ジャーク" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "内壁速度" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "ライトニングインフィル矯正角度" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内壁のフロー" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "内側ウォールライン幅" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "デフォルト印刷温度" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "内側から外側へ" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "造形温度" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "インターフェイスラインを優先" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "インターフェイスを優先" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "印刷温度" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "インターロックビームレイヤー数" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "印刷中の温度。" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "インターロックビーム幅" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "初期レイヤー印刷温度" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "インターロック境界回避" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "インターロックの奥行" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "初期印刷温度" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "インターロック構造の向き" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加熱中、印刷を開始することができる最低の温度。" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "最上層のみアイロン" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最終印刷温度" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "アイロン加速度" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "印刷終了直前に冷却を開始する温度。" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "アイロンフロー" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "押出クールダウン速度修飾子" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "アイロンインセット" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "アイロンジャーク" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "ビルドプレートのデフォルト温度" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "アイロン線のスペース" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "アイロンパターン" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "ビルドプレート温度" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "アイロン速度" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "中心位置" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "初期レイヤーのビルドプレート温度" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "サポート材かどうか" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "接着傾向" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "この素材が一般的にプリント時のサポート材として使用されるかどうかを示します。" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "表面の接着傾向。" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "表面エネルギー" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "スティッチできない部分を保持" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面エネルギー。" +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "レイヤー高さ" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "スケールファクタ収縮補正" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "レイヤー始点X" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "レイヤー始点Y" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平スケールファクタ収縮補正" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。" +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中間のラフト層の層の厚さ。" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直スケールファクタ収縮補正" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "トップラフト層の層厚。" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "結晶性材料" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "ヘッド持ち上げ" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "滲出防止引戻し位置" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "ライトニング" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "ライトニングインフィルオーバーハング角度" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "滲出防止引戻し速度" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "ライトニングインフィル刈り込み角度" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "ライトニングインフィル矯正角度" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "フィラメントの引き出し準備引戻し位置" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "ライトニングインフィルサポート角度" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "加熱中にフィラメントの引き出しが生じる距離。" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "枝到達距離制限" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "フィラメント引き出し準備引戻し速度" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "フィラメント引き出し準備温度" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "制限あり" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" +msgctxt "line_width label" +msgid "Line Width" +msgstr "ライン幅" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "フィラメント引き出しの引戻し位置" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "直線" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "フィラメント引き出しの引戻し速度" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "フィラメント引き出し温度" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "フィラメントがきれいに引き出される温度。" +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "ライン" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "フラッシュパージ速度" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直線" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "材料を切り替えた後に、材料の下準備をする速度。" +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直線" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "フラッシュパージ長さ" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "フィラメントパージ速度の後" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "プリンターの奥行" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "プリントヘッドとファンポリゴン" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "フィラメントパージ長さの後" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "プリンターの高さ" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "プリンターのタイプ" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最大留め期間" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "プリンターの幅" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料を乾燥保管容器の外に置くことができる期間。" +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター詳細設定" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "無負荷移動係数" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "オーバーハング印刷可能" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" -msgctxt "material_flow label" -msgid "Flow" -msgstr "フロー" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "オーバーハング部分よりも底面の支持領域を小さくする。" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。" +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁のフロー" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁のフロー補正。" +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁のフロー" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "3Dプリンティングにさらに適したメッシュを作成します。" -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁のフロー補正。" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁のフロー" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "最外壁以外の壁のフロー補正。" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "上面/下面フロー" +msgctxt "material description" +msgid "Material" +msgstr "マテリアル" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "上面/下面のフロー補正。" +msgctxt "material label" +msgid "Material" +msgstr "マテリアル" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "上部表面スキンフロー" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "マテリアルGUID" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "印刷物の上部表面のフロー補正。" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "ワイプ間の材料の量" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "インフィルフロー" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "引き戻しのない最大コム距離" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "インフィルのフロー補正。" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "最大加速度X" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "スカート/ブリムのフロー" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "最大加速度Y" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "スカートまたはブリムのフロー補正。" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "最大加速度Z" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支持材のフロー" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "最大枝角度" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支持材のフロー補正。" +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏差" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支持材界面フロー" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大押出領域偏差" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支持材の天井面または床面のフロー補正。" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大ファン速度" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支持材天井面フロー" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "フィラメント最大加速度" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支持材天井面のフロー補正。" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大モデル角度" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支持材床面フロー" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "オーバーハングした穴の最大領域" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最大留め期間" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支持材床面のフロー補正。" +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大解像度" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "プライムタワーのフロー" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大引き戻し回数" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "プライムタワーのフロー補正。" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "表面展開最大角" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "初期レイヤーフロー" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "最大速度E" -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 "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "最大速度X" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "初期レイヤーインナーウォールのフロー" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "最大速度Y" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "最大速度Z" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "初期レイヤーアウターウォールのフロー" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大タワーサポート直径" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。" +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "最大移動解像度" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "初期レイヤーの底面フロー" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X方向のモーターの最大速度" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "最初のレイヤーの底面ラインのフロー補正" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y方向のモーターの最大加速度。" -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "スタンバイ温度" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z方向のモーターの最大加速度。" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "フィラメントのモーターの最大加速度。" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "サポート材かどうか" +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 "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "この素材が一般的にプリント時のサポート材として使用されるかどうかを示します。" +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。" -msgctxt "speed label" -msgid "Speed" -msgstr "スピード" +msgctxt "max_extrusion_before_wipe description" +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 "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。" -msgctxt "speed description" -msgid "Speed" -msgstr "スピード" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "重複メッシュのマージ" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "印刷速度" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "メッシュ修正" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "印刷スピード。" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "メッシュ位置X" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "インフィル速度" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "メッシュ位置Y" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "インフィルを印刷する速度。" +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "メッシュ位置Z" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "ウォール速度" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "メッシュ処理ランク" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "ウォールを印刷する速度。" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "メッシュ回転マトリックス" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "外壁速度" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "中間" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小型幅" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "内壁速度" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "スタンバイ温度までの最短時間" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "ブリッジ壁の最小長さ" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "最上面速度" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数ウォールライン幅" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "上部表面プリント時の速度。" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小抽出距離範囲" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "上面/底面速度" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小フィーチャーサイズ" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "トップ/ボトムのレイヤーのプリント速度。" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小送り速度" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "サポート速度" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "モデルに対する最小高さ" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小インフィル領域" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "サポートインフィル速度" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最小レイヤー時間" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数ウォールライン幅" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "サポートインタフェース速度" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小ポリゴン円周" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "表面展開最小角" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "サポートルーフ速度" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最低速度" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。" +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小サポート領域" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "サポートフロア速度" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小サポートフロア領域" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小サポートインターフェイス領域" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "プライムタワー印刷速度" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小サポートルーフ領域" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小サポートX/Y距離" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。" +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄肉ウォールライン幅" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "移動速度" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "コースティング前の最小ボリューム" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "移動中のスピード。" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小ウォールライン幅" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "初期レイヤー速度" +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 "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "初期レイヤー印刷速度" +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 "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。" +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 "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "初期レイヤー移動速度" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "スカート/ブリム速度" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "型" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "型角度" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 軸ホップ速度" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "型ルーフ高さ" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "アイロン方向一貫性" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "遅いレイヤーの数" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "上面方向一貫性" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "上面/底面の方向一貫性" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "フロー均一化率" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "加速度制御を有効にする" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "無負荷移動係数" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 軸ギャップにスキンなし" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "これまでにないモデルの印刷方法です。" -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。" +msgctxt "adhesion_type option none" +msgid "None" +msgstr "なし" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "印刷加速度" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "なし" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "印刷の加速スピードです。" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "標準" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "インフィル加速度" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "標準" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "インフィルの印刷の加速スピード。" +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "ウォール加速度" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "スキン内にない" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "ウォールをプリントする際の加速度。" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "外側表面には適用しない" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "ノズル角度" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "最も外側の壁をプリントする際の加速度。" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "ノズル拒否エリア" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "内側のウォールがが出力される際のスピード。" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "最上面加速度" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "ノズル長さ" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "上部表面プリント時の加速度。" +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "ノズル切替え後のプライムに必要な余剰量" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "上面/底面加速度" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "ノズルスイッチ押し戻し速度" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーの印刷加速度。" +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "ノズルスイッチ引き込み速度" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "サポート加速度" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "ノズルスイッチ引き戻し距離" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "サポート材プリント時の加速スピード。" +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "ノズルスイッチ引き戻し速度" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "サポートインフィル加速度" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "エクストルーダーの数" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "インフィルのサポート材のプリント時の加速度。" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "有効なエクストルーダーの数" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "サポートインタフェース加速度" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "遅いレイヤーの数" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "サポートルーフ加速度" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "ブラシ全体をノズルが移動する回数。" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "サポートフロア加速度" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "プライムタワー加速度" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "オクテット" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "プライムタワーの印刷時のスピード。" +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "オフ" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "移動か速度" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "オブジェクトの X 方向に適用されたオフセット。" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "移動中の加速度。" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "オブジェクトのY 方向適用されたオフセット。" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "初期レイヤー加速度" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "初期レイヤーの加速度。" +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "エクストルーダーのオフセット" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "初期レイヤー印刷加速度" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "可能な場合はビルドプレート上に配置" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "初期レイヤーの印刷中の加速度。" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "必要に応じてモデル上に配置" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "初期レイヤー移動加速度" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "1つずつ" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "最初のレイヤー時の加速度。" +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。" -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "スカート/ブリム加速度" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "ジャーク制御を有効にする" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze Shield角度" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。" +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze Shield距離" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "トラベルジャークを有効にする" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "最適な枝範囲" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "壁印刷順序の最適化" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "印刷ジャーク" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "プリントヘッドの最大瞬間速度の変更。" +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "ノズル外径" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "インフィルジャーク" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外壁加速度" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "インフィルの印刷時の瞬間速度の変更。" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁用エクストルーダー" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "ウォールジャーク" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁のフロー" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "ウォールのプリント時の最大瞬間速度を変更。" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁はめ込み" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "外壁ジャーク" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "外側ウォールライン幅" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁ジャーク" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "外壁速度" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁移動距離" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "最上面ジャーク" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "上部表面プリント時の最大加速度。" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "外側から内側へ" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "上面/下面ジャーク" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "張り出し壁アングル" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "張り出し壁速度" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "サポートジャーク" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "サポート材の印刷時の最大瞬間速度の変更。" +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "引き戻し前に一時停止します。" -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "サポートインフィルジャーク" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "サポート材の印刷時、最大瞬間速度の変更。" +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "サポートインタフェースジャーク" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "サポートルーフジャーク" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "希望枝角度" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "サポートフロアジャーク" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "プライムタワー加速度" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "プライムタワーのフロー" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "プライムタワージャーク" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "移動ジャーク" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "プライムタワーのライン幅" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "移動する際の最大瞬時速度の変更。" +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "プライムタワー最小容積" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "初期レイヤージャーク" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "初期レイヤーの最大瞬時速度の変更。" +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "プライムタワーのサイズ" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "初期レイヤー印刷ジャーク" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "プライムタワー印刷速度" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "プライムタワーX位置" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "初期レイヤー移動ジャーク" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "プライムタワーY位置" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "移動加速度は最初のレイヤーに適用されます。" +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "スカート/ブリムジャーク" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "印刷加速度" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "印刷ジャーク" -msgctxt "travel label" -msgid "Travel" -msgstr "移動" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "印刷頻度" -msgctxt "travel description" -msgid "travel" -msgstr "移動" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "印刷速度" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "引き戻し有効" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "薄壁印刷" -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "レイヤー変更時に引き戻す" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "引き戻し距離" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "引き戻されるマテリアルの長さ。" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "ノズルサイズよりも細い壁を作ります。" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "引き戻し速度" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "引き戻し速度の取り消し" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "" +"壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します\n" +"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "押し戻し速度の取り消し" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "印刷温度" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "余分な押し戻し量の引き戻し" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "初期レイヤー印刷温度" -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。" +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "最も内側のスカートラインを複数のレイヤーに分けてプリントすることで、スカートを取り外しやすくします。" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "引き戻し最小移動距離" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" -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 "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" +msgctxt "resolution label" +msgid "Quality" +msgstr "品質" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大引き戻し回数" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "クォーターキュービック" -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 "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "ラフト" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小抽出距離範囲" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "ラフト間のラップ" -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 "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。" +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "ラフトベースエクストルーダー" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "コーミングモード" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "ラフトベースファン速度" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "ラフトベースラインスペース" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "オフ" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "ラフトベースライン幅" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "すべて" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "ラフトベース印刷加速度" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "外側表面には適用しない" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "ラフトベース印刷ジャーク" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "スキン内にない" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "ラフトベース印刷速度" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "インフィル内" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "ラフトベース厚さ" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "引き戻しのない最大コム距離" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "ラフトベースウォール数" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "ラフトの余分なマージン" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "外壁の前に引き戻す" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "ラフトファン速度" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "ラフト中間エクストルーダー" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "移動は印刷したパーツを回避する" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "ラフト中間層ファン速度" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "ラフト中間レイヤー" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "移動はサポートを回避する" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "ラフト中央ライン幅" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "ラフト中間層印刷加速度" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "移動回避距離" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "ラフト中間層印刷ジャーク" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "ノズルが既に印刷された部分を移動する際の間隔。" +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "ラフト中間印刷速度" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "レイヤー始点X" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "ラフト中間スペース" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "各レイヤーのプリントを開始する部分をしめすX座標。" +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "ラフト中央厚さ" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "レイヤー始点Y" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "ラフト印刷加速度" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "各レイヤーのプリントを開始する部分をしめすY座標。" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "ラフト印刷ジャーク" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "引き戻し時のZホップ" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "ラフト印刷速度" -msgctxt "retraction_hop_enabled 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 "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "ラフト補整" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "印刷パーツに対するZホップ" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "ラフトトップエクストルーダー" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "ラフト上層ファン速度" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Zホップ高さ" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "ラフト最上層厚さ" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "ラフト最上層" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "エクストルーダースイッチ後のZホップ" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "ラフト最上ライン幅" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "ラフト上層層印刷加速度" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "エクストルーダースイッチ高さ後のZホップ" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "ラフト上層印刷ジャーク" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "ラフト上層印刷速度" -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "ラフト最上面スペース" -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "ランダム" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "印刷中の冷却を有効にする" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "インフィル開始のランダム化" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "ファン速度" +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 "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "冷却ファンが回転する速度。" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "長方形" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "標準ファン速度" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大ファン速度" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "標準ファン速度時の高さ" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "標準ファン速度時のレイヤー" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "標準/最大ファン速度のしきい値" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相対押出" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "初期ファン速度" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "全穴除去" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "空の最初のメッシュの削除" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "標準ファン速度時の高さ" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "重複メッシュの削除" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "ラフト内側コーナーの削除" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "標準ファン速度時のレイヤー" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最小レイヤー時間" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "希望配置" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "外壁の前に引き戻す" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "レイヤー変更時に引き戻す" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最低速度" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "ヘッド持ち上げ" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "引き戻し距離" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "余分な押し戻し量の引き戻し" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "小さいレイヤーのプリント温度" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "引き戻し最小移動距離" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "押し戻し速度の取り消し" -msgctxt "support label" -msgid "Support" -msgstr "サポート" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "引き戻し速度の取り消し" -msgctxt "support description" -msgid "Support" -msgstr "サポート" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "引き戻し速度" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "サポート開始" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "ファン速度を0~1にスケール" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "サポート用エクストルーダー" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。" -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "スケールファクタ収縮補正" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "サポート用インフィルエクストルーダー" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "シーンにサポートメッシュがある" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "シームコーナー設定" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "最初のレイヤー用サポートエクストルーダー" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "デュアルエクストルーダーで印刷するための設定。" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "サポートインタフェースエクストルーダー" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共有ノズルの初期引き戻し" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "サポートルーフエクストルーダー" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "鋭い角" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" +msgctxt "shell description" +msgid "Shell" +msgstr "外郭" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "サポートフロアエクストルーダー" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "プリンターのバリエーションの表示" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "サポート構造" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "スキンエッジサポートレイヤー" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "スキンエッジサポートの厚さ" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "標準" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "表面展開距離" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "ツリー" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "表面公差" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "最大枝角度" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "表面公差量" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "モデルを中心に枝を伸ばす際の枝の最大角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "表面除去幅" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "枝直径" +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 "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "本体直径" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。" +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "スカート" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "枝直径角度" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "スカート距離" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "スカート高さ" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "サポート配置" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "スカートライン数" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "ビルドプレートにタッチ" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "スカート/ブリム加速度" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全対象" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "スカート/ブリムエクストルーダー" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "希望枝角度" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "スカート/ブリムのフロー" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "モデルを回避する必要がない場合の枝の希望角度。枝を垂直で安定したものにするためには小さい角度を使用します。迅速にマージするには枝の角度を大きくします。" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "スカート/ブリムジャーク" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "モデルと接続される枝の直径増加" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "スカート/ブリムラインの幅" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "モデルに接続する必要がある枝の直径は、ビルドプレートに到達する可能性のある枝とマージされて大きくなる可能性があります。この値を大きくするとプリント時間は短縮されますが、モデル上のサポート領域が大きくなります。" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "スカート/ブリム最小長さ" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "スカート/ブリム速度" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "モデルに対する最小高さ" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "スライス公差" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "モデル上に枝を配置する場合、どれくらいの高さが必要かを示します。サポート材が小さな塊になることを防止します。枝がサポートルーフを支えている場合、この設定は無視されます。" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "小型形体の初期レイヤー速度" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "初期レイヤー直径" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "小型形体の最大長さ" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "ビルドプレートに到達したときに、すべての枝が達成しようとする直径。ベッドの接着性が向上します。" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "小さな機能の速度" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "枝密度" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小さい穴の最大サイズ" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "枝の先端を生成するために使用されるサポート構造の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。非常に大きな値を指定するにはサポートルーフを使用するか、上部のサポート密度が同様に高くなるようにしてください。" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小さいレイヤーのプリント温度" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "先端直径" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "表面の小さな上部/下部" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "ツリーサポートの枝の上部先端の直径。" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "小さい上下幅" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "枝到達距離制限" +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 "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" +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 "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "最適な枝範囲" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりに壁で埋められます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "スマートブリム" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "希望配置" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "スマート・シーム" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "サポート構造の配置希望場所。構造物を希望の場所に配置できない場合は、別の場所に配置されます(モデル上に配置することになったとしても)。" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "滑らかな輪郭" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "可能な場合はビルドプレート上に配置" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "必要に応じてモデル上に配置" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "サポートオーバーハング角度" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。" -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特別モード" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "サポートパターン" +msgctxt "speed description" +msgid "Speed" +msgstr "スピード" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" +msgctxt "speed label" +msgid "Speed" +msgstr "スピード" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "ホップ中に z 軸を移動する速度。" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "滑らかな外側輪郭" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "スタンバイ温度" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Codeの開始" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "クロス" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "ミリメートルあたりのステップ (E)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "サポートウォールライン数" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "ミリメートルあたりのステップ (X)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "ミリメートルあたりのステップ (Y)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "サポートインターフェースのウォールライン数" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "ミリメートルあたりのステップ (Z)" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgctxt "support description" +msgid "Support" +msgstr "サポート" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "サポートルーフウォールライン数" +msgctxt "support label" +msgid "Support" +msgstr "サポート" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "サポート加速度" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "サポート底部距離" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "サポート底面ウォールライン数" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "サポートライン接続" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "サポートブリムのライン数" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "サポートブリムの幅" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "サポートジグザグ接続" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "サポート分割ライン数" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "サポート分割サイズ" msgctxt "support_infill_rate label" msgid "Support Density" msgstr "サポート密度" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "サポート距離優先順位" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "サポートライン距離" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "サポート用エクストルーダー" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "サポートフロア加速度" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "サポートフロア密度" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "サポートフロアエクストルーダー" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支持材床面フロー" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "サポートフロア水平展開" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "初期層サポートラインの距離" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "サポートフロアジャーク" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。" +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "サポートフロアライン方向" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "サポートインフィルラインの向き" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "サポートフロアライン距離" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "サポートフロアのライン幅" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "サポートブリムを有効にする" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "サポートフロアパターン" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "サポートフロア速度" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "サポートブリムの幅" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "サポートフロア厚さ" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支持材のフロー" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "サポートブリムのライン数" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "サポート水平展開" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "サポートインフィル加速度" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "サポートZ距離" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "サポート用インフィルエクストルーダー" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "サポートインフィルジャーク" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "サポート上部距離" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "サポートインフィルレイヤー厚さ" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "サポートの上部から印刷物までの距離。" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "サポートインフィルラインの向き" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "サポート底部距離" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "サポートインフィル速度" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "印刷物とサポート材底部までの距離。" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "サポートインタフェース加速度" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "サポートX/Y距離" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "サポートインタフェース密度" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "印刷物からX/Y方向へのサポート材との距離。" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "サポートインタフェースエクストルーダー" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "サポート距離優先順位" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支持材界面フロー" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。" +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "サポートインターフェイス水平展開" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/YがZを上書き" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "サポートインタフェースジャーク" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "ZがX/Yを上書き" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "サポート面のライン方向" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小サポートX/Y距離" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "サポート面のライン幅" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "サポートインタフェースパターン" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "サポート階段高さ" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "サポートインターフェイスの優先順位" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "サポートインタフェース解像度" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "サポート階段最大幅" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "サポートインタフェース速度" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "サポートインタフェース厚さ" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "サポートステアステップ最小傾斜角度" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "サポートインターフェースのウォールライン数" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "サポートジャーク" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "サポート接合距離" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。" - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "サポート水平展開" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "サポートインフィルレイヤー厚さ" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "サポートライン距離" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "サポートライン幅" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "サポートインフィル半減回数" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "サポートメッシュ" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "サポートオーバーハング角度" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "サポートインフィル半減前の高さ" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "サポートパターン" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" +msgctxt "support_type label" +msgid "Support Placement" +msgstr "サポート配置" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小サポート領域" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "サポートルーフ加速度" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "サポートルーフ密度" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "サポートインタフェースを有効にする" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "サポートルーフエクストルーダー" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支持材天井面フロー" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "サポートルーフを有効にする" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "サポートルーフ水平展開" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "サポートルーフジャーク" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "サポートフロアを有効にする" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "サポートルーフライン方向" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "サポートルーフライン距離" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "サポートインタフェース厚さ" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "サポートルーフのライン幅" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "サポートルーフパターン" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "サポートルーフ速度" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "サポートルーフ厚さ" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "サポートルーフウォールライン数" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "サポートフロア厚さ" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "サポート速度" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "サポート階段高さ" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "サポートインタフェース解像度" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "サポート階段最大幅" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "サポートステアステップ最小傾斜角度" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "サポートインタフェース密度" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "サポート構造" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "サポート上部距離" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "サポートルーフ密度" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "サポートウォールライン数" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "サポートX/Y距離" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "サポートルーフライン距離" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "サポートZ距離" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。" +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "サポートラインを優先" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "サポートフロア密度" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "サポートを優先" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "サポート対象スキンファン速度" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "サポートフロアライン距離" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面エネルギー" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "サポートインタフェースパターン" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面モード" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "モデルとサポートのインタフェースが印刷されるパターン。" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面の接着傾向。" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面エネルギー。" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "最も内側のブリムラインと2番目に内側のブリムラインのプリント順序を入れ替えます。これにより、ブリムを取り外しやすくします。" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +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 "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "各レイヤーのプリントを開始する部分をしめすX座標。" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "サポートルーフパターン" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "" +"レイヤー内の各印刷を開始するX座\n" +"標の位置。" -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "サポートのルーフが印刷されるパターン。" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時のノズルの位置を表すX座標。" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "各レイヤーのプリントを開始する部分をしめすY座標。" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時にノズル位置を表すY座標。" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "印刷開始時にノズルがポジションを確認するZ座標。" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "初期レイヤーの印刷中の加速度。" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "サポートフロアパターン" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "初期レイヤーの加速度。" -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "サポートのフロアが印刷されるパターン。" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "最初のレイヤー時の加速度。" -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "移動加速度は最初のレイヤーに適用されます。" + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "内側のウォールがが出力される際のスピード。" + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "インフィルの印刷の加速スピード。" + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "アイロン時の加速度。" + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "印刷の加速スピードです。" + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "ラフトの底面印刷時の加速度。" + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "インフィルのサポート材のプリント時の加速度。" -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "ラフトの中間層印刷時の加速度。" -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "最も外側の壁をプリントする際の加速度。" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "プライムタワーの印刷時のスピード。" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小サポートインターフェイス領域" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "ラフト印刷時の加速度。" -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 "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小サポートルーフ領域" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" -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 "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小サポートフロア領域" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "サポート材プリント時の加速スピード。" -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 "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "ラフトのトップ印刷時の加速度。" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "サポートインターフェイス水平展開" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "上面内壁が印刷される際の加速度" -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "上面の最外壁が印刷される際の加速度" -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "サポートルーフ水平展開" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "ウォールをプリントする際の加速度。" -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "サポートのルーフに適用されるオフセット量。" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "上部表面プリント時の加速度。" -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "サポートフロア水平展開" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーの印刷加速度。" -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "サポートのフロアに適用されるオフセット量。" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "移動中の加速度。" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "サポートインターフェイスの優先順位" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "サポートインターフェイスとサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "サポートを優先" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "インターフェイスを優先" +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に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "サポートラインを優先" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "水平面とノズル直上の円錐部分との間の角度。" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "インターフェイスラインを優先" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "両方重ねる" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "サポート面のライン方向" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。" -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "サポートルーフライン方向" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "サポートフロアライン方向" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "プリントヘッド移動のデフォルトの加速度。" -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "ファン速度上書き" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "サポート対象スキンファン速度" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用タワー" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "タワー直径" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "造形可能領域の幅(Y方向)。" msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "特別な塔の直径。" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大タワーサポート直径" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "ツリーサポートの枝の上部先端の直径。" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "タワールーフ角度" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "材料をフィーダーに送るホイールの直径。" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "サポートメッシュの下処理" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "アイロンライン同士の距離。" + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "ノズルが既に印刷された部分を移動する際の間隔。" -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "シーンにサポートメッシュがある" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "プライムボルブを有効にする" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "ビルドプレート接着タイプ" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。" +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "スカート" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。" -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "ブリム" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "ノズルからの熱がフィラメントに伝達される距離。" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "ラフト" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" -msgctxt "adhesion_type option none" -msgid "None" -msgstr "なし" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "ビルドプレート接着エクストルーダー" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "ブラシ全体でヘッド前後に動かす距離。" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "スカート/ブリムエクストルーダー" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "ラフトベースエクストルーダー" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "ラフト中間エクストルーダー" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "ラフトトップエクストルーダー" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "スカートライン数" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。" - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "スカート高さ" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "最も内側のスカートラインを複数のレイヤーに分けてプリントすることで、スカートを取り外しやすくします。" - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "スカート距離" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "スカートと印刷の最初の層の間の水平距離。\nこれは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "スカート/ブリム最小長さ" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。" +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "ブリム幅" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "ブリムライン数" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -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 "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。" -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "ブリム距離" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -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 "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "ブリム交換サポート" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "外側にブリムのみ印刷" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "モデルの外側のみにブリムを印刷します。これにより、後で取り除くブリムの量が減少します。またプレートへの接着力はそれほど低下しません。" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "ベースラフト層印刷時のファン速度。" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "内側縁がマージンに接触しないようにする" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "ミドルラフト印刷時のファンの速度。" -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "別の部品内に完全に囲まれた部品は、別の部品の内側に接触する外側縁ができることがあります。この設定によって、内部の穴からこの間隔内のすべての縁が除去されます。" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "ラフト印刷時のファンの速度。" -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "スマートブリム" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "トップラフト印刷時のファンの速度。" -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "最も内側のブリムラインと2番目に内側のブリムラインのプリント順序を入れ替えます。これにより、ブリムを取り外しやすくします。" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "ラフトの余分なマージン" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "ラフト補整" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "造形可能領域の幅(Z方向)。" -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "ラフト間のラップ" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "型を印刷するためのモデルの水平部分上の高さ。" -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "初期レイヤーZのオーバーラップ" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。" -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "エアギャップ内で失われたフィラメントを補うために、モデルの第1層と第2層をZ方向にオーバーラップさせます。この値によって、最初のモデルレイヤーがシフトダウンされます。" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "ラフト最上層" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "ラフト最上層厚さ" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "トップラフト層の層厚。" +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "ラフト最上ライン幅" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "ラフト最上面スペース" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "ラフト中間レイヤー" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "ラフト中央厚さ" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中間のラフト層の層の厚さ。" +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 "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "ラフト中央ライン幅" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"スカートと印刷の最初の層の間の水平距離。\n" +"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "ラフト中間スペース" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "ラフトベース厚さ" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "ベースラフト層印刷時のジャーク。" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "ラフトベースライン幅" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "ミドルラフト層印刷時のジャーク。" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "ラフトが印刷時のジャーク。" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "ラフトベースラインスペース" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "トップラフト層印刷時のジャーク。" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "ラフト印刷速度" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "ラフトが印刷される速度。" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "ラフト上層印刷速度" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "ラフト中間印刷速度" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "引き戻されるマテリアルの長さ。" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "ラフトベース印刷速度" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "プリンターに取り付けられているビルドプレートの材料です。" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "基準レイヤー高さと比較して許容される最大の高さ。" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "ラフト印刷加速度" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "ラフト印刷時の加速度。" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "ラフト上層層印刷加速度" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "モデルを中心に枝を伸ばす際の枝の最大角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "ラフトのトップ印刷時の加速度。" +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。" -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "ラフト中間層印刷加速度" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。" -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "ラフトの中間層印刷時の加速度。" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "ラフトベース印刷加速度" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "ラフトの底面印刷時の加速度。" +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。" -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "ラフト印刷ジャーク" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "ラフトが印刷時のジャーク。" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "プリントヘッドの最大瞬間速度の変更。" + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "アイロン時の最大加速度。" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "ラフト上層印刷ジャーク" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "トップラフト層印刷時のジャーク。" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "インフィルの印刷時の瞬間速度の変更。" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "ラフト中間層印刷ジャーク" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "ミドルラフト層印刷時のジャーク。" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "サポート材の印刷時、最大瞬間速度の変更。" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "ラフトベース印刷ジャーク" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "ベースラフト層印刷時のジャーク。" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "ラフトファン速度" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "ラフト印刷時のファンの速度。" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "ラフト上層ファン速度" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "トップラフト印刷時のファンの速度。" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "サポート材の印刷時の最大瞬間速度の変更。" -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "ラフト中間層ファン速度" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "ミドルラフト印刷時のファンの速度。" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "上面内壁が印刷される際の最大瞬間速度変化。" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "ラフトベースファン速度" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "ウォールのプリント時の最大瞬間速度を変更。" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "ベースラフト層印刷時のファン速度。" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "上部表面プリント時の最大加速度。" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "デュアルエクストルーダー" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "デュアルエクストルーダーで印刷するための設定。" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "移動する際の最大瞬時速度の変更。" -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "プライムタワーを有効にする" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X方向のモーターの最大速度。" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y方向のモーターの最大速度。" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "プライムタワーのサイズ" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z方向のモーターの最大速度。" -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "プライムタワーの幅。" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "フィラメントの最大速度。" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "プライムタワー最小容積" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "プライムタワーの各層の最小容積。" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "型の外側とモデルの外側との間の最小距離です。" -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "プライムタワーX位置" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "プリントヘッドの最小移動速度。" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のx座標。" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加熱中、印刷を開始することができる最低の温度。" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "プライムタワーY位置" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。" -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のy座標。" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。" -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "プライムタワーノズル拭き取り" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" +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 "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "プライムタワーブリム" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ooze Shieldを有効にする" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze Shield角度" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。" -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze Shield距離" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "壁(ooze shield)の造形物からの距離。" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "ノズルスイッチ引き戻し距離" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "プライムタワーの各層の最小容積。" -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に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "モデルに接続する必要がある枝の直径は、ビルドプレートに到達する可能性のある枝とマージされて大きくなる可能性があります。この値を大きくするとプリント時間は短縮されますが、モデル上のサポート領域が大きくなります。" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "ノズルスイッチ引き戻し速度" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3Dプリンターの機種名。" -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 "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "ノズルスイッチ引き込み速度" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "ノズル切り替え中のフィラメントの引き込み速度。" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "ノズルスイッチ押し戻し速度" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "ノズル切替え後のプライムに必要な余剰量" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "スキンエッジをサポートするインフィルレイヤーの数。" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "ノズル切替え後のプライムに必要な余剰材料。" +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 "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "メッシュ修正" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "3Dプリンティングにさらに適したメッシュを作成します。" +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 "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "重複量" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "全穴除去" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "強めのスティッチング" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "スティッチできない部分を保持" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "重複メッシュのマージ" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。" -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "重複メッシュの削除" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "ノズルの外径。" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "代替メッシュの削除" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "上層のパターン。" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "空の最初のメッシュの削除" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "上層/底層のパターン。" -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "第1層のプリントの底部のパターン。" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大解像度" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "アイロンのパターン。" -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "サポートのフロアが印刷されるパターン。" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "最大移動解像度" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "モデルとサポートのインタフェースが印刷されるパターン。" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。" +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "サポートのルーフが印刷されるパターン。" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏差" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "モデルを回避する必要がない場合の枝の希望角度。枝を垂直で安定したものにするためには小さい角度を使用します。迅速にマージするには枝の角度を大きくします。" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大押出領域偏差" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "サポート構造の配置希望場所。構造物を希望の場所に配置できない場合は、別の場所に配置されます(モデル上に配置することになったとしても)。" -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "初期レイヤーの最大瞬時速度の変更。" -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "フルイドモーションを有効にする" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "造形不可領域を考慮しないビルドプレートの形状。" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "フルイドモーション(移動距離)" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "パスを滑らかにするため、距離点が移動されます" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。" -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "フルイドモーション(近距離)" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "パスを滑らかにするため、距離点が移動されます" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。" -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "フローモーション角度" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "ツールパスセグメントが一般的な動きからこの角度よりも大きく逸脱している場合、セグメントは平滑化されます。" +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "ブリッジスキン領域が印刷される速度。" -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特別モード" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "インフィルを印刷する速度。" -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "これまでにないモデルの印刷方法です。" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "印刷スピード。" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "印刷頻度" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +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 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 "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。" +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "ブリッジ壁を印刷する速度。" -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "一度にすべて" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "1つずつ" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "インフィルメッシュ" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。" +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "メッシュ処理ランク" +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "メッシュ切断" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "ノズル切り替え中のフィラメントの引き込み速度。" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "型" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小型幅" +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 "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "型の外側とモデルの外側との間の最小距離です。" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "型ルーフ高さ" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "型を印刷するためのモデルの水平部分上の高さ。" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "型角度" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。" -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "サポートメッシュ" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "冷却ファンが回転する速度。" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "ラフトが印刷される速度。" -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "メッシュオーバーハング例外" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面モード" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "標準" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "上面内壁が印刷される速度" -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "両方" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "上面の最外壁が印刷される速度" -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "滑らかな外側輪郭" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "ウォールを印刷する速度。" -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "滑らかな輪郭" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "上部表面通過時の速度。" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相対押出" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "上部表面プリント時の速度。" -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "トップ/ボトムのレイヤーのプリント速度。" -msgctxt "experimental label" -msgid "Experimental" -msgstr "実験" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "移動中のスピード。" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "これからもっと充実させていく機能です。" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "スライス公差" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。" -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "中間" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "排他" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "フィラメントがきれいに引き出される温度。" -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包括" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "インフィル移動最適化" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "印刷終了直前に冷却を開始する温度。" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "フロー温度グラフ" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "印刷中の温度。" -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小ポリゴン円周" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "インターロック構造の生成" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "インターロックビーム幅" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "インターロック構造ビームの幅。" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "インターロック構造の向き" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "インターロックビームレイヤー数" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "インターロックの奥行" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "インターロック境界回避" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。" -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "生成するG-codeの種類です。" -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "接続部分のサポート分割" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "造形可能領域の幅(X方向)。" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "サポート分割サイズ" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "インターロック構造ビームの幅。" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "サポート分割ライン数" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "プライムタワーの幅。" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "ドラフトシールドを有効にする" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" +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 "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "ドラフトシールドとX/Yの距離" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のx座標。" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "ドラフトシールドと造形物のX / Y方向の距離。" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のy座標。" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "ドラフトシールドの制限" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "制限なし" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "制限あり" +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 "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "ドラフトシールドの高さ" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "先端直径" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "オーバーハング印刷可能" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大モデル角度" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "上部レイヤー" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "オーバーハングした穴の最大領域" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "上面展開距離" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "上面除去幅" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "コースティングを有効にする" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "上面内壁加速度" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "上面最外壁の最大瞬間速度変化" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "コースティングのボリューム" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "上面内壁速度" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "上面内壁の流れ" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "コースティング前の最小ボリューム" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "上面外壁加速度" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "上面最外壁の流れ" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "コースティング速度" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "上面内壁の最大瞬間速度変化" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "上面の最外壁速度" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "3Dクロスポケットのサイズ" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "最上面加速度" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "上部表面用エクストルーダー" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "クロス画像のインフィル密度" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "上部表面スキンフロー" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "最上面ジャーク" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "サポート用クロス画像のインフィル密度" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "上部表面レイヤー" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "最上面のラインの向き" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "円錐サポートを有効にする" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "最上面のライン幅" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "オーバーハング部分よりも底面の支持領域を小さくする。" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "上部表面パターン" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "円錐サポートの角度" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "最上面速度" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "上部厚さ" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "円錐サポートの最大幅" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "トップ/ボトム" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "ファジースキン" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "トップ/ボトム" -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 "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "上面/底面加速度" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "ファジースキン外のみ" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "上部/底面エクストルーダー" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "上面/下面フロー" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "ファジースキンの厚さ" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "上面/下面ジャーク" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "上層/底層ラインの向き" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "ファジースキンの密度" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "上下面ライン幅" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "上層/底層パターン" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "ファジースキン点間距離" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "上面/底面速度" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "上部/底面の厚さ" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量補正時の最大抽出オフセット" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "ビルドプレートにタッチ" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。" +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "タワー直径" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量補正要因" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "タワールーフ角度" -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 "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。" +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "適応レイヤーの使用" +msgctxt "travel label" +msgid "Travel" +msgstr "移動" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "移動か速度" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "適応レイヤー最大差分" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "移動回避距離" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "基準レイヤー高さと比較して許容される最大の高さ。" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "移動ジャーク" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "適応レイヤー差分ステップサイズ" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "移動速度" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "適応レイヤーのトポグラフィーサイズ" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "ツリー" -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 "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "トライヘキサゴン" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "張り出し壁アングル" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -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の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "張り出し壁速度" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "ブリッジ設定を有効にする" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "本体直径" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "ブリッジ壁の最小長さ" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "重複量" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。" -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "ブリッジスキンサポートのしきい値" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "適応レイヤーの使用" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用タワー" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。" + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。" -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 "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "ブリッジスパースインフィル最大密度" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" -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 "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "ブリッジ壁コースティング" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "ブリッジ壁速度" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "ユーザー指定" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "ブリッジ壁を印刷する速度。" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直スケールファクタ収縮補正" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "ブリッジ壁フロー" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "ビルドプレート加熱待ち時間" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "ブリッジスキン速度" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "ノズル加熱待ち時間" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "ブリッジスキン領域が印刷される速度。" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "ウォール加速度" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "ブリッジスキンフロー" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "ウォール分配数" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "ウォールエクストルーダー" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "ブリッジスキンの密度" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁のフロー" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "ウォールジャーク" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "ブリッジファン速度" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "ウォールライン数" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "ウォールライン幅" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "ブリッジを構成する多重レイヤー" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "ウォール順序" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "ウォール速度" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "ブリッジセカンドスキンの速度" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁の厚さ" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "ウォール移行長さ" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "ブリッジセカンドスキンのフロー" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "ウォール移行フィルター距離" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "ウォール移行フィルターマージン" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "ブリッジセカンドスキンの密度" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "ウォール移行しきい値角度" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" +msgctxt "shell label" +msgid "Walls" +msgstr "ウォール" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "ブリッジセカンドスキンのファン速度" +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の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "サポートの上下にモデルがあるかどうか確認するには、特定のサポートの高さを見ます。低い値はスライスに時間がかかり、高い値にするとサポートのインターフェイスがある場所に通常のサポートを印刷する可能性があります。" -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "ブリッジサードスキンの速度" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "ブリッジサードスキンのフロー" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "ブリッジサードスキンの密度" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "0より大きい場合、穴の水平展開が小さい穴に対して徐々に適用されます(小さい穴はさらに展開されます)。0に設定すると、すべての穴に穴の水平展開が適用されます。穴の水平展開の最大直径より大きい穴は展開されません。" -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "ブリッジサードスキンのファン速度" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "ゼロより大きい場合、穴の水平方向の拡張は、レイヤーごとにすべての穴に適用されるオフセットの量になります。プラスの値を指定すると穴のサイズが大きくなり、マイナスの値を指定すると穴のサイズが小さくなります。この設定を有効にすると、さらに穴の水平方向の拡張最大直径で微調整できます。" -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "レイヤー間のノズル拭き取り" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "clean_between_layers description" -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 "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "ワイプ間の材料の量" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" -msgctxt "max_extrusion_before_wipe description" -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 "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "ワイプリトラクト有効" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。" -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。" + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "ワイプリトラクト無効" +msgctxt "wipe_hop_enable description" +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 "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" +msgctxt "retraction_hop_enabled 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 "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "ワイプ引き戻し時の余分押し戻し量" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "ワイプリトラクト速度" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。" -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。" -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "ワイプ引き戻し速度" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "ワイプ引き戻し下準備速度" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "ワイプ一時停止" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "機器が造形温度を安定化処理できるかどうかです。" -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "引き戻し前に一時停止します。" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。" -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "ワイプZホップ" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。" -msgctxt "wipe_hop_enable description" -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 "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "ワイプZホップ高さ" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" +msgctxt "clean_between_layers description" +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 "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "ワイプホップ速度" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "ホップ中に z 軸を移動する速度。" +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "ワイプブラシXの位置" +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 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 "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。" -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "ワイプスクリプトを開始するX位置。" +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "ワイプ繰り返し回数" +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) を使用するかどうか。" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "ブラシ全体をノズルが移動する回数。" +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "開始時にノズルの温度が達するまで待つかどうか。" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "ワイプ移動距離" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "インフィル線の幅。" -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "ブラシ全体でヘッド前後に動かす距離。" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "サポートのルーフ、フロアのライン幅。" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小さい穴の最大サイズ" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "プリントの上部の 線の幅。" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "小型形体の最大長さ" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "単一のプライムタワーラインの幅。" -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "単一のスカートまたはブリムラインの幅。" -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "小さな機能の速度" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "サポートのフロアのラインの一幅。" -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 "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "サポートルーフのライン一幅。" -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "小型形体の初期レイヤー速度" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "単一のサポート構造のライン幅。" -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 "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "上辺/底辺線のライン幅。" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "ウォールの代替の向き" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "ウォールラインの幅。" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "ラフト内側コーナーの削除" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "ラフトベースウォール数" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "コマンドライン設定" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "ワイプブラシXの位置" -msgctxt "center_object label" -msgid "Center Object" -msgstr "オブジェクト中心配置" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "ワイプホップ速度" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。" +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "プライムタワーノズル拭き取り" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "ワイプ移動距離" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "メッシュ位置X" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "レイヤー間のノズル拭き取り" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "オブジェクトの X 方向に適用されたオフセット。" +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "ワイプ一時停止" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "メッシュ位置Y" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "ワイプ繰り返し回数" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "オブジェクトのY 方向適用されたオフセット。" +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "ワイプリトラクト無効" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "メッシュ位置Z" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "ワイプリトラクト有効" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。" +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "ワイプ引き戻し時の余分押し戻し量" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "メッシュ回転マトリックス" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "ワイプ引き戻し下準備速度" -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "ワイプ引き戻し速度" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "段階的なフローが有効" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "ワイプリトラクト速度" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "ワイプZホップ" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "段階的なフローの最大加速度" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "ワイプZホップ高さ" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "フローを段階的に変化させるための最大加速度" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "インフィル内" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初期層の最大フロー加速度" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第1層のフローを段階的に変化させるための最低速度" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "プラス方向の X エンドストップ" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "段階的なフローの離散化ステップのサイズ" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "ワイプスクリプトを開始するX位置。" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "段階的なフローの変化におけるステップごとの時間" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/YがZを上書き" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "フロー期間をリセット" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "プラス方向の Y エンドストップ" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "プラス方向の Z エンドストップ" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "エクストルーダースイッチ後のZホップ" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "エクストルーダースイッチ高さ後のZホップ" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Zホップ高さ" -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "印刷パーツに対するZホップ" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 軸ホップ速度" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "引き戻し時のZホップ" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Zシーム合わせ" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Zシーム位置" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "相対Zシーム" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "ZシームX" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "ZシームY" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "ZがX/Yを上書き" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "外壁をグループ化" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "上面最外壁の流れ" +msgctxt "travel description" +msgid "travel" +msgstr "移動" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "最外の壁ラインにおける流量補正。" +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "印刷物とサポート材底部までの距離。" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "上面内壁の流れ" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "サポート材のトップ/ボトム部分と印刷物との距離。この幅がプリント後のサポート材を除去する隙間を作ります。値は積層ピッチの倍数にて計算されます。" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "段階的なフローの変化におけるステップごとの時間" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "上面の最外壁速度" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "段階的なフローの変化を有効にできます。有効にすると、フローは目標フローまで段階的に増減します。これは、押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "上面の最外壁が印刷される速度" +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "この値より長い移動の場合、素材フローは目標フローにリセットされます。" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "上面内壁速度" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "段階的なフローの離散化ステップのサイズ" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "上面内壁が印刷される速度" +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "段階的なフローが有効" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "上面外壁加速度" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "段階的なフローの最大加速度" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "上面の最外壁が印刷される際の加速度" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "初期層の最大フロー加速度" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "上面内壁加速度" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "フローを段階的に変化させるための最大加速度" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "上面内壁が印刷される際の加速度" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "第1層のフローを段階的に変化させるための最低速度" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "上面内壁の最大瞬間速度変化" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "プライムタワーブリム" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "上面内壁が印刷される際の最大瞬間速度変化。" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "モデルがない場合でも、プライムタワーには、ブリムによって与えられる追加の付着が必要なことがあります。現在は「ラフト」密着型では使用できません。" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "上面最外壁の最大瞬間速度変化" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "フロー期間をリセット" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "最初のレイヤーを印刷する温度。初期レイヤーのみ特別設定が必要ない場合は 0 に設定します。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 02e9916f4dc..43dcf7cd403 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -135,8 +136,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재시작해야 합니다." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- 재료 설정 및 Marketplace 플러그인 추가\n- 재료 설정과 플러그인 백업 및 동기화\n- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- 재료 설정 및 Marketplace 플러그인 추가\n" +"- 재료 설정과 플러그인 백업 및 동기화\n" +"- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" msgctxt "@heading" msgid "-- incomplete --" @@ -162,6 +169,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 파일" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 리더" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 기록기" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF 기록기 플러그인이 손상되었습니다." @@ -182,29 +197,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "사용자 지정 프로필에는 사용자가 변경한 설정만 저장됩니다.
    이를 지원하는 재료의 경우 새 사용자 지정 프로필은 %1의 속성을 상속합니다." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 공급업체: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 버전: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

    \n

    "보고서 전송" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    치명적인 오류가 발생했습니다. 문제를 해결할 수 있도록 이 충돌 보고서를 보내주십시오

    \n" +"

    "보고서 전송" 버튼을 사용하면 버그 보고서가 서버에 자동으로 전달됩니다

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>\n                    

    시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. </ p>\n                    

    백업은 설정 폴더에서 찾을 수 있습니다. </ p>\n                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>\n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>\n" +"                    

    시작할 때 복구 할 수없는 오류가 발생했습니다. 이 오류는 잘못된 구성 파일로 인해 발생할 수 있습니다. 설정을 백업하고 재설정하는 것이 좋습니다. </ p>\n" +"                    

    백업은 설정 폴더에서 찾을 수 있습니다. </ p>\n" +"                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>\n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.

    \n

    {model_names}

    \n

    인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

    \n

    인쇄 품질 가이드 보기

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    하나 이상의 3D 모델이 모델 크기 및 재료 구성으로 인해 최적의 상태로 인쇄되지 않을 수 있습니다.

    \n" +"

    {model_names}

    \n" +"

    인쇄 품질 및 안정성을 최고로 높이는 방법을 알아보십시오.

    \n" +"

    인쇄 품질 가이드 보기

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -223,6 +266,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF 파일" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 리더" + msgctxt "@label" msgid "Abort" msgstr "중단" @@ -259,6 +306,10 @@ msgctxt "@button" msgid "Accept" msgstr "동의" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." + msgctxt "@label" msgid "Account synced" msgstr "계정 동기화됨" @@ -351,6 +402,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "수동으로 프린터 추가" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "사용자 계정에서 프린터 {name}({model}) 추가" @@ -387,10 +439,23 @@ msgctxt "@button" msgid "Agree" msgstr "동의" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "모든 파일 (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "지원되는 모든 유형 ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "익명 데이터 전송 허용" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "항상 묻기" @@ -463,6 +528,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1(을)를 대기열의 맨 위로 이동하시겠습니까?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "일시적으로 {printer_name}을(를) 제거하시겠습니까?" @@ -471,6 +537,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "새 프로젝트를 시작 하시겠습니까? 빌드 플레이트 및 저장하지 않은 설정이 지워집니다." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." @@ -483,6 +554,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "모든 모델을 그리드에 정렬하기" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "질문하기" @@ -531,6 +606,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "백업 및 리셋 설정" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "구성을 백업하고 복원합니다." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "재료 설정과 플러그인 백업 및 동기화" @@ -543,6 +622,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "백업" +msgctxt "@label" +msgid "Balanced" +msgstr "균형" + msgctxt "@action:label" msgid "Base (mm)" msgstr "바닥 (mm)" @@ -619,10 +702,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMaker 프린터로 연결할 수 없습니까?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "프린터가 추가되기 전 {0}에서 프로파일을 가져올 수 없습니다." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다." @@ -631,6 +716,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFP 파일에 쓸 수 없음:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "취소" + msgctxt "@button" msgid "Cancel" msgstr "취소" @@ -691,8 +780,21 @@ msgctxt "@label" msgid "Checking..." msgstr "확인 중..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "펌웨어 업데이트를 확인합니다." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." msgctxt "@action:inmenu menubar:edit" @@ -771,6 +873,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "압축된 G-code 파일" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "압축 된 G 코드 리더기" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "압축 된 G 코드 작성기" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "구성 변경" @@ -807,6 +917,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "직경 변경 확인" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "제거 확인" + msgctxt "@action:button" msgid "Connect" msgstr "연결" @@ -839,6 +953,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Cloud를 통해 연결됨" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker 커뮤니티에 문의하십시오." @@ -879,6 +997,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "{device} 장치에 쓸 때 파일 이름을 찾을 수 없습니다." @@ -891,6 +1010,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "서버의 응답을 해석할 수 없습니다." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "마켓플레이스에 도달할 수 없습니다." @@ -903,6 +1026,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "재료 아카이브를 {}에 저장할 수 없음:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0}: {1} 에 저장할 수 없습니다" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" @@ -911,17 +1040,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "데이터를 프린터로 업로드할 수 없음." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n프로세스를 실행할 권한이 없습니다." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n" +"프로세스를 실행할 권한이 없습니다." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n운영 체제가 이를 차단하고 있습니다(바이러스 백신?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n" +"운영 체제가 이를 차단하고 있습니다(바이러스 백신?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n리소스를 일시적으로 사용할 수 없습니다" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"EnginePlugin을 시작할 수 없습니다: {self._plugin_id}\n" +"리소스를 일시적으로 사용할 수 없습니다" msgctxt "@title:window" msgid "Crash Report" @@ -963,6 +1107,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "백업 생성 중..." @@ -975,10 +1123,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura 백업" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 백업" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 프로파일" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 프로파일 리더" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 프로파일 작성자" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 프로젝트 3MF 파일" @@ -991,13 +1151,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "큐라를 시작할 수 없습니다" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다.\nCura는 다음의 오픈 소스 프로젝트를 사용합니다:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다.\n" +"Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" msgctxt "@label" msgid "Cura language" @@ -1007,6 +1172,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 버전" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 백엔드" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "통화:" @@ -1087,10 +1264,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "기본값" -msgctxt "@label" -msgid "Default" -msgstr "기본값" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "다른 프로파일로 변경하는 경우 변경된 설정값에 대한 기본 동작 " @@ -1263,10 +1436,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "꺼내기" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "이동식 장치 {0} 꺼내기" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다." @@ -1291,6 +1466,10 @@ msgctxt "@label" msgid "Enabled" msgstr "실행됨" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." + msgctxt "@title:label" msgid "End G-code" msgstr "End GCode" @@ -1319,6 +1498,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "프린터의 IP 주소를 입력하십시오." +msgctxt "@info:title" +msgid "Error" +msgstr "오류" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "오류 추적" @@ -1363,6 +1546,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "내보내기 완료" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "프로파일을 {0} 에 내보냅니다" @@ -1371,6 +1555,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "플러그인 및 재료 프로파일을 사용하여 UltiMaker Cura를 확장하십시오." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" + msgctxt "@label" msgid "Extruder" msgstr "익스트루더" @@ -1407,6 +1595,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다." @@ -1415,22 +1604,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "재료를 내보내는데 실패했습니다" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "프로파일을 {0}: {1}로 내보내는데 실패했습니다" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "프로파일을 {0}로 내보내지 못했습니다. Writer 플러그인이 오류를 보고했습니다." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}에서 프로파일을 가져오지 못했습니다 {1}" @@ -1463,6 +1657,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "필라멘트 무게" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "파일이 이미 있습니다" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "파일이 저장됨" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다." @@ -1495,6 +1698,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "펌웨어 업데이트" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "펌웨어 업데이트 검사기" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "펌웨어 업데이터" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다." @@ -1591,6 +1802,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code 파일" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "GCode 프로파일 리더기" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-코드 리더" + +msgctxt "name" +msgid "G-code Writer" +msgstr "GCode 작성자" + msgctxt "@label" msgid "G-code flavor" msgstr "Gcode 유형" @@ -1623,6 +1846,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "갠트리 높이" +msgctxt "@title:tab" +msgid "General" +msgstr "일반" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "오버행이 있는 모델 서포트를 생성합니다. 이러한 구조가 없으면 이러한 부분이 프린팅 중에 붕괴됩니다." @@ -1655,6 +1882,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "그리드 배치" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "그룹 #{group_nr}" @@ -1727,6 +1955,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" +msgctxt "name" +msgid "Image Reader" +msgstr "이미지 리더" + msgctxt "@action:button" msgid "Import" msgstr "가져오기" @@ -1975,6 +2207,10 @@ msgctxt "@action" msgid "Learn more" msgstr "자세히 알아보기" +msgctxt "@action:button" +msgid "Learn more" +msgstr "자세히 알아보기" + msgctxt "@button" msgid "Learn more" msgstr "자세히 알아보기" @@ -2003,6 +2239,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "왼쪽 보기" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "레거시 Cura 프로파일 리더" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "개발자에게 문제를 알려주십시오." @@ -2083,6 +2323,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "로그" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "프린터와의 연결이 끊어졌습니다" @@ -2091,6 +2335,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "기기 설정" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "컴퓨터 설정 작업" + msgctxt "@backuplist:label" msgid "Machines" msgstr "기기" @@ -2103,6 +2351,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "파일을 보내기 전에 g-코드가 프린터 및 프린터 구성에 적합한 지 확인하십시오. g-코드가 정확하지 않을 수 있습니다." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "재료 관리..." @@ -2151,6 +2415,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "여기서 UltiMaker Cura 플러그인 및 재료 프로파일을 관리하십시오. 플러그인을 최신 상태로 유지하고 설정을 정기적으로 백업하십시오." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." + msgctxt "@label" msgid "Manufacturer" msgstr "제조업체" @@ -2163,6 +2435,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "시장" +msgctxt "name" +msgid "Marketplace" +msgstr "마켓플레이스" + msgctxt "@action:label" msgid "Material" msgstr "재료" @@ -2179,6 +2455,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "재료 색상" +msgctxt "name" +msgid "Material Profiles" +msgstr "재료 프로파일" + msgctxt "@label" msgid "Material Type" msgstr "재료 유형" @@ -2223,6 +2503,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "종류" +msgctxt "name" +msgid "Model Checker" +msgstr "모델 검사기" + msgctxt "@info:title" msgid "Model Errors" msgstr "모델 에러" @@ -2239,6 +2523,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "모니터" +msgctxt "name" +msgid "Monitor Stage" +msgstr "모니터 단계" + msgctxt "@action:button" msgid "Monitor print" msgstr "프린트 모니터링" @@ -2312,6 +2600,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "네트워크 오류" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다" @@ -2324,6 +2613,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "새 UltiMaker 프린터를 Digital Factory에 연결하여 원격으로 모니터링할 수 있습니다." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 완료하지 않은 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다." @@ -2369,6 +2659,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "비용 추산 이용 불가" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0}(으)로 가져올 사용자 정의 프로파일이 없습니다" @@ -2477,6 +2768,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "익스트루더의 수" +msgctxt "@action:button" +msgid "OK" +msgstr "확인" + msgctxt "@label" msgid "OS language" msgstr "OS 언어" @@ -2497,6 +2792,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "상단 레이어 만 표시" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." @@ -2629,7 +2925,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "클립보드에서 붙여넣기" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "중지" @@ -2654,6 +2949,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "모델 별 설정" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "모델 별 설정 도구" + msgid "Perspective" msgstr "원근" @@ -2690,8 +2989,14 @@ msgid "Please give the required permissions when authorizing this application." msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.\n" +"- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." msgctxt "@text" msgid "Please name your printer" @@ -2705,6 +3010,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "이 프로파일에 대한 이름을 제공하십시오." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "플러그인 라이센스를 읽고 동의하십시오." @@ -2714,8 +3023,16 @@ msgid "Please remove the print" msgstr "프린트물을 제거하십시오" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n- 출력 사이즈 내에 맞춤화됨\n- 활성화된 익스트루더로 할당됨\n- 수정자 메쉬로 전체 설정되지 않음" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.\n" +"- 출력 사이즈 내에 맞춤화됨\n" +"- 활성화된 익스트루더로 할당됨\n" +"- 수정자 메쉬로 전체 설정되지 않음" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2765,6 +3082,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "후 처리" +msgctxt "name" +msgid "Post Processing" +msgstr "후처리" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "후처리 플러그인" @@ -2781,6 +3102,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "준비" +msgctxt "name" +msgid "Prepare Stage" +msgstr "준비 단계" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "준비 중..." @@ -2801,6 +3126,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "미리 보기" +msgctxt "name" +msgid "Preview Stage" +msgstr "미리 보기 단계" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "프라임 타워" @@ -2927,6 +3256,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "프린터 설정은 프로젝트에 저장된 설정과 일치하도록 업데이트됩니다." +msgctxt "@title:tab" +msgid "Printers" +msgstr "프린터" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Digital Factory에서 프린터 추가:" @@ -2987,6 +3320,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "프로파일 설정" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "프로파일 {0}에 알 수 없는 파일 유형이 있거나 손상되었습니다." @@ -3011,18 +3345,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "프로그래밍 언어" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "프로젝트 파일 {0}에 알 수 없는 기기 유형 {1}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "프로젝트 파일 {0}이 손상됨: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "프로젝트 파일 {0}이(가) 이 버전의 UltiMaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "프로젝트 파일 {0}에 갑자기 접근할 수 없습니다: {1}." @@ -3031,6 +3369,106 @@ msgctxt "@label" msgid "Properties" msgstr "속성" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura에서 모니터 단계 제공." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "일반 솔리드 메쉬보기를 제공합니다." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura에서 준비 단계 제공." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura에서 미리 보기 단계를 제공합니다." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "이동식 드라이브를 제공합니다." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura 프로파일 내보내기 지원을 제공합니다." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF 파일 읽기 지원." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF 파일 읽기가 지원됩니다." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D 파일을 읽을 수 있도록 지원합니다." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "모델 파일 읽기 기능을 제공합니다." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MF 파일 작성 지원을 제공합니다." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "모델 별 설정을 제공합니다." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "엑스레이 뷰를 제공합니다." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt 버전" @@ -3051,6 +3489,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt 버전" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다." @@ -3067,6 +3506,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 종료" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." + msgctxt "@button" msgid "Recommended" msgstr "추천" @@ -3119,6 +3562,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "이동식 드라이브" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "이동식 드라이브 출력 장치 플러그인" + msgctxt "@action:button" msgid "Remove" msgstr "제거" @@ -3135,6 +3582,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "이름 바꾸기" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "프로파일 이름 바꾸기" @@ -3271,14 +3722,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "이동식 드라이브에 저장" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." +msgctxt "@info:title" +msgid "Saving" +msgstr "저장" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" @@ -3371,6 +3829,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "재료를 프린터로 전송 중" +msgctxt "name" +msgid "Sentry Logger" +msgstr "보초 로거" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "직렬 통신 라이브러리" @@ -3403,6 +3865,10 @@ msgctxt "@label" msgid "Settings" msgstr "설정" +msgctxt "@title:tab" +msgid "Settings" +msgstr "설정" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "익스트루더의 현재 가용성과 일치하도록 설정이 변경되었습니다:" @@ -3563,6 +4029,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMaker 플랫폼에 로그인" +msgctxt "name" +msgid "Simulation View" +msgstr "시뮬레이션 뷰" + msgctxt "@tooltip" msgid "Skin" msgstr "스킨" @@ -3591,6 +4061,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." +msgctxt "name" +msgid "Slice info" +msgstr "슬라이스 정보" + msgctxt "@message:title" msgid "Slicing failed" msgstr "슬라이싱 실패" @@ -3607,13 +4081,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "스무딩(smoothing)" +msgctxt "name" +msgid "Solid View" +msgstr "솔리드 뷰" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "솔리드 뷰" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n\n이 설정을 표시하려면 클릭하십시오." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.\n" +"\n" +"이 설정을 표시하려면 클릭하십시오." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3628,8 +4112,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "%1에 정의된 일부 설정 값이 재정의되었습니다." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n\n프로파일 매니저를 열려면 클릭하십시오." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.\n" +"\n" +"프로파일 매니저를 열려면 클릭하십시오." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3655,8 +4145,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "스폰서 Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "스폰서 Cura" @@ -3701,6 +4189,10 @@ msgctxt "@label" msgid "Strength" msgstr "강도" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "재료를 성공적으로 내보냈습니다" @@ -3709,6 +4201,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "재료를 성공적으로 가져왔습니다" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." @@ -3729,6 +4222,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "서포트 차단기" +msgctxt "name" +msgid "Support Eraser" +msgstr "서포트 지우개" + msgctxt "@tooltip" msgid "Support Infill" msgstr "내부채움 서포트" @@ -3834,6 +4331,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "백업이 최대 파일 크기를 초과했습니다." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "균형 프로파일은 생산성, 표면 품질, 기계적 특성 및 치수 정확도 사이의 균형을 찾기 위해 설계되었습니다." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "밀리미터 단위의 빌드 플레이트에서 기저부 높이." @@ -3890,6 +4391,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "새 프린터와 함께 제공되는 펌웨어는 작동하지만 새로운 버전은 더 많은 기능과 향상된 기능을 제공하는 경향이 있습니다." @@ -3948,8 +4454,22 @@ msgid "The nozzle inserted in this extruder." msgstr "이 익스트루더에 삽입 된 노즐." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "프린트의 인필 재료 패턴:\n\n비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다.\n\n많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다.\n\n여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"프린트의 인필 재료 패턴:\n" +"\n" +"비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다.\n" +"\n" +"많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다.\n" +"\n" +"여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4100,6 +4620,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "프로파일 {0}에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다." @@ -4113,8 +4634,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "이 프로젝트에는 현재 Cura에 설치되지 않은 재료 또는 플러그인이 포함되어 있습니다.
    누락된 패키지를 설치하고 프로젝트를 다시 엽니다." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "이 설정에는 프로파일과 다른 값이 있습니다.\n\n프로파일 값을 복원하려면 클릭하십시오." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"이 설정에는 프로파일과 다른 값이 있습니다.\n" +"\n" +"프로파일 값을 복원하려면 클릭하십시오." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4130,8 +4657,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n\n계산 된 값을 복원하려면 클릭하십시오." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.\n" +"\n" +"계산 된 값을 복원하려면 클릭하십시오." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4157,6 +4690,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Digital Factory에 연결된 모든 프린터와 자동으로 재료 프로파일을 동기화하려면 Cura에 가입되어 있어야 합니다." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "연결을 설정하려면 {website_link}에 방문하십시오." @@ -4169,6 +4703,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g-코드 파일을 프린터로 전송할 수 있습니다." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name}을(를) 영구적으로 제거하려면 {digital_factory_link}을(를) 방문하십시오." @@ -4217,6 +4752,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 리더" + msgctxt "@button" msgid "Troubleshooting" msgstr "문제 해결" @@ -4233,10 +4772,26 @@ msgctxt "@action:label" msgid "Type" msgstr "유형" +msgctxt "@label" +msgid "Type" +msgstr "유형" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 리더기" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 작성자" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 프린팅" +msgctxt "name" +msgid "USB printing" +msgstr "USB 프린팅" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker 계정" @@ -4253,6 +4808,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker 포맷 패키지" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 네트워크 연결" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker 검증된 패키지" @@ -4261,6 +4820,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker 검증된 플러그인" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 기기 동작" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker 프린터" @@ -4273,6 +4836,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "UltiMaker 디지털 라이브러리" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "프로파일을 추가할 수 없습니다." @@ -4281,13 +4848,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "{self._plugin_id}에 대한 로컬 EnginePlugin 서버 실행 파일을 찾을 수 없습니다." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}\n접속이 거부되었습니다." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}\n" +"접속이 거부되었습니다." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4309,10 +4882,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "일부 모델별 설정으로 인해 슬라이스할 수 없습니다. 하나 이상의 모델에서 다음 설정에 오류가 있습니다. {error_labels}" @@ -4321,6 +4896,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" @@ -4369,6 +4945,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "알 수 없는 패키지" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}" @@ -4433,13 +5010,117 @@ msgctxt "@button" msgid "Updating..." msgstr "업데이트 중" -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "사용자 정의 펌웨어 업로드" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "프린트 작업을 프린터로 업로드하고 있습니다." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "사용자 정의 펌웨어 업로드" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "프린트 작업을 프린터로 업로드하고 있습니다." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4465,6 +5146,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Voronoi 세대를 포함한 유틸리티 라이브러리" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1에서 2.2로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2에서 2.4로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5에서 2.6으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6에서 2.7으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7에서 3.0으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0에서 3.1로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2에서 3.3으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "버전 업그레이드 3.3에서 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4에서 3.5로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "버전 업그레이드 3.5에서 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "버전 업그레이드 4.0에서 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.1에서 4.2로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11에서 4.12로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13에서 5.0으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2에서 4.3로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3에서 4.4로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4에서 4.5로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5에서 4.6으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0에서 4.6.2로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2에서 4.7로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7에서 4.8로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8에서 4.9로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9에서 4.10으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2에서 5.3으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3에서 5.4로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4에서 5.5로 버전 업그레이드" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factory에서 프린터 보기" @@ -4513,6 +5298,11 @@ msgctxt "@button" msgid "Want more?" msgstr "무엇을 더 하시겠습니까?" +msgctxt "@info:title" +msgid "Warning" +msgstr "경고" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "경고: 프로파일은 '{0}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오." @@ -4573,6 +5363,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "너비 (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "압축 된 아카이브에 g-code를 씁니다." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G Code를 파일에 씁니다." + msgctxt "@label" msgid "X (Width)" msgstr "X (너비)" @@ -4585,6 +5383,10 @@ msgctxt "@label" msgid "X min" msgstr "X 최소값" +msgctxt "name" +msgid "X-Ray View" +msgstr "엑스레이 뷰" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "엑스레이 뷰" @@ -4597,6 +5399,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D 파일" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 리더" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (깊이)" @@ -4614,18 +5420,30 @@ msgid "Yes" msgstr "예" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n정말로 계속하시겠습니까?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" +"정말로 계속하시겠습니까?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n정말로 계속하시겠습니까?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" +"정말로 계속하시겠습니까?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "UltiMaker Connect를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "연결 시도 중인 {0}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다." @@ -4636,7 +5454,10 @@ msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "일부 프로파일 설정을 사용자 정의했습니다.\n프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." +msgstr "" +"일부 프로파일 설정을 사용자 정의했습니다.\n" +"프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?\n" +"또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4666,9 +5487,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "새 프린터가 Cura에 자동으로 나타납니다." +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -4726,6 +5552,7 @@ msgctxt "@label" msgid "version: %1" msgstr "버전: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "다음 계정 동기화 시까지 {printer_name}이(가) 제거됩니다." @@ -4734,630 +5561,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}개의 플러그인을 다운로드하지 못했습니다" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura 프로필 내보내기를 지원합니다." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 프로파일 작성자" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." - -msgctxt "name" -msgid "Slice info" -msgstr "슬라이스 정보" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "기본값" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "레거시 Cura 프로파일 리더" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D 파일을 읽을 수 있도록 지원합니다." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 리더" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 작성자" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "버전 업그레이드 3.5에서 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.1에서 4.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7에서 4.8로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9에서 4.10으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2에서 3.3으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7에서 3.0으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11에서 4.12로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6에서 2.7으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8에서 4.9로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3에서 4.4로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "버전 업그레이드 3.3에서 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4에서 4.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5에서 2.6으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1에서 2.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2에서 4.3로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2에서 5.3으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "버전 업그레이드 4.0에서 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2에서 2.4로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4에서 3.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13에서 5.0으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4에서 5.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5에서 4.6으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0에서 3.1로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0에서 4.6.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2에서 4.7로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3에서 5.4로 버전 업그레이드" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" - -msgctxt "name" -msgid "Post Processing" -msgstr "후처리" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." - -msgctxt "name" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 프로파일 리더" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "모델 별 설정을 제공합니다." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "모델 별 설정 도구" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura에서 미리 보기 단계를 제공합니다." - -msgctxt "name" -msgid "Preview Stage" -msgstr "미리 보기 단계" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" - -msgctxt "name" -msgid "Support Eraser" -msgstr "서포트 지우개" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-코드 리더" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "구성을 백업하고 복원합니다." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 백업" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "이동식 드라이브를 제공합니다." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "이동식 드라이브 출력 장치 플러그인" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." - -msgctxt "name" -msgid "Material Profiles" -msgstr "재료 프로파일" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 기기 동작" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "엑스레이 뷰를 제공합니다." - -msgctxt "name" -msgid "X-Ray View" -msgstr "엑스레이 뷰" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker 네트워크 연결" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "컴퓨터 설정 작업" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "모델 파일 읽기 기능을 제공합니다." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 리더" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." - -msgctxt "name" -msgid "Marketplace" -msgstr "마켓플레이스" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura에서 모니터 단계 제공." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "모니터 단계" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." - -msgctxt "name" -msgid "Image Reader" -msgstr "이미지 리더" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "펌웨어 업데이터" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 백엔드" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura에서 준비 단계 제공." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "준비 단계" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "UltiMaker 디지털 라이브러리" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "펌웨어 업데이트를 확인합니다." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "펌웨어 업데이트 검사기" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G Code를 파일에 씁니다." - -msgctxt "name" -msgid "G-code Writer" -msgstr "GCode 작성자" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." - -msgctxt "name" -msgid "Model Checker" -msgstr "모델 검사기" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF 파일 읽기 지원." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 리더" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." - -msgctxt "name" -msgid "USB printing" -msgstr "USB 프린팅" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF 파일 읽기가 지원됩니다." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 리더" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "GCode 프로파일 리더기" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "일반 솔리드 메쉬보기를 제공합니다." - -msgctxt "name" -msgid "Solid View" -msgstr "솔리드 뷰" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "보초 로거" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "압축 된 G 코드 리더기" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 리더기" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF 파일 작성 지원을 제공합니다." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 기록기" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "압축 된 아카이브에 g-code를 씁니다." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "압축 된 G 코드 작성기" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura 프로파일 내보내기 지원을 제공합니다." - -msgctxt "@info:title" -msgid "Error" -msgstr "오류" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "취소" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "설정" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "자세히 알아보기" - -msgctxt "@title:tab" -msgid "General" -msgstr "일반" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" - -msgctxt "@label" -msgid "Type" -msgstr "유형" - -msgctxt "@info:title" -msgid "Saving" -msgstr "저장" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "파일이 이미 있습니다" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "지원되는 모든 유형 ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0}: {1} 에 저장할 수 없습니다" - -msgctxt "@action:button" -msgid "OK" -msgstr "확인" - -msgctxt "@info:title" -msgid "Warning" -msgstr "경고" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "프린터" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "파일이 저장됨" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "제거 확인" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "모든 파일 (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "균형" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "균형 프로파일은 생산성, 표면 품질, 기계적 특성 및 치수 정확도 사이의 균형을 찾기 위해 설계되었습니다." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Cura 프로필 내보내기를 지원합니다." diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index 5453efd14c4..c9fd48f56d1 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "기기 세부 설정" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "익스트루더" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "고정" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 위치" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 고정" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "익스트루더 프린팅 냉각 팬" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "익스트루더" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "익스트루더 엔드 G 코드" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "익스트루더 끝 절대 위치" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "익스트루더 끝 X 위치" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "익스트루더 끝 Y 위치" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 위치" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "익스트루더 프린팅 냉각 팬" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "익스트루더 스타트 G 코드" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "익스트루더 시작 위치의 절대 값" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "익스트루더 시작 X의 위치" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "익스트루더 시작 위치 Y" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." + +msgctxt "material description" +msgid "Material" +msgstr "재료" + +msgctxt "material label" +msgid "Material" +msgstr "재료" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 직경" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "노즐 ID" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "노즐 X 오프셋" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "노즐 오프셋의 x 좌표." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "노즐 Y 오프셋" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "노즐 오프셋의 y 좌표." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 직경" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." -msgctxt "material label" -msgid "Material" -msgstr "재료" - -msgctxt "material description" -msgid "Material" -msgstr "재료" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 고정" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "고정" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "노즐 오프셋의 x 좌표." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "노즐 오프셋의 y 좌표." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index b2ef2e18808..09837e2f63c 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5466 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "기기 유형" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3D 프린터 모델의 이름." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "기기 세부 설정 표시" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "상단 표면 스킨 층이 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호로 묶여 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 리스트입니다." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "시작 GCode" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "시작과 동시에형실행될 G 코드 명령어 \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "End GCode" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "맨 마지막에 실행될 G 코드 명령 \n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "재료 GUID" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "사용할 라인 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호 안에 들어 있습니다. 기본값은 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용하는 빈 리스트입니다." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "재료의 GUID. 자동으로 설정됩니다." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "노즐이 위치할 수 없는 구역의 목록입니다." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "다른 부품 내부에 완전히 둘러싸인 부품은 다른 부품의 내부에 닿는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내에 있는 모든 브림이 제거됩니다." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "노즐이 가열될 때까지 기다리기" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "브랜치가 서포트하는 지점에서 뻗어 나가는 거리에 대한 권장 사항입니다. 브랜치는 목적지(빌드 플레이트 또는 모델의 평평한 부분)에 도달하기 위해 이 값을 초과할 수 있습니다. 이 값을 낮추면 서포트가 더 견고해지지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "독립 익스트루더 프라임 포지션" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "재료의 온도 포함하기" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "어댑티브 레이어 최대 변화" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura는 이 설정을 자동으로 비활성화 합니다." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "어댑티브 레이어 지형 크기" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "빌드 플레이트 온도 포함" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "어댑티브 레이어 변화 단계 크기" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura는 이 설정을 자동으로 비활성화 합니다." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "기기 너비" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"내부채움 영역 주변에 여분의 벽을 추가합니다. 이러한 벽은 상단/하단 스킨 라인이 늘어지는 것을 줄여줄 수 있습니다. 일부 여분 재료를 사용해도 같은 품질을 유지하는 데 필요한 필요한 상단/하단 스킨 층이 감소한다는 의미입니다.\n" +"이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "프린팅 가능 영역의 폭 (X 방향)." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "부착" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "기기 깊이" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "점착 성항" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "프린팅 가능 영역의 깊이 (Y 방향)" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 스킨 라인과 가장 안쪽 벽의 라인 폭 비율로 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 비율이 50%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "기기 높이" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "출력물의 내부채움을 조절합니다." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "빌드 플레이트 모양" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "브랜치의 팁을 생성하는 데 사용되는 서포트 구조의 밀도를 조정합니다. 값이 클수록 오버행은 개선되지만 서포트를 제거하기가 어려워집니다. 매우 큰 값을 위해서는 서포트 지붕을 사용하거나 상단의 서포트 밀도가 비슷하게 높은지 확인합니다." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "직사각형" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "타원" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "빌드 플레이트 재질" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "프린터에 설치된 빌드 플레이트의 재질." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "유리" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "알루미늄" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "모두" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "히팅 빌드 플레이트가 있음" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "모두 한꺼번에" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "빌드 볼륨 온도 안정화" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "대체 여분 벽" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "대체 메쉬 제거" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "벽 방향 대체" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "알루미늄" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "항상 활성 도구 쓰기" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "임시 명령을 비활성 도구로 전송한 후 활성 도구를 작성하십시오. Smoothie 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "센터 원점" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "프린터의 0 위치의 X/Y 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "첫 번째 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 음수 값은 \"elephant's foot\"이라고 알려진 현상을 보완 할 수 있습니다." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "익스트루더의 수" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "서포트 바닥에 적용되는 오프셋 양." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "활성화된 익스트루더의 수" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "서포트 지붕에 적용되는 오프셋 양." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "외부 노즐의 외경" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "노즐 끝의 외경." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "노즐 길이" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "안티 오버행 메쉬" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "흐름 방지 리트랙션 위치" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "노즐 각도" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "흐름 방지 리트랙션 속도" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "가열 영역 길이" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "모델이 닿는 위치에 연동 빔 구조를 생성합니다. 이렇게 하면 모델, 특히 다른 재료로 프린트된 모델 간의 접착력이 개선됩니다." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "움직일 때 프린팅한 부분을 피하기" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "노즐 온도 조절 활성화" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "이동하는 경우 지지대 피함" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "뒤로" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "가열 속도" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "후면 왼쪽" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "노즐이 가열되는 속도 (°C/s)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "후면 오른쪽" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "냉각 속도" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "노즐이 냉각되는 속도 (°C/s)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "모두" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "최소 대기 시간" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "둘 다 겹침" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "하단 레이어" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Gcode 유형" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "하단 패턴 초기 레이어" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "생성 될 gcode의 유형." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "밑면 스킨 확장 거리" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "밑면 스킨 제거 폭" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (부피 측정법)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "바닥 두께" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "브랜치 밀도" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "브랜치 직경" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "브랜치 직경 각도" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "파단 준비 리트랙션 위치" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "파단 준비 리트랙션 속도" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "준비 온도 파단" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "파단 리트랙션 위치" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "펌웨어 리트렉션" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "파단 리트랙션 속도" -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)를 사용할 지 여부." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "파단 온도" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "압출기의 히터 공유" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Chunk에서 서포트 중단" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "브릿지 팬 속도" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "익스트루더의 노즐 공유" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "여러 개의 레이어가있는 브릿지" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "익스트루더가 자체 노즐을 가지고 있지 않고 단일 노즐을 공유하는지에 대한 여부. True로 설정하면 프린터 시동 gcode 스크립트가 알려진 상호 호환 가능한 초기 수축 상태(0 또는 1개의 필라멘트가 수축되지 않음)에서 모든 익스트루더를 적절하게 설정해야 합니다. 이 경우 초기 수축 상태는 'machine_extruders_shared_nozzle_initial_retraction' 매개 변수에 의해 익스트루더마다 표시됩니다." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "브리지 두 번째 스킨 밀도" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "공유된 노즐 초기 수축" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "브릿지 두번째 스킨 팬 속도" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "프린터 시작 gcode 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "브리지 두 번째 스킨 압출량" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "허용되지 않는 지역" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "브릿지 두번째 스킨 속도" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "브릿지 스킨 밀도" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "노즐이 위치할 수 없는 구역" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "브리지 스킨 압출량" -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "노즐이 위치할 수 없는 구역의 목록입니다." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "브릿지 스킨 속도" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "머신 헤드 및 팬 폴리곤" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "브릿지 스킨 서포트 임계값" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "브리지의 희박한 내부채움 최대 밀도" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "갠트리 높이" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "익스트루더로 오프셋" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "독립 익스트루더 프라임 포지션" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 방향 최대 속도" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 방향의 모터 최대 속도입니다." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 방향 최대 속도" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 속도입니다." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 방향 최대 속도" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 방향의 모터 최대 속도입니다." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "최대 속도 E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "필라멘트의 최대 속도." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "최대 가속도 X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 방향 모터의 최대 가속도" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Y 방향 최대 가속도" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 가속도." +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "브릿지 세번째 스킨 밀도" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 방향 최대 가속도" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "브릿지 세번째 스킨 팬 속도" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 방향 모터의 최대 가속도." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "브리지 세 번째 스킨 압출량" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "최대 필라멘트 가속도" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "브릿지 세번째 스킨 속도" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 최대 가속도." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "브릿지 벽 코스팅(Coasting)" -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "기본 가속도" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "브리지 벽 압출량" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "프린트 헤드 이동시 기본 가속도." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "브릿지 벽 속도" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "기본 X-Y Jerk" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "브림" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "수평면에서의 이동을 위한 기본 Jerk." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "브림 거리" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "기본 Z Jerk" +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "내부 브림의 여백 회피" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 방향 모터의 기본 Jerk." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "브림 선 수" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "기본 필라멘트 Jerk" +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "밖에서만 브림 생성" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 기본 Jerk." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "브림이 서포트를 대체" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "밀리미터 당 스텝 수 (X)" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "브림 너비" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "X 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 부착" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "밀리미터 당 스텝 수 (Y)" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "빌드 플레이트 고정 익스트루더" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Y 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "빌드 플레이트 고정 유형" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "밀리미터 당 스텝 수 (Z)" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "빌드 플레이트 재질" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Z 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "빌드 플레이트 모양" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "밀리미터 당 스텝 수 (E)" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "빌드 플레이트 온도" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "둘레를 따라 1밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "초기 레이어의 빌드 플레이트 온도" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "양의 방향 X 엔드 스톱" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "빌드 볼륨 온도" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X 축의 엔드 스톱이 양의 방향 (높은 X 좌표) 또는 음의 (낮은 X 좌표)인지 여부." +msgctxt "center_object label" +msgid "Center Object" +msgstr "가운데 객체" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "양의 방향 Y 엔드 스톱" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y 축의 엔드 스톱이 양의 방향 (높은 Y 좌표) 또는 음의 (낮은 Y 좌표)인지 여부." +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "양의 방향 Z 엔드 스톱" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "코스팅(Coasting) 속도" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z 축의 엔드 스톱이 양의 방향 (높은 Z 좌표) 또는 음의 (낮은 Z 좌표)인지 여부." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "코스팅(Coasting) 양" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "최소 이송 속도" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "코스팅(Coasting)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "프린트 헤드의 최소 이동 속도." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing 모드" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "피더 휠 지름" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Combing은 이동할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 이동이 약간 더 길어 지지만 리트렉션의 필요성은 줄어듭니다. Combing이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 상단/하단 스킨 영역을 Combing하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "피더에서 재료를 구동시키는 휠의 지름." +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "커맨드 라인 설정" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "팬 속도를 0-1로 조정" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "동심원" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "팬 속도를 0 ~ 256이 아니라 0 ~ 1로 조정합니다." +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "동심원" -msgctxt "resolution label" -msgid "Quality" -msgstr "품질" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "층 높이" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "각 층의 높이 (mm)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "첫번째 레이어 높이" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원 형태" -msgctxt "line_width label" -msgid "Line Width" -msgstr "선의 두께" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "동심원의" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "원추서포트 각" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "벽 선 너비" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "원뿔형 서포트 최소 너비" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "단일 벽 선의 너비입니다." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "내부채움 선 연결" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "바깥 선 선폭" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "내부채움 다각형 연결" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "서포트 선 연결" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "내부 벽 선 너비" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "ZigZags 서포트 연결" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "상단/하단 다각형 연결" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "상단/하단 라인 폭" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "내부채움 선 폭" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "단일 내부채움 라인의 너비." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "스커트/브림 선 너비" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "단일 스커트 또는 브림의 너비." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "서포트의 폭" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "단일 서포트 구조 선의 폭입니다." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "냉각 속도" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "서포트 인터페이스의 폭" +msgctxt "cooling description" +msgid "Cooling" +msgstr "냉각" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "서포트의 지붕, 바닥의 폭." +msgctxt "cooling label" +msgid "Cooling" +msgstr "냉각" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "서포트 루프 라인 폭" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "십자형" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "단일 서포트 지붕 라인 폭." +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "십자" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "서포트 바닥 라인 폭" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "십자형 3D" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "단일 서포트 플로어 라인의 폭." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "크로스 3D 포켓 크기" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "프라임 타워 라인 폭" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "지지대에 대한 교차 충진 밀도 이미지" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "단일 주요 타워 라인의 폭." +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "교차 충진 밀도 이미지" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "초기 레이어 라인 폭" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "결정형 소재" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "입방체" -msgctxt "shell label" -msgid "Walls" -msgstr "벽" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "입방체 세분" -msgctxt "shell description" -msgid "Shell" -msgstr "외곽" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "입방 세분 쉘" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "벽 익스트루더" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "커팅 메쉬" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "외벽 익스트루더" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "기본 가속도" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "기본 빌드 플레이트 온도" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "내벽 익스트루더" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "기본 필라멘트 Jerk" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "기본 프린팅 온도" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "벽 두께" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "기본 X-Y Jerk" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "기본 Z Jerk" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "벽 라인의 수" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "수평면에서의 이동을 위한 기본 Jerk." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 방향 모터의 기본 Jerk." -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "벽 전환 길이" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 기본 Jerk." -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "벽 배포 개수" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "벽이 프린팅되는 순서를 정의합니다. 외벽을 먼저 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트팅 될 때 더 잘 쌓일 수 있습니다. 전체 내벽의 총량이 불균일할 경우, '가운데 마지막 선'이 항상 마지막에 인쇄됩니다." -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "벽 전환 임계각" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "벽 전환 필터 거리" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "모델에 대한 직경 증가" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "벽 전환 필터 여백" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "모든 브랜치가 빌드 플레이트에 도달할 때 달성하려고 하는 직경입니다. 이에 따라 베드 접착력이 개선됩니다." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "하나의 여분 벽과 하나 더 적은 벽 사이를 왔다 갔다 하는 전환을 방지하십시오. 이 여백은 [최소 벽 선 너비 - 여백, 2 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "외벽 이동 거리" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "허용되지 않는 지역" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Z 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "외벽 삽입" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "벽면 프린팅 순서 명령 최적화" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화합니다. 대부분의 부품은 이 기능을 사용하면 도움이 되지만 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "벽 순서 지정" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "벽이 프린팅되는 순서를 정의합니다. 외벽을 먼저 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트팅 될 때 더 잘 쌓일 수 있습니다. 전체 내벽의 총량이 불균일할 경우, '가운데 마지막 선'이 항상 마지막에 인쇄됩니다." +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "서포트 상단에서 프린팅까지의 거리." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "내부에서 외부로" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "외부에서 내부로" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "대체 여분 벽" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Z 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "최소 벽 선 너비" +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "최소 짝수 벽 선 너비" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "일반 다각형 벽의 최소 선 너비 이 설정은 단일의 얇은 벽 선 프린팅에서 두 개의 벽 선 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 짝수 벽 선 너비는 외벽 선 너비 + 0.5 * 최소 홀수 벽 선 너비로 계산됩니다." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "최소 홀수 벽 선 너비" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "중간 선 간격 충전재 폴리라인 벽의 최소 선 너비. 이 설정은 두 개의 벽 선을 프린팅 하는 것에서 두 개의 외벽 및 가운데의 단일 중앙 벽 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 홀수 벽 너비는 2 * 최소 짝수 벽 선 너비로 계산됩니다." +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "얇은 벽 프린팅" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "드래프트 쉴드 높이" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "드래프트 쉴드 제한" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "최소 피처 크기" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "드래프트 쉴드 X/Y 거리" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "드롭 다운 서포트 메쉬" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "얇은 벽 선 최소 너비" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "이중 압출" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "타원" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "수평 확장" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "가속 제어 활성화" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "브릿지 설정 사용" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "첫번째 레이어 수평 확장" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "코스팅(Coasting) 사용" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "첫 번째 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 음수 값은 \"elephant's foot\"이라고 알려진 현상을 보완 할 수 있습니다." +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "원추형 서포트 사용" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "구멍 수평 확장" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "드래프트 쉴드 사용" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "0보다 크면 홀 수평 확장은 각 레이어의 모든 홀에 적용되는 오프셋의 양입니다. 양수 값은 홀의 크기를 늘리고 음수 값은 홀의 크기를 줄입니다. 이 설정을 활성화하면 홀 수평 확장 최대 직경을 사용하여 추가로 조정할 수 있습니다." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "플루이드 모션 활성화" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "구멍 수평 확장 최대 직경" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "다림질 사용" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "0보다 큰 값으로 설정하면 구멍 수평 확장이 작은 구멍에 점진적으로 적용되고(작은 구멍이 더 확장됨), 0으로 설정하면 구멍 수평 확장이 모든 구멍에 적용됩니다. 구멍 수평 확장 최대 직경보다 큰 구멍은 확장되지 않습니다." +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Jerk 컨트롤 사용" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 솔기 정렬" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "노즐 온도 조절 활성화" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ooze 쉴드 사용" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "사용자 지정" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "프라임 블롭 활성화" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "최단경로" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "프라임 타워 사용" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "랜덤" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "프린팅 냉각 사용" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "날카로운 모서리" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "리트렉션 활성화" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 경계 위치" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "서포트 브림 사용" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "서포트 바닥 사용" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "후면 왼쪽" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "서포트 인터페이스 사용" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "뒤로" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "서포트 지붕 사용" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "후면 오른쪽" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "이동 가속 활성화" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "오른쪽" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "이동 저크 활성화" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "전면 오른쪽" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "전면" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "맨 위 스킨 레이어(공기에 노출됨)의 작은(최대 '작은 상단/하단 너비') 영역을 기본 패턴 대신 벽으로 채울 수 있습니다." -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "전면 왼쪽" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. Jerk를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "왼쪽" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 솔기 X" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "End GCode" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 솔기 Y" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "필라멘트 끝의 퍼지 길이" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "필라멘트 끝의 퍼지 속도" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "솔기 코너 환경 설정" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "어디에나" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "없음" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "배타적" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "솔기 숨기기" +msgctxt "experimental label" +msgid "Experimental" +msgstr "실험적인" msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" msgstr "솔기 노출" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "솔기 숨기기 또는 노출" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "스마트 숨김" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "상대적 Z 솔기" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "광범위한 스티칭" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "활성화 된 경우 z 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "위 / 아래" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "여분의 내부채움 벽 수" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "위 / 아래" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "여분의 스킨 벽 수" -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "상단 표면 익스트루더" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "상단 표면 스킨 레이어" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 포지션" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "상단 표면 스킨 선 너비" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "압출기의 히터 공유" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "프린팅 상단 부분의 한 줄 너비." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "익스트루더의 노즐 공유" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "탑 표면 스킨 패턴" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "압출 냉각 속도 조절기" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "최상위 레이어의 패턴." +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "속도에 대한 압출 너비 기준 보정 계수. 0%에서는 이동 속도가 프린팅 속도로 일정하게 유지됩니다. 100%에서는 흐름(단위: mm³/s)이 일정하게 유지되도록 이동 속도가 조정됩니다. 즉 일반적인 선 너비의 절반인 선은 두 배로 빠르게 프린팅되고 너비가 두 배인 선은 절반 속도로 프린팅됩니다. 100%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "윤곽" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "팬 속도" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "팬 속도 무시" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "단면 상단 표면 순서" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "아직 구체화되지 않은 기능들." -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "피더 휠 지름" -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "상단 표면 스킨 라인 방향" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "최종 프린팅 온도" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "상단 표면 스킨 층이 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호로 묶여 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 리스트입니다." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "펌웨어 리트렉션" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "상단/하단 익스트루더" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "첫 번째 레이어 서포트 익스트루더" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "material_flow label" +msgid "Flow" +msgstr "공급량" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "상단/하단 두께" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "흐름 균일화 비율" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "압출 속도 보상 배율" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "상단 두께" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "압출 속도 보상 최대 압출 오프셋" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "재료 공급 온도 그래프" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "상단 레이어" +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 "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "첫 번째 레이어 하단 라인의 압출 보상" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "바닥 두께" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "내부채움 라인의 압출 보상입니다." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "하단 레이어" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "프린트 상단 부분 라인의 압출 보상입니다." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "프라임 타워 라인의 압출 보상입니다." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "초기 하단 레이어" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "스커트 또는 브림 라인의 압출 보상입니다." -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 "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "지지대 바닥 라인의 압출 보상입니다." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "상단/하단 패턴" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "지지대 지붕 라인의 압출 보상입니다." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "상단/하단 레이어의 패턴." +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "지지대 구조 라인의 압출 보상입니다." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "첫 번째 레이어의 가장 외측 벽 라인의 압출 보상입니다." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원 형태" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "가장 외측 벽 라인의 압출 보상입니다." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "하단 패턴 초기 레이어" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "상단/하단 라인의 압출 보상입니다." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "윤곽" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다(단, 첫 번째 레이어에 한정)." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "벽 라인의 압출 보상입니다." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "상단/하단 다각형 연결" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "플루이드 모션 각도" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "단면 상단/하단 순서" +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "플루이드 모션 이동 거리" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "플루이드 모션 가까운 거리" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "상단/하단 라인 길 방향" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "수평 퍼지 길이" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다." +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "수평 퍼지 속도" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "작은 상단/하단 너비" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "작은 상단/하단 영역은 기본 상단/하단 패턴 대신 벽으로 채워집니다. 이렇게 하면 갑작스러운 모션을 방지하는 데 도움이 됩니다. 기본적으로 최상단(공기에 노출된) 레이어는 꺼져 있습니다('표면의 작은 상단/하단' 참조)." +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "전면" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "표면의 작은 상단/하단" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "전면 왼쪽" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "맨 위 스킨 레이어(공기에 노출됨)의 작은(최대 '작은 상단/하단 너비') 영역을 기본 패턴 대신 벽으로 채울 수 있습니다." +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "전면 오른쪽" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 간격에 스킨 없음" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "가득찬" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "모델의 몇 가지 레이어에만 수직 간격이 작을 경우 보통 좁은 공간의 본 레이어 주위에도 스킨이 있어야 합니다. 수직 간격이 매우 작을 경우 스킨을 생성하지 않도록 이 설정을 활성화합니다. 이렇게 하면 프린팅 시간과 슬라이싱 시간은 개선되지만 기술적으로 내부채움이 공기 중에 노출된 상태로 남게 됩니다." +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "퍼지 스킨" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "여분의 스킨 벽 수" +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "퍼지 스킨 밀도" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "부용 퍼지 스킨" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "다림질 사용" +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "퍼지 스킨 포인트 거리" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "퍼지 스킨 두께" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "최상위 레이어에 다림질" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Gcode 유형" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"맨 마지막에 실행될 G 코드 명령 \n" +"." -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "다림질 패턴" +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"시작과 동시에형실행될 G 코드 명령어 \n" +"." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "윗면을 다림질 할 때 사용하는 패턴." +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "재료의 GUID. 자동으로 설정됩니다." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "동심원" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "갠트리 높이" -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "연동 구조 생성" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "단면 다림질 순서" +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "서포트 생성" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "다림질 라인 간격" +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "다림질 라인 사이의 거리." +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "다림질 압출량" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "다림질 삽입" +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "유리" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "다림질 속도" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "점진적인 내부채움 단계 높이" -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "상단 표면을 통과하는 속도." +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "점진적인 내부채움 단계" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "다림질 가속" +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "점진적 서포트 내부채움 단계 높이" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "다림질이 수행되는 가속도." +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "점진적 서포트 내부채움 단계" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "다림질 저크(Jerk)" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "최소 레이어 시간 때문에 늦춰진 속도로 프린트하는 경우 점차 이 온도로 낮춥니다." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "다림질을하는 동안 최대 순간 속도 변화." +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "그리드" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "스킨 겹침 비율" +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "그리드" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 스킨 라인과 가장 안쪽 벽의 라인 폭 비율로 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 비율이 50%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "그리드" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "스킨 겹침" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "격자" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "그리드" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "스킨 제거 폭" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "외벽 그룹화" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "상단 스킨 제거 폭" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "빌드 볼륨 온도 안정화" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "밑면 스킨 제거 폭" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "히팅 빌드 플레이트가 있음" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "가열 속도" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "스킨 확장 거리" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "가열 영역 길이" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "윗면 스킨 확장 거리" +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "솔기 숨기기" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "솔기 숨기기 또는 노출" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "밑면 스킨 확장 거리" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "구멍 수평 확장" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "구멍 수평 확장 최대 직경" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "확장을 위한 최대 스킨 각" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며 스킨의 확장을 유발하지 않고, 90도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "수평 확장" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "확장을 위한 최소 스킨 폭" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "수평 확장 배율 수축 보정" -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 "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." -msgctxt "infill label" -msgid "Infill" -msgstr "내부채움" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." -msgctxt "infill description" -msgid "Infill" -msgstr "내부채움" +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 "압출 속도 변화를 보상하기 위해 필라멘트를 이동하는 거리(1초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "내부채움 익스트루더" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "내부채움 밀도" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "출력물의 내부채움을 조절합니다." +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "내부채움 선간 거리" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "다른 재료로 전환 후 재료를 압출하는 속도." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "내부채움 패턴" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "X 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Y 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Z 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "둘레를 따라 1밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "삼-육각형" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "입방체" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "프린터 시작 gcode 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "입방체 세분" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "서포트 인터페이스와 서포트가 겹칠 때 상호 작용하는 방식으로, 현재 서포트 지붕에만 구현되어 있습니다." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "옥텟" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "모델에 브랜치를 배치할 때 브랜치의 높이를 설정합니다. 이에 따라 서포트의 작은 얼룩이 방지됩니다. 브랜치가 서포트 지붕을 서포트하는 경우 이 설정은 무시됩니다." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "쿼터 큐빅" +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 "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "동심원" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "도구 경로 세그먼트가 일반적인 모션에서 이 각도보다 더 많이 벗어나면 평활화됩니다." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "십자형" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "십자형 3D" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "라이트닝" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "빌드 플레이트 온도 포함" -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "내부채움 선 연결" +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "재료의 온도 포함하기" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "중복" + +msgctxt "infill description" +msgid "Infill" +msgstr "내부채움" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "내부채움 다각형 연결" +msgctxt "infill label" +msgid "Infill" +msgstr "내부채움" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "내부채움 가속도" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "내부채움 선 방향" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "벽 앞에 내부채움" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "사용할 라인 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호 안에 들어 있습니다. 기본값은 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용하는 빈 리스트입니다." +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "내부채움 밀도" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "내부채움 X 오프셋" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "내부채움 익스트루더" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "내부채움 압출량" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "내부채움 Y 오프셋" +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk 내부채움" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "내부채움 층 두께" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "무작위 충전 시작" +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "내부채움 선 방향" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "가장 먼저 프린트되는 충전 선을 무작위로 결정합니다. 이렇게 하면 특정 세그먼트가 가장 강한 세그먼트가 되는 일이 없지만, 추가 이동이 발생하지 않게 됩니다." +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "내부채움 선간 거리" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "내부채움 선 승수" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "여분의 내부채움 벽 수" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "내부채움 선 폭" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "내부채움 영역 주변에 여분의 벽을 추가합니다. 이러한 벽은 상단/하단 스킨 라인이 늘어지는 것을 줄여줄 수 있습니다. 일부 여분 재료를 사용해도 같은 품질을 유지하는 데 필요한 필요한 상단/하단 스킨 층이 감소한다는 의미입니다.\n이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "메쉬 내부채움" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "입방 세분 쉘" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "충진물 오버행 각도" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "내부채움 오버랩" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "내부채움 오버랩 비율" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "내부채움 패턴" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "내부채움 오버랩" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "내부채움 속도" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "충진물 지지대" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "내부채움재 이동 최적화" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "내부채움 거리" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "내부채움 X 오프셋" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "내부채움 층 두께" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "내부채움 Y 오프셋" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "초기 하단 레이어" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "점진적인 내부채움 단계" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "초기 팬 속도" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "초기 레이어 가속" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "점진적인 내부채움 단계 높이" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "첫 번째 레이어 하단 압출량" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "초기 레이어 직경" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "벽 앞에 내부채움" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "첫번째 레이어 압출량" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "첫번째 레이어 높이" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "최소 내부채움 지역" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "첫번째 레이어 수평 확장" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "첫 번째 레이어 내벽 압출량" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "충진물 지지대" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "초기 레이어 Jerk" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "초기 레이어 라인 폭" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "충진물 오버행 각도" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "첫 번째 레이어 외벽 압출량" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "충진물이 추가되는 내부 오버행의 최소 각도. 0°에서는 개체가 충진물로 완전히 채워지지만, 90°에서는 충진물이 공급되지 않습니다." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "초기 레이어 프린팅 가속" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "스킨 에지의 두께 지원" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "초기 레이어 프린팅 Jerk" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "초기 레이어 프린팅 속도" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "스킨 에지의 레이어 지원" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "초기 레이어 속도" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "초기 레이어 서포트 선 거리" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "라이트닝 내부채움 서포트 각도" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "초기 레이어 이동 가속도" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "초기 레이어 이동 Jerk" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "라이트닝 내부채움 오버행 각도" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "초기 레이어 이동 속도" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "초기 레이어 Z 겹침" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "초기 프린팅 온도" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "내벽 가속도" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "내벽 익스트루더" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "내벽 Jerk" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "라이트닝 내부채움 가지치기 각도" +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "내벽 속도" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "내벽 압출량" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "라이트닝 내부채움 정리 각도" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "내부 벽 선 너비" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "기본 프린팅 온도" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "내부에서 외부로" -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "인터페이스 라인 우선" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "빌드 볼륨 온도" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "인터페이스 우선" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "프린팅되는 환경의 온도입니다. 이 값이 0인 경우 빌드 볼륨 온도는 조정되지 않습니다." +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "연동 빔 레이어 수" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "프린팅 온도" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "연동 빔 너비" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "프린팅에 사용되는 온도." +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "연동 경계 회피" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "첫번째 레이어의 프린팅 온도" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "연동 깊이" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다." +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "연동 구조 방향" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "초기 프린팅 온도" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "최상위 레이어에 다림질" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "다림질 가속" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "최종 프린팅 온도" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "다림질 압출량" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "다림질 삽입" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "압출 냉각 속도 조절기" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "다림질 저크(Jerk)" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "다림질 라인 간격" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "기본 빌드 플레이트 온도" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "다림질 패턴" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "다림질 속도" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "빌드 플레이트 온도" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "센터 원점" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "내열 빌드 플레이트용으로 사용된 온도 0인 경우 빌드 플레이트가 가열되지 않습니다." +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "서포트 재료임" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "초기 레이어의 빌드 플레이트 온도" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "첫 번째 레이어에서 내열 빌드 플레이트에 사용되는 온도. 0인 경우, 빌드 플레이트가 첫 번째 레이어에서 가열되지 않습니다." +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "이 재료는 일반적으로 프린팅 중에 서포트 재료로 사용됩니다." -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "점착 성항" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "표면에 점착되는 성항입니다." +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "끊긴 면 유지" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "서피스 에너지" +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "층 높이" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "표면의 에너지입니다." +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "레이어 시작 X" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "확장 배율 수축 보상" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "레이어 시작 Y" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "수평 확장 배율 수축 보정" +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "중간 래프트 층의 층 두께." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "냉각됨에 따라 재료의 수축을 보정하기 위해 모델이 이 배율로 XY 방향으로(수평으로) 확장됩니다." +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "상단 래프트 레이어의 레이어 두께." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "수직 확장 배율 수축 보정" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "서포트 구조를 쉽게 분리 할 수 있도록 N 밀리미터마다 서포트선 사이를 연결합니다." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "냉각됨에 따라 재료 수축을 보정하기 위해 모델이 이 배율로 Z 방향으로(수직으로) 확장됩니다." +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "왼쪽" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "결정형 소재" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "리프트 헤드" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "라이트닝" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "흐름 방지 리트랙션 위치" +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "라이트닝 내부채움 오버행 각도" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "라이트닝 내부채움 가지치기 각도" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "흐름 방지 리트랙션 속도" +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "라이트닝 내부채움 정리 각도" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "라이트닝 내부채움 서포트 각도" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "파단 준비 리트랙션 위치" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "브랜치 도달 거리 제한" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "각 브랜치가 서포트하는 지점에서 뻗어 나가는 거리를 제한합니다. 이렇게 하면 서포트가 더 견고해질 수 있지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "파단 준비 리트랙션 속도" +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "제한된" -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "준비 온도 파단" +msgctxt "line_width label" +msgid "Line Width" +msgstr "선의 두께" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "파단 리트랙션 위치" +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "윤곽" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "파단 리트랙션 속도" +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "파단 온도" +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "수평 퍼지 속도" +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "윤곽" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "다른 재료로 전환 후 재료를 압출하는 속도." +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "수평 퍼지 길이" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "기기 깊이" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "필라멘트 끝의 퍼지 속도" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "머신 헤드 및 팬 폴리곤" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "기기 높이" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "필라멘트 끝의 퍼지 길이" +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "기기 유형" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "기기 너비" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "최대 파크 기간" +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "오버행이 프린팅되도록 설정" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "로드 이동 요인 없음" +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." -msgctxt "material_flow label" -msgid "Flow" -msgstr "공급량" +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "벽 압출량" +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "벽 라인의 압출 보상입니다." +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "외벽 압출량" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "가장 외측 벽 라인의 압출 보상입니다." +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "내벽 압출량" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (부피 측정법)" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." +msgctxt "material description" +msgid "Material" +msgstr "재료" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "상단/하단 압출량" +msgctxt "material label" +msgid "Material" +msgstr "재료" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "상단/하단 라인의 압출 보상입니다." +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "재료 GUID" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "상단 표면 스킨 압출량" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "와이프 사이의 재료 볼륨" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "프린트 상단 부분 라인의 압출 보상입니다." +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "수축이 없을 때 최대 빗질 거리" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "내부채움 압출량" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "최대 가속도 X" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "내부채움 라인의 압출 보상입니다." +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Y 방향 최대 가속도" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "스커트/브림 압출량" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 방향 최대 가속도" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "스커트 또는 브림 라인의 압출 보상입니다." +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "최대 브랜치 각도" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "지지대 압출량" +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "최대 편차" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "지지대 구조 라인의 압출 보상입니다." +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "최대 압출 영역 편차" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "지지대 인터페이스 압출량" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "최대 팬 속도" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "최대 필라멘트 가속도" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "지지대 지붕 압출량" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "최대 모델 각도" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "지지대 지붕 라인의 압출 보상입니다." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "최대 오버행 홀 영역" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "지지대 바닥 압출량" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "최대 파크 기간" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "지지대 바닥 라인의 압출 보상입니다." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "최대 해상도" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "프라임 타워 압출량" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "최대 리트렉션 수" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "프라임 타워 라인의 압출 보상입니다." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "확장을 위한 최대 스킨 각" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "첫번째 레이어 압출량" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "최대 속도 E" -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 "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 방향 최대 속도" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "첫 번째 레이어 내벽 압출량" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 방향 최대 속도" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다(단, 첫 번째 레이어에 한정)." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 방향 최대 속도" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "첫 번째 레이어 외벽 압출량" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "최대 타워 지지 직경" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "첫 번째 레이어의 가장 외측 벽 라인의 압출 보상입니다." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "최대 이동 해상도" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "첫 번째 레이어 하단 압출량" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 방향 모터의 최대 가속도" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "첫 번째 레이어 하단 라인의 압출 보상" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 가속도." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "대기 온도" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 방향 모터의 최대 가속도." -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 최대 가속도." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "서포트 재료임" +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 "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "이 재료는 일반적으로 프린팅 중에 서포트 재료로 사용됩니다." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "특수 지지대 타워에 의해서 지지될 작은 영역의 X/Y 방향의 최대 직경입니다." -msgctxt "speed label" -msgid "Speed" -msgstr "속도" +msgctxt "max_extrusion_before_wipe description" +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 "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." -msgctxt "speed description" -msgid "Speed" -msgstr "속도" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "중복된 메쉬 합치기" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "프린팅 속도" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "메쉬 수정" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "프린팅 속도." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "메쉬 위치 X" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "내부채움 속도" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "메쉬 위치 Y" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "내부채움이 프린팅되는 속도." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "메쉬 위치 Z" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "벽 속도" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "메쉬 처리 랭크" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "벽이 프린팅되는 속도입니다." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "메쉬 회전 행렬" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "외벽 속도" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "중간" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "최소 몰드 너비" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "내벽 속도" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "최소 대기 시간" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "최소 브리지 벽 길이" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "상단 표면 스킨 속도" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "최소 짝수 벽 선 너비" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 속도." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "최소 압출 영역" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "상단/하단 속도" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "최소 피처 크기" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "최소 이송 속도" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "서포트 속도" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "모델에 대한 최소 높이" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "최소 내부채움 지역" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "서포트 내부채움 속도" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "최소 레이어 시간" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "최소 홀수 벽 선 너비" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "서포트 인터페이스 속도" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "최소 다각형 둘레" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "확장을 위한 최소 스킨 폭" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "서포트 상단 속도" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "최저 속도" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "최소 서포트 지역" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "서포트 바닥 속도" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "최소 서포트 바닥 지역" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "최소 서포트 인터페이스 지역" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "최소 서포트 지붕 지역" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "프라임 타워 속도" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "최소 서포트 X/Y 거리" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "얇은 벽 선 최소 너비" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "이동 속도" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "코스팅(Coasting) 최소 양" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "움직일때의 이동 속도." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "최소 벽 선 너비" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "초기 레이어 속도" +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 "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "초기 레이어 프린팅 속도" +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 "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." +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 "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "초기 레이어 이동 속도" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "스커트/브림 속도" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "몰드" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "몰드 각도" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 홉 속도" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "몰드 지붕 높이" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 홉을 위해 수직 Z 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "단면 다림질 순서" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "느리게 프린팅할 레이어의 수" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "단면 상단 표면 순서" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "단면 상단/하단 순서" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "흐름 균일화 비율" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 0으로 설정하면 스커트가 비활성화됩니다." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "속도에 대한 압출 너비 기준 보정 계수. 0%에서는 이동 속도가 프린팅 속도로 일정하게 유지됩니다. 100%에서는 흐름(단위: mm³/s)이 일정하게 유지되도록 이동 속도가 조정됩니다. 즉 일반적인 선 너비의 절반인 선은 두 배로 빠르게 프린팅되고 너비가 두 배인 선은 절반 속도로 프린팅됩니다. 100%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "가속 제어 활성화" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "로드 이동 요인 없음" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 간격에 스킨 없음" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "이동 가속 활성화" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "모델을 프린팅하는 새로운 방법들." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "이동할 때 별도의 가속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 가속도 값을 사용합니다." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "None" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "프린팅 가속도" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "없음" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "프린팅 속도가 빨라집니다." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "표준" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "내부채움 가속도" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "표준" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "내부채움물이 프린팅되는 가속도." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "벽 가속도" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "스킨에 없음" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "벽이 프린팅되는 가속도." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "외부 표면에 없음" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "외벽 가속도" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "노즐 각도" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 지름" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "내벽 가속도" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "노즐이 위치할 수 없는 구역" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 가속도입니다." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "상단 표면 스킨 가속도" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "노즐 길이" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 가속도." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "노즐 스위치 엑스트라 프라임 양" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "상단/하단 가속도" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "노즐 스위치 프라임 속도" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "노즐 스위치 후퇴 속도" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "서포트 가속도" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "노즐 스위치 리트렉션 거리" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 가속도." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "노즐 스위치 리트렉션 속도" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "서포트 내부채움 가속도" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "익스트루더의 수" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "서포트의 내부채움이 프린팅되는 가속도." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "활성화된 익스트루더의 수" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "서포트 인터페이스 가속도" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "느리게 프린팅할 레이어의 수" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "서포트 상단 가속도" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "서포트 바닥 가속도" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "프라임 타워 가속" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "옥텟" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 가속도." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "끔" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "이동 가속" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "x 방향으로 객체에 적용된 오프셋입니다." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "헤드가 움직일때의 가속도." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "y 방향으로 객체에 적용된 오프셋입니다." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "초기 레이어 가속" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "초기 레이어의 가속도입니다." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "익스트루더로 오프셋" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "초기 레이어 프린팅 가속" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "가능한 경우 빌드 플레이트에" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "초기 레이어 프린팅 중 가속도." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "필요한 경우 모델에" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "초기 레이어 이동 가속도" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "한번에 하나씩" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "이동 시, 수평 이동으로 피할 수없는 출력물 위로 이동할 때만 Z 홉을 수행하십시오." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 가속도" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Jerk 컨트롤 사용" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze 쉴드 각" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. Jerk를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze 쉴드 거리" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "이동 저크 활성화" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "최적 브랜치 범위" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "이동할 때 별도의 저크 속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 저크 값을 사용합니다." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "벽면 프린팅 순서 명령 최적화" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk 프린팅" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화합니다. 대부분의 부품은 이 기능을 사용하면 도움이 되지만 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "프린트 헤드의 최대 순간 속도 변화." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "외부 노즐의 외경" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk 내부채움" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "외벽 가속도" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "외벽 익스트루더" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "벽 Jerk" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "외벽 압출량" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "벽이 프린팅되는 최대 순간 속도 변화." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "외벽 삽입" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "외벽 Jerk" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "바깥 선 선폭" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "내벽 Jerk" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "외벽 속도" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "외벽 이동 거리" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "스킨 표면 Jerk" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "외부에서 내부로" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "위/아래 Jerk" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "오버행된 벽 각도" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "오버행된 벽 속도" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "서포트 Jerk" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "서포트 내부채움 Jerk" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "서포트가 채워지는 최대 순간 속도 변화." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "서포트 인터페이스 Jerk" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "서포트 위 Jerk" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "레이어가 슬라이스 된, 이 값보다 둘레가 작은 다각형은 필터링됩니다. 값을 낮을수록 슬라이스가 느려지지만, 해상도 메쉬가 높아집니다. 주로 고해상도 SLA 프린터 및 세부 사항이 많은 매우 작은 3D 모델에 적합합니다." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "기본 브랜치 각도" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "하나의 여분 벽과 하나 더 적은 벽 사이를 왔다 갔다 하는 전환을 방지하십시오. 이 여백은 [최소 벽 선 너비 - 여백, 2 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "프라임 타워 가속" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "서포트 바닥 Jerk" +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "프라임 타워 압출량" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "프라임 타워 Jerk" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "이동 Jerk" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "헤드가 이동하는 최대 순간 속도 변화." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "프라임 타워 라인 폭" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "초기 레이어 Jerk" +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "프라임 타워 최소 볼륨" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "초기 레이어 프린팅 Jerk" +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "프라임 타워 사이즈" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "프라임 타워 속도" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "초기 레이어 이동 Jerk" +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "프라임 타워 X 위치" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "프라임 타워 Y 위치" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim Jerk" +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "프린팅 가속도" -msgctxt "travel label" -msgid "Travel" -msgstr "이동" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk 프린팅" -msgctxt "travel description" -msgid "travel" -msgstr "이동" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "프린팅 순서" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "리트렉션 활성화" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "프린팅 속도" -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "얇은 벽 프린팅" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "레이어 변경시 리트렉션" +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "리트렉션 거리" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "리트렉션 속도" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "리트렉션 속도입니다." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "리트렉션 속도" +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "리트렉션 속도입니다." +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "리트렉션 초기 속도" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "추가적인 리트렉션 정도" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "프린팅 온도" -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "첫번째 레이어의 프린팅 온도" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "리트렉션 최소 이동" +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "가장 안쪽의 스커트 라인을 여러 겹으로 프린트하면 스커트를 쉽게 제거할 수 있습니다." -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 "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "최대 리트렉션 수" +msgctxt "resolution label" +msgid "Quality" +msgstr "품질" -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 "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "쿼터 큐빅" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "최소 압출 영역" +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "래프트" -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 "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "래프트 에어 갭" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing 모드" +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "래프트 베이스 익스트루더" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Combing은 이동할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 이동이 약간 더 길어 지지만 리트렉션의 필요성은 줄어듭니다. Combing이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 상단/하단 스킨 영역을 Combing하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "래프트 기본 팬 속도" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "끔" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "래프트 기준 선 간격" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "모두" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "래프트 기준 선 너비" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "외부 표면에 없음" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "래프트 기본 프린팅 가속도" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "스킨에 없음" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "래프트 기본 프린팅 Jerk" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "내부채움 내" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "래프트 기본 프린팅 속도" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "수축이 없을 때 최대 빗질 거리" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "래프트 기준 두께" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "래프트 베이스 벽 개수" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "외벽 전에 리트렉션" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "래프트 추가 여백" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "래프트 팬 속도" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "움직일 때 프린팅한 부분을 피하기" +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "래프트 중간 익스트루더" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "노즐은 이동 할 때 이미 프린팅 된 부분을 피합니다. 이 옵션은 combing이 활성화 된 경우에만 사용할 수 있습니다." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "래프트 중앙 팬 속도" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "이동하는 경우 지지대 피함" +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "래프트 중간 레이어" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "래프트 중간 선 너비" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "이동중 피하는 거리" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "래프트 중앙 프린팅 가속도" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "래프트 중앙 프린팅 Jerk" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "레이어 시작 X" +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "래프트 중앙 프린팅 속도" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "각 레이어의 프린팅를 시작할 부분을 찾을 위치 근처의 X 좌표입니다." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "래프트 중간 간격" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "레이어 시작 Y" +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "래프트 중간 두께" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "각 레이어 프린팅를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "래프트 프린팅 가속도" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "리트렉션했을 때의 Z Hop" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "래프트 프린팅 Jerk" -msgctxt "retraction_hop_enabled 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 "raft_speed label" +msgid "Raft Print Speed" +msgstr "래프트 프린팅 속도" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "프린팅 된 부분에만 Z Hop" +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "래프트 부드럽게하기" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "이동 시, 수평 이동으로 피할 수없는 출력물 위로 이동할 때만 Z 홉을 수행하십시오." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "래프트 상단 익스트루더" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 홉 높이" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "래프트 상단 팬 속도" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행 할 때의 높이 차이." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "래프트 상단 레이어 두께" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "익스트루더 스위치 후 Z 홉" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "래프트 탑 레이어" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "래프트 상단 선 너비" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "익스트루더 스위치 높이 후 Z 홉" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "래프트 상단 프린팅 가속도" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "래프트 상단 프린팅 Jerk" -msgctxt "cooling label" -msgid "Cooling" -msgstr "냉각" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "래프트 상단 프린팅 속도" -msgctxt "cooling description" -msgid "Cooling" -msgstr "냉각" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "래프트 상단 간격" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "프린팅 냉각 사용" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "랜덤" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "무작위 충전 시작" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "팬 속도" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "가장 먼저 프린트되는 충전 선을 무작위로 결정합니다. 이렇게 하면 특정 세그먼트가 가장 강한 세그먼트가 되는 일이 없지만, 추가 이동이 발생하지 않게 됩니다." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "프린팅 냉각 팬이 회전하는 속도입니다." +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 "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "직사각형" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "표준 팬 속도" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "최대 팬 속도" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "표준 팬 속도시의 높이" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "표준 팬 속도시의 레이어" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "표준/최대 팬 속도 임계 값" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "상대적 압출" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "초기 팬 속도" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "모든 구멍 제거" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "비어 있는 첫 번째 레이어 제거" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "표준 팬 속도시의 높이" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "교차된 메쉬 제거" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "래프트 내부 모서리 제거" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "배치 기본 설정" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "표준 팬 속도시의 레이어" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "외벽 전에 리트렉션" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "레이어 변경시 리트렉션" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "최소 레이어 시간" +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "최저 속도" +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "리트렉션 거리" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "리프트 헤드" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "추가적인 리트렉션 정도" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "리트렉션 최소 이동" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "소형 레이어 프린팅 온도" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "리트렉션 초기 속도" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "최소 레이어 시간 때문에 늦춰진 속도로 프린트하는 경우 점차 이 온도로 낮춥니다." +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "리트렉션 속도" -msgctxt "support label" -msgid "Support" -msgstr "서포트" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "리트렉션 속도" -msgctxt "support description" -msgid "Support" -msgstr "서포트" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "오른쪽" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "서포트 생성" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "팬 속도를 0-1로 조정" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "팬 속도를 0 ~ 256이 아니라 0 ~ 1로 조정합니다." -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "서포트 익스트루더" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "확장 배율 수축 보상" -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "장면에 서포트 메쉬가 있습니다" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "서포트 내부채움 익스트루더" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "솔기 코너 환경 설정" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "첫 번째 레이어 서포트 익스트루더" +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "서포트 인터페이스 익스트루더" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "공유된 노즐 초기 수축" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "날카로운 모서리" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "서포트 지붕 익스트루더" +msgctxt "shell description" +msgid "Shell" +msgstr "외곽" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "최단경로" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "서포트 바닥 익스트루더" +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "기기 세부 설정 표시" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "스킨 에지의 레이어 지원" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "서포트 구조" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "스킨 에지의 두께 지원" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "스킨 확장 거리" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "표준" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "스킨 겹침" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "트리" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "스킨 겹침 비율" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "최대 브랜치 각도" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "스킨 제거 폭" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "모델 주위로 브랜치가 자랄 때 브랜치의 최대 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치의 도달 거리를 늘리려면 더 높은 각도를 사용하십시오." +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 "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "브랜치 직경" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "서포트 구조를 쉽게 분리할 수 있도록 모든 N 개의 연결 라인을 건너 뜁니다." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "트렁크 직경" +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "스커트" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "트리 서포트의 가장 굵은 브랜치의 직경. 트렁크가 두꺼울수록 더 견고해집니다. 얇은 트렁크는 빌드 플레이트에서 차지하는 공간이 보다 적습니다." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "스커트 거리" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "브랜치 직경 각도" +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "스커트 높이" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "바닥면을 향할수록 점점 더 두꺼워짐에 따른 브랜치의 직경 각도. 이 각도가 0이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "스커트 선 수" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "서포트 배치" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 가속도" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "빌드 플레이트 위" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "스커트/브림 익스트루더" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "어디에나" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "스커트/브림 압출량" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "기본 브랜치 각도" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Skirt/Brim Jerk" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "스커트/브림 선 너비" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "모델을 피할 필요가 없을 때 브랜치의 기본 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치가 빨리 합쳐지도록 하려면 더 높은 각도를 사용하십시오." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "스커트/브림 최소 길이" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "모델에 대한 직경 증가" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "스커트/브림 속도" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "모델에 연결해야 하는 브랜치의 직경은 빌드 플레이트에 도달할 수 있는 브랜치와 병합하여 최대로 늘릴 수 있습니다. 이를 늘리면 프린트 시간이 단축되지만 모델에 닿는 서포트 영역이 증가합니다." +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "슬라이싱 허용 오차" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "모델에 대한 최소 높이" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "소형 피처 초기 레이어 속도" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "모델에 브랜치를 배치할 때 브랜치의 높이를 설정합니다. 이에 따라 서포트의 작은 얼룩이 방지됩니다. 브랜치가 서포트 지붕을 서포트하는 경우 이 설정은 무시됩니다." +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "소형 피처 최대 길이" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "초기 레이어 직경" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "소형 피처 속도" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "모든 브랜치가 빌드 플레이트에 도달할 때 달성하려고 하는 직경입니다. 이에 따라 베드 접착력이 개선됩니다." +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "소형 구멍 최대 크기" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "브랜치 밀도" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "소형 레이어 프린팅 온도" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "브랜치의 팁을 생성하는 데 사용되는 서포트 구조의 밀도를 조정합니다. 값이 클수록 오버행은 개선되지만 서포트를 제거하기가 어려워집니다. 매우 큰 값을 위해서는 서포트 지붕을 사용하거나 상단의 서포트 밀도가 비슷하게 높은지 확인합니다." +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "표면의 작은 상단/하단" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "팁 직경" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "작은 상단/하단 너비" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "트리 서포트 브랜치 팁의 상단 직경입니다." +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 "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "브랜치 도달 거리 제한" +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 "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "각 브랜치가 서포트하는 지점에서 뻗어 나가는 거리를 제한합니다. 이렇게 하면 서포트가 더 견고해질 수 있지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "작은 상단/하단 영역은 기본 상단/하단 패턴 대신 벽으로 채워집니다. 이렇게 하면 갑작스러운 모션을 방지하는 데 도움이 됩니다. 기본적으로 최상단(공기에 노출된) 레이어는 꺼져 있습니다('표면의 작은 상단/하단' 참조)." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "최적 브랜치 범위" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "스마트 브림" -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "브랜치가 서포트하는 지점에서 뻗어 나가는 거리에 대한 권장 사항입니다. 브랜치는 목적지(빌드 플레이트 또는 모델의 평평한 부분)에 도달하기 위해 이 값을 초과할 수 있습니다. 이 값을 낮추면 서포트가 더 견고해지지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "스마트 숨김" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "배치 기본 설정" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "부드러운 나선형 윤곽" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "서포트 구조물의 기본 배치입니다. 구조물을 원하는 위치에 배치할 수 없는 경우 구조물을 모델 위에 놓더라도 다른 곳에 배치합니다." +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "나선형 윤곽선을 부드럽게 하여 Z 이음선이 잘 보이지 않도록 합니다(Z- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "가능한 경우 빌드 플레이트에" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "필요한 경우 모델에" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "오버행 각도" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "특수 모드" -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "서포트가 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 서포트가 생성되며 90 °는 지원하지 않습니다." +msgctxt "speed description" +msgid "Speed" +msgstr "속도" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "서포트 패턴" +msgctxt "speed label" +msgid "Speed" +msgstr "속도" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "홉 중에 z축을 이동하는 속도입니다." -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "외부 윤곽선을 나선형으로 만듦" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "격자" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "바깥 쪽 브림의 Z 이동을 부드럽게합니다. 이렇게 하면 출력물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "대기 온도" -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "시작 GCode" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "십자" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "밀리미터 당 스텝 수 (E)" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "밀리미터 당 스텝 수 (X)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "지지대 벽 라인 카운트" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "밀리미터 당 스텝 수 (Y)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "밀리미터 당 스텝 수 (Z)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "지지대 인터페이스 벽 라인 수" +msgctxt "support description" +msgid "Support" +msgstr "서포트" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스를 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." +msgctxt "support label" +msgid "Support" +msgstr "서포트" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "지지대 지붕 벽 라인 수" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "서포트 가속도" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스 지붕을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "서포트 바닥 거리" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "지지대 하단 벽 라인 수" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스 바닥을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "서포트 브림 라인 수" -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "서포트 선 연결" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "서포트 브림 폭" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Chunk 라인 카운트 서포트" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "ZigZags 서포트 연결" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "서포트 Chunk 크기" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "서포트 밀도" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "서포트 거리 우선 순위" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "서포트 익스트루더" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "서포트 바닥 가속도" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "서포트 밀도" +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "서포트 바닥 밀도" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "서포트 바닥 익스트루더" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "서포트 선 거리" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "지지대 바닥 압출량" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "서포트 바닥 수평 확장" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "초기 레이어 서포트 선 거리" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "서포트 바닥 Jerk" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "바닥 지붕 선 방향" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "서포트 내부채움 선 방향" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "서포트 바닥 선 거리" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "서포트 바닥 라인 폭" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "서포트 브림 사용" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "서포트 바닥 패턴" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "서포트 바닥 속도" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "서포트 브림 폭" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "서포트 바닥 두께" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "지지대 압출량" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "서포트 브림 라인 수" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "수평 확장 서포트" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "서포트 내부채움 가속도" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "서포트 Z 거리" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "서포트 내부채움 익스트루더" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "서포트 구조의 위/아래에서 프린팅까지의 거리. 이 틈새는 모형 프린팅 후 서포트를 제거하기 위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "서포트 내부채움 Jerk" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "서포트 상단 거리" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "서포트 내부채움 레이어 두께" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "서포트 상단에서 프린팅까지의 거리." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "서포트 내부채움 선 방향" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "서포트 바닥 거리" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "서포트 내부채움 속도" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "출력물에서 서포트의 바닥까지의 거리." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "서포트 인터페이스 가속도" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y 서포트 거리" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "서포트 인터페이스 밀도" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "서포트 인터페이스 익스트루더" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "서포트 거리 우선 순위" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "지지대 인터페이스 압출량" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "서포트 X/Y 거리가 서포트 Z 거리를 무시하는지 여부를 나타냅니다. X/Y가 Z를 오버라이드하면 X/Y 거리는 모델에서 서포트점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X/Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "서포트 인터페이스 수평 확장" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y가 Z를 무시합니다" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "서포트 인터페이스 Jerk" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z가 X/Y를 무시합니다" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "서포트 인터페이스 선 방향" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "최소 서포트 X/Y 거리" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "서포트 인터페이스의 폭" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "서포트 인터페이스 패턴" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "계단 Step Height 서포트" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "서포트 인터페이스 우선순위" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "모델에있는 서포트의 계단 모양 바닥의 계단 높이. 값이 낮으면 서포트를 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "서포트 인터페이스 해상도" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "서포트 계단 스텝 최대 폭" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "서포트 인터페이스 속도" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "서포트 인터페이스 두께" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "서포트 계단 스텝 최소 경사 각도" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "지지대 인터페이스 벽 라인 수" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "서포트 Jerk" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "서포트 Join 거리" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "X/Y 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "수평 확장 서포트" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "서포트 내부채움 레이어 두께" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "서포트 선 거리" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "서포트의 폭" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "점진적 서포트 내부채움 단계" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "서포트 메쉬" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "오버행 각도" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "점진적 서포트 내부채움 단계 높이" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "서포트 패턴" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "서포트 배치" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "최소 서포트 지역" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "서포트 상단 가속도" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "서포트 지붕 밀도" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "서포트 인터페이스 사용" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "서포트 지붕 익스트루더" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "지지대 지붕 압출량" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "서포트 지붕 사용" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "서포트 지붕 수평 확장" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "서포트 위 Jerk" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "서포트 바닥 사용" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "서포트 지붕 선 방향" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "서포트 지붕 선 거리" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "서포트 인터페이스 두께" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "서포트 루프 라인 폭" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "서포트 지붕 패턴" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "서포트 상단 속도" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "서포트 지붕 두께" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "지지대 지붕 벽 라인 수" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "서포트 바닥 두께" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "서포트 속도" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "계단 Step Height 서포트" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "서포트 인터페이스 해상도" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "서포트 계단 스텝 최대 폭" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "서포트 계단 스텝 최소 경사 각도" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "서포트 인터페이스 밀도" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "서포트 구조" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "서포트 상단 거리" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "서포트 지붕 밀도" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "지지대 벽 라인 카운트" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y 서포트 거리" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "서포트 지붕 선 거리" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "서포트 Z 거리" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "서포트 라인 우선" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "서포트 바닥 밀도" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "서포트 우선" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "지원되는 스킨 팬 속도" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "서포트 바닥 선 거리" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "표면" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "서피스 에너지" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "서포트 인터페이스 패턴" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "표면 모드" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "표면에 점착되는 성항입니다." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "표면의 에너지입니다." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "가장 안쪽의 브림 라인과 그다음으로 안쪽에 있는 브림 라인의 프린트 순서를 바꿉니다. 이렇게 하면 브림이 잘 제거됩니다." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +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 "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "각 레이어의 프린팅를 시작할 부분을 찾을 위치 근처의 X 좌표입니다." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "서포트 지붕 패턴" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "서포트의 지붕이 프린팅되는 패턴." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "각 레이어 프린팅를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "초기 레이어 프린팅 중 가속도." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "초기 레이어의 가속도입니다." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 가속도입니다." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "내부채움물이 프린팅되는 가속도." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "다림질이 수행되는 가속도." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "서포트 바닥 패턴" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "프린팅 속도가 빨라집니다." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "서포트의 바닥이 프린팅되는 패턴." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "그리드" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "서포트의 내부채움이 프린팅되는 가속도." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅되는 가속도." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 가속도." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "최소 서포트 인터페이스 지역" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "래프트가 프린팅되는 가속도." -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 "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "최소 서포트 지붕 지역" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." -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 "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "최소 서포트 바닥 지역" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 가속도." -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 "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "서포트 인터페이스 수평 확장" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 가속도" -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "서포트 지붕 수평 확장" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "벽이 프린팅되는 가속도." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "서포트 지붕에 적용되는 오프셋 양." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 가속도." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "서포트 바닥 수평 확장" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "서포트 바닥에 적용되는 오프셋 양." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "헤드가 움직일때의 가속도." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "서포트 인터페이스 우선순위" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "서포트 인터페이스와 서포트가 겹칠 때 상호 작용하는 방식으로, 현재 서포트 지붕에만 구현되어 있습니다." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "서포트 우선" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "인터페이스 우선" +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으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "서포트 라인 우선" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "인터페이스 라인 우선" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "둘 다 겹침" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "몰드에 대해 생성 된 외벽의 오버행 각도입니다. 0도의 각은 금형의 외각을 수직으로 만들고 90도의 각은 모형의 외형을 모델의 외형으로 만듭니다." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "서포트 인터페이스 선 방향" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "바닥면을 향할수록 점점 더 두꺼워짐에 따른 브랜치의 직경 각도. 이 각도가 0이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "원추형 서포트점의 기울기 각도입니다. 0도가 수직이고 90도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "서포트 지붕 선 방향" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "바닥 지붕 선 방향" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "프린트 헤드 이동시 기본 가속도." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "팬 속도 무시" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "지원되는 스킨 팬 속도" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "타워 사용" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "두번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "세번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "타워 지름" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "프린팅 가능 영역의 깊이 (Y 방향)" msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "특수 타워의 지름." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "최대 타워 지지 직경" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "특수 지지대 타워에 의해서 지지될 작은 영역의 X/Y 방향의 최대 직경입니다." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "트리 서포트 브랜치 팁의 상단 직경입니다." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "타워 지붕 각도" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "피더에서 재료를 구동시키는 휠의 지름." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "트리 서포트의 가장 굵은 브랜치의 직경. 트렁크가 두꺼울수록 더 견고해집니다. 얇은 트렁크는 빌드 플레이트에서 차지하는 공간이 보다 적습니다." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "드롭 다운 서포트 메쉬" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "다림질 라인 사이의 거리." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "장면에 서포트 메쉬가 있습니다" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "프라임 블롭 활성화" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "빌드 플레이트 고정 유형" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "연동 구조를 생성하기 위한 모델 간 경계로부터의 거리로, 셀 단위로 측정됩니다. 셀 수가 너무 적으면 접착력이 떨어집니다." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "스커트" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "연동 구조가 생성되지 않는 모델 외부로부터의 거리로, 셀 단위로 측정됩니다." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "브림" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "래프트" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "None" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "빌드 플레이트 고정 익스트루더" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "스커트/브림 익스트루더" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "래프트 베이스 익스트루더" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "래프트 중간 익스트루더" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "래프트의 중간 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "래프트 상단 익스트루더" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." msgctxt "raft_surface_extruder_nr description" msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." msgstr "래프트의 상단 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "스커트 선 수" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 0으로 설정하면 스커트가 비활성화됩니다." +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "스커트 높이" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "가장 안쪽의 스커트 라인을 여러 겹으로 프린트하면 스커트를 쉽게 제거할 수 있습니다." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "스커트 거리" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다.\n이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "스커트/브림 최소 길이" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "기본 래프트 레이어의 팬 속도입니다." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "스커트 또는 브림의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 0으로 설정하면 무시됩니다." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "중간 래프트 레이어의 팬 속도입니다." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "브림 너비" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "래프트의 팬 속도." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "상단 래프트 레이어의 팬 속도입니다." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "브림 선 수" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." -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 "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "브림 거리" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." -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 "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "브림이 서포트를 대체" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "밖에서만 브림 생성" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행 할 때의 높이 차이." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행할 때의 높이 차이." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "모델 바깥 쪽 브림에만 프린팅합니다. 나중에 제거해야하는 브림의 양이 줄어들지만 베드 접착력은 그렇게 많이 줄어들지 않습니다." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "각 층의 높이 (mm)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "내부 브림의 여백 회피" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "다른 부품 내부에 완전히 둘러싸인 부품은 다른 부품의 내부에 닿는 외부 브림을 생성할 수 있습니다. 이렇게 하면 내부 구멍에서 이 거리 내에 있는 모든 브림이 제거됩니다." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "스마트 브림" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "가장 안쪽의 브림 라인과 그다음으로 안쪽에 있는 브림 라인의 프린트 순서를 바꿉니다. 이렇게 하면 브림이 잘 제거됩니다." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "래프트 추가 여백" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "래프트 부드럽게하기" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "모델에있는 서포트의 계단 모양 바닥의 계단 높이. 값이 낮으면 서포트를 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." +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 "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "래프트 에어 갭" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다.\n" +"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "초기 레이어 Z 겹침" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "에어 갭에서 손실 된 필라멘트를 보완하기 위해 Z 방향으로 모델의 첫 번째와 두 번째 레이어가 중첩되도록 합니다. 첫 번째 모델 레이어 위의 모든 모델은이 양만큼 아래로 이동합니다." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "래프트 탑 레이어" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "래프트 상단 레이어 두께" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "상단 래프트 레이어의 레이어 두께." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "래프트가 프린팅 될 때의 Jerk입니다." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "래프트 상단 선 너비" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "래프트 상단 간격" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "래프트 중간 레이어" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "래프트 중간 두께" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "중간 래프트 층의 층 두께." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "래프트 중간 선 너비" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "프린터에 설치된 빌드 플레이트의 재질." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "기본 레이어 높이와 다른 최대 허용 높이." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "래프트 중간 간격" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Ooze 쉴드가 가질 최대 각도. 0도가 수직이고 90도가 수평입니다. 각도가 작으면 Ooze 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "프린팅 가능하게 된 후 오버행의 최대 각도. 0도의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. 90도는 모델을 변경하지 않습니다." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "래프트 기준 두께" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "모델 주위로 브랜치가 자랄 때 브랜치의 최대 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치의 도달 거리를 늘리려면 더 높은 각도를 사용하십시오." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "오버행 프린팅 설정에 의해 제거되기 전 모델의 베이스에 있는 구멍의 최대 영역입니다. 이보다 작은 홀은 유지됩니다. 0mm² 값은 모델 베이스의 모든 홀을 채웁니다." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "래프트 기준 선 너비" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "최대 해상도 설정에 대한 해상도를 낮추면 최대 편차를 사용할 수 있습니다. 최대 편차를 높이면 프린트의 정확도는 감소하지만, G 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "X/Y 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "래프트 기준 선 간격" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "압출 속도를 보상하기 위해 필라멘트를 이동하는 최대 거리(mm)." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "직선에서 중간 점을 제거할 때 허용되는 최대 압출 영역 편차. 중간 점은 긴 직선에서 너비가 바뀌는 점의 역할을 할 수 있습니다. 따라서 중간 점이 제거되면 선의 너비가 균일해지고 그 결과, 약간의 압출 영역을 잃거나 얻게 됩니다. 이 값을 증가시키면 중간의 너비가 바뀌는 점이 더 많이 제거될 수 있으므로, 직선의 평행한 벽들 사이에 약간의 미달(또는 과잉) 압출이 발생할 수 있습니다. 프린트의 정확도는 감소하지만, G 코드도 감소합니다." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "래프트 프린팅 속도" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "래프트가 프린팅되는 속도." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "프린트 헤드의 최대 순간 속도 변화." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "래프트 상단 프린팅 속도" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "다림질을하는 동안 최대 순간 속도 변화." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "래프트 중앙 프린팅 속도" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "래프트 기본 프린팅 속도" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "서포트가 채워지는 최대 순간 속도 변화." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "래프트 프린팅 가속도" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "래프트가 프린팅되는 가속도." +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "래프트 상단 프린팅 가속도" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "래프트 중앙 프린팅 가속도" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅되는 가속도." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "래프트 기본 프린팅 가속도" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "벽이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "래프트 프린팅 Jerk" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "래프트가 프린팅 될 때의 Jerk입니다." +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "래프트 상단 프린팅 Jerk" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "헤드가 이동하는 최대 순간 속도 변화." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 방향의 모터 최대 속도입니다." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "래프트 중앙 프린팅 Jerk" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 속도입니다." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 방향의 모터 최대 속도입니다." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "래프트 기본 프린팅 Jerk" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "필라멘트의 최대 속도." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "래프트 팬 속도" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "래프트의 팬 속도." +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "프린트 헤드의 최소 이동 속도." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "래프트 상단 팬 속도" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "상단 래프트 레이어의 팬 속도입니다." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "래프트 중앙 팬 속도" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "충진물이 추가되는 내부 오버행의 최소 각도. 0°에서는 개체가 충진물로 완전히 채워지지만, 90°에서는 충진물이 공급되지 않습니다." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "중간 래프트 레이어의 팬 속도입니다." +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "서포트가 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 서포트가 생성되며 90 °는 지원하지 않습니다." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "래프트 기본 팬 속도" +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 "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "기본 래프트 레이어의 팬 속도입니다." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "스커트 또는 브림의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 0으로 설정하면 무시됩니다." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "이중 압출" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "중간 선 간격 충전재 폴리라인 벽의 최소 선 너비. 이 설정은 두 개의 벽 선을 프린팅 하는 것에서 두 개의 외벽 및 가운데의 단일 중앙 벽 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 홀수 벽 너비는 2 * 최소 짝수 벽 선 너비로 계산됩니다." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "일반 다각형 벽의 최소 선 너비 이 설정은 단일의 얇은 벽 선 프린팅에서 두 개의 벽 선 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 짝수 벽 선 너비는 외벽 선 너비 + 0.5 * 최소 홀수 벽 선 너비로 계산됩니다." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "프라임 타워 사용" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "슬라이딩 후의 선분의 최소 크기입니다. 이 값을 높이면 메쉬의 해상도가 낮아집니다. 그러면 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "프라임 타워 사이즈" +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "슬라이딩 후의 이동 선분의 최소 크기입니다. 이 값을 높이면 코너에서 매끄럽게 이동하는 정도가 감소합니다. 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "프라임 타워의 너비." +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "프라임 타워 최소 볼륨" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "프라임 타워 X 위치" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 x 좌표입니다." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "프라임 타워 Y 위치" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "모델에 연결해야 하는 브랜치의 직경은 빌드 플레이트에 도달할 수 있는 브랜치와 병합하여 최대로 늘릴 수 있습니다. 이를 늘리면 프린트 시간이 단축되지만 모델에 닿는 서포트 영역이 증가합니다." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 y 좌표입니다." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3D 프린터 모델의 이름." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "프라임 타워에서 비활성 노즐 닦기" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더의 노즐 ID." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "노즐은 이동 할 때 이미 프린팅 된 부분을 피합니다. 이 옵션은 combing이 활성화 된 경우에만 사용할 수 있습니다." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "프라임 타워 브림" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "프라임 타워는 모델이 제공하지 않더라도 브림이 제공하는 추가 접착이 필요할 수 있습니다. 현재 '래프트' 접착 유형을 사용할 수 없습니다." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ooze 쉴드 사용" +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze 쉴드 각" +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 "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Ooze 쉴드가 가질 최대 각도. 0도가 수직이고 90도가 수평입니다. 각도가 작으면 Ooze 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze 쉴드 거리" +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 "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "노즐 스위치 리트렉션 거리" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." -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으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "노즐 스위치 리트렉션 속도" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." -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 "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "노즐 스위치 후퇴 속도" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스 바닥을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스 지붕을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "노즐 스위치 프라임 속도" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스를 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "노즐 스위치 엑스트라 프라임 양" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "노즐 끝의 외경." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "메쉬 수정" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "유니언 오버랩 볼륨" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "최상위 레이어의 패턴." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "상단/하단 레이어의 패턴." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "모든 구멍 제거" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "윗면을 다림질 할 때 사용하는 패턴." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "광범위한 스티칭" +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "서포트의 바닥이 프린팅되는 패턴." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "끊긴 면 유지" +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "서포트의 지붕이 프린팅되는 패턴." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "중복된 메쉬 합치기" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "모델을 피할 필요가 없을 때 브랜치의 기본 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치가 빨리 합쳐지도록 하려면 더 높은 각도를 사용하십시오." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "서포트 구조물의 기본 배치입니다. 구조물을 원하는 위치에 배치할 수 없는 경우 구조물을 모델 위에 놓더라도 다른 곳에 배치합니다." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "교차된 메쉬 제거" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "대체 메쉬 제거" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "패턴이 접촉되는 높이에서 크로스 3D 패턴의 4 방향 교차점에있는 포켓의 크기입니다." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "비어 있는 첫 번째 레이어 제거" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 양. 작은 압출 경로의 경우 보우덴 튜브에 가해지는 압력이 적기 때문에 코스팅(Coasting) 부피가 선형 적으로 조정됩니다. 이 값은 항상 코스팅(Coasting) 양보다 커야합니다." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "노즐이 냉각되는 속도 (°C/s)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "최대 해상도" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "노즐이 가열되는 속도 (°C/s)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "슬라이딩 후의 선분의 최소 크기입니다. 이 값을 높이면 메쉬의 해상도가 낮아집니다. 그러면 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "최대 이동 해상도" +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "브릿지 스킨 층이 프린팅되는 속도." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "슬라이딩 후의 이동 선분의 최소 크기입니다. 이 값을 높이면 코너에서 매끄럽게 이동하는 정도가 감소합니다. 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "내부채움이 프린팅되는 속도." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "최대 편차" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "프린팅 속도." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "최대 해상도 설정에 대한 해상도를 낮추면 최대 편차를 사용할 수 있습니다. 최대 편차를 높이면 프린트의 정확도는 감소하지만, G 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "최대 압출 영역 편차" +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "브릿지 벽이 프린팅되는 속도." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "직선에서 중간 점을 제거할 때 허용되는 최대 압출 영역 편차. 중간 점은 긴 직선에서 너비가 바뀌는 점의 역할을 할 수 있습니다. 따라서 중간 점이 제거되면 선의 너비가 균일해지고 그 결과, 약간의 압출 영역을 잃거나 얻게 됩니다. 이 값을 증가시키면 중간의 너비가 바뀌는 점이 더 많이 제거될 수 있으므로, 직선의 평행한 벽들 사이에 약간의 미달(또는 과잉) 압출이 발생할 수 있습니다. 프린트의 정확도는 감소하지만, G 코드도 감소합니다." +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "플루이드 모션 활성화" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "활성화하면 부드러운 모션 플래너가 있는 프린터의 도구 경로가 수정됩니다. 일반적인 도구 경로 방향에서 벗어나는 작은 움직임이 평활화되어 플루이드 모션이 개선됩니다." +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "플루이드 모션 이동 거리" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "플루이드 모션 가까운 거리" +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "리트렉션 속도입니다." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "플루이드 모션 각도" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "도구 경로 세그먼트가 일반적인 모션에서 이 각도보다 더 많이 벗어나면 평활화됩니다." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "특수 모드" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "리트렉션 속도입니다." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "모델을 프린팅하는 새로운 방법들." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "프린팅 순서" +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 "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." -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 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 "모든 모델을 한 번에 한 레이어씩 프린팅할 것인지, 아니면 한 모델이 완료될 때까지 기다릴 것인지, 다음 단계로 넘어가기 전에 대한 여부 a) 한 번에 하나의 압출기만 활성화하고 b) 모든 모델은 전체 프린트 헤드가 이동할 수 있는 방식으로 분리되며 모든 모델은 노즐과 X/Y 축 사이의 거리보다 낮습니다." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "모두 한꺼번에" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "한번에 하나씩" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "메쉬 내부채움" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "메쉬 처리 랭크" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "프린팅 냉각 팬이 회전하는 속도입니다." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "래프트가 프린팅되는 속도." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "커팅 메쉬" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "몰드" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "최소 몰드 너비" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 속도" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "몰드 지붕 높이" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 홉을 위해 수직 Z 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "몰드 각도" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "벽이 프린팅되는 속도입니다." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "몰드에 대해 생성 된 외벽의 오버행 각도입니다. 0도의 각은 금형의 외각을 수직으로 만들고 90도의 각은 모형의 외형을 모델의 외형으로 만듭니다." +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "상단 표면을 통과하는 속도." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "서포트 메쉬" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 속도." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "안티 오버행 메쉬" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "움직일때의 이동 속도." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "표면 모드" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "코스팅(Coasting)시 이동 속도. 압출 경로의 속도에 상대적입니다. 코스팅(Coasting) 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100% 보다 약간 작은 값을 권합니다." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "표준" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "표면" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "모두" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "외부 윤곽선을 나선형으로 만듦" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "프린팅되는 환경의 온도입니다. 이 값이 0인 경우 빌드 볼륨 온도는 조정되지 않습니다." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "바깥 쪽 브림의 Z 이동을 부드럽게합니다. 이렇게 하면 출력물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "부드러운 나선형 윤곽" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "나선형 윤곽선을 부드럽게 하여 Z 이음선이 잘 보이지 않도록 합니다(Z- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "상대적 압출" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "프린팅에 사용되는 온도." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "첫 번째 레이어에서 내열 빌드 플레이트에 사용되는 온도. 0인 경우, 빌드 플레이트가 첫 번째 레이어에서 가열되지 않습니다." -msgctxt "experimental label" -msgid "Experimental" -msgstr "실험적인" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "내열 빌드 플레이트용으로 사용된 온도 0인 경우 빌드 플레이트가 가열되지 않습니다." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "아직 구체화되지 않은 기능들." +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "슬라이싱 허용 오차" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "중간" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "배타적" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "중복" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "내부채움재 이동 최적화" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "재료 공급 온도 그래프" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "최소 다각형 둘레" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "레이어가 슬라이스 된, 이 값보다 둘레가 작은 다각형은 필터링됩니다. 값을 낮을수록 슬라이스가 느려지지만, 해상도 메쉬가 높아집니다. 주로 고해상도 SLA 프린터 및 세부 사항이 많은 매우 작은 3D 모델에 적합합니다." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "생성 될 gcode의 유형." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "연동 구조 생성" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "모델이 닿는 위치에 연동 빔 구조를 생성합니다. 이렇게 하면 모델, 특히 다른 재료로 프린트된 모델 간의 접착력이 개선됩니다." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "프린팅 가능 영역의 폭 (X 방향)." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "연동 빔 너비" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "연동 구조 빔의 너비입니다." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "연동 구조 방향" - -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "연동 빔 레이어 수" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "프라임 타워의 너비." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "연동 깊이" +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 "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "연동 구조를 생성하기 위한 모델 간 경계로부터의 거리로, 셀 단위로 측정됩니다. 셀 수가 너무 적으면 접착력이 떨어집니다." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 x 좌표입니다." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "연동 경계 회피" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 y 좌표입니다." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "연동 구조가 생성되지 않는 모델 외부로부터의 거리로, 셀 단위로 측정됩니다." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Chunk에서 서포트 중단" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "서포트 Chunk 크기" +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 "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "서포트 구조를 쉽게 분리 할 수 있도록 N 밀리미터마다 서포트선 사이를 연결합니다." +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Chunk 라인 카운트 서포트" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "팁 직경" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "서포트 구조를 쉽게 분리할 수 있도록 모든 N 개의 연결 라인을 건너 뜁니다." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "냉각됨에 따라 재료의 수축을 보정하기 위해 모델이 이 배율로 XY 방향으로(수평으로) 확장됩니다." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "드래프트 쉴드 사용" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "냉각됨에 따라 재료 수축을 보정하기 위해 모델이 이 배율로 Z 방향으로(수직으로) 확장됩니다." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "드래프트 쉴드 X/Y 거리" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "상단 레이어" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "윗면 스킨 확장 거리" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "드래프트 쉴드 제한" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "상단 스킨 제거 폭" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "상면 내벽 가속도" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "가득찬" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "제한된" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "상면 내벽 속도" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "드래프트 쉴드 높이" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "상면 내벽 흐름" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "상면 외벽 가속도" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "오버행이 프린팅되도록 설정" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "상면 가장 바깥 벽의 유량" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "상면 내벽의 최대 순간 속도 변화" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "최대 모델 각도" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "상면 외벽 속도" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "프린팅 가능하게 된 후 오버행의 최대 각도. 0도의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. 90도는 모델을 변경하지 않습니다." +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "상단 표면 스킨 가속도" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "최대 오버행 홀 영역" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "상단 표면 익스트루더" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "오버행 프린팅 설정에 의해 제거되기 전 모델의 베이스에 있는 구멍의 최대 영역입니다. 이보다 작은 홀은 유지됩니다. 0mm² 값은 모델 베이스의 모든 홀을 채웁니다." +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "상단 표면 스킨 압출량" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "코스팅(Coasting) 사용" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "스킨 표면 Jerk" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "코스팅(Coasting)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "상단 표면 스킨 레이어" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "코스팅(Coasting) 양" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "상단 표면 스킨 라인 방향" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "상단 표면 스킨 선 너비" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "코스팅(Coasting) 최소 양" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "탑 표면 스킨 패턴" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 양. 작은 압출 경로의 경우 보우덴 튜브에 가해지는 압력이 적기 때문에 코스팅(Coasting) 부피가 선형 적으로 조정됩니다. 이 값은 항상 코스팅(Coasting) 양보다 커야합니다." +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "상단 표면 스킨 속도" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "코스팅(Coasting) 속도" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "상단 두께" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "코스팅(Coasting)시 이동 속도. 압출 경로의 속도에 상대적입니다. 코스팅(Coasting) 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100% 보다 약간 작은 값을 권합니다." +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며 스킨의 확장을 유발하지 않고, 90도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "크로스 3D 포켓 크기" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "위 / 아래" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "패턴이 접촉되는 높이에서 크로스 3D 패턴의 4 방향 교차점에있는 포켓의 크기입니다." +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "위 / 아래" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "교차 충진 밀도 이미지" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "상단/하단 가속도" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "상단/하단 익스트루더" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "지지대에 대한 교차 충진 밀도 이미지" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "상단/하단 압출량" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "위/아래 Jerk" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "원추형 서포트 사용" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "상단/하단 라인 길 방향" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "상단/하단 라인 폭" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "원추서포트 각" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "상단/하단 패턴" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "원추형 서포트점의 기울기 각도입니다. 0도가 수직이고 90도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "상단/하단 속도" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "원뿔형 서포트 최소 너비" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "상단/하단 두께" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "빌드 플레이트 위" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "퍼지 스킨" +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "타워 지름" -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 "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "타워 지붕 각도" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "부용 퍼지 스킨" +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." +msgctxt "travel label" +msgid "Travel" +msgstr "이동" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "퍼지 스킨 두께" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "이동 가속" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "이동중 피하는 거리" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "퍼지 스킨 밀도" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "이동 Jerk" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "이동 속도" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "퍼지 스킨 포인트 거리" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "트리" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "압출 속도 보상 최대 압출 오프셋" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "삼-육각형" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "압출 속도를 보상하기 위해 필라멘트를 이동하는 최대 거리(mm)." +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "압출 속도 보상 배율" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -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 "압출 속도 변화를 보상하기 위해 필라멘트를 이동하는 거리(1초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "어댑티브 레이어 사용" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "어댑티브 레이어 최대 변화" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "트렁크 직경" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "기본 레이어 높이와 다른 최대 허용 높이." +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "어댑티브 레이어 변화 단계 크기" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "유니언 오버랩 볼륨" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "어댑티브 레이어 지형 크기" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "어댑티브 레이어 사용" -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 "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "타워 사용" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "오버행된 벽 각도" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "이동할 때 별도의 가속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 가속도 값을 사용합니다." -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이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "이동할 때 별도의 저크 속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 저크 값을 사용합니다." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "오버행된 벽 속도" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "브릿지 설정 사용" +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "최소 브리지 벽 길이" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "사용자 지정" -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "브릿지 스킨 서포트 임계값" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "수직 확장 배율 수축 보정" -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 "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "브리지의 희박한 내부채움 최대 밀도" +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" -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 "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "노즐이 가열될 때까지 기다리기" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "브릿지 벽 코스팅(Coasting)" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "벽 가속도" -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "벽 배포 개수" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "브릿지 벽 속도" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "벽 익스트루더" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "브릿지 벽이 프린팅되는 속도." +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "벽 압출량" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "브리지 벽 압출량" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "벽 Jerk" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "벽 라인의 수" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "브릿지 스킨 속도" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "벽 선 너비" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "브릿지 스킨 층이 프린팅되는 속도." +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "벽 순서 지정" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "브리지 스킨 압출량" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "벽 속도" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "벽 두께" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "브릿지 스킨 밀도" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "벽 전환 길이" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "벽 전환 필터 거리" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "브릿지 팬 속도" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "벽 전환 필터 여백" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "벽 전환 임계각" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "여러 개의 레이어가있는 브릿지" +msgctxt "shell label" +msgid "Walls" +msgstr "벽" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." +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이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "브릿지 두번째 스킨 속도" +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "서포트가 모델의 위와 아래에 있는지 확인하려면 주어진 높이의 단계를 수행하십시오. 값이 낮을수록 슬라이스가 느려지고, 값이 높을수록 서포트 인터페이스가 있어야하는 곳에서는 정상적인 서포트다 프린팅 될 수 있습니다." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "활성화하면 부드러운 모션 플래너가 있는 프린터의 도구 경로가 수정됩니다. 일반적인 도구 경로 방향에서 벗어나는 작은 움직임이 평활화되어 플루이드 모션이 개선됩니다." -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "브리지 두 번째 스킨 압출량" +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "브리지 두 번째 스킨 밀도" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "활성화 된 경우 z 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "두번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다." -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "브릿지 두번째 스킨 팬 속도" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "0보다 큰 값으로 설정하면 구멍 수평 확장이 작은 구멍에 점진적으로 적용되고(작은 구멍이 더 확장됨), 0으로 설정하면 구멍 수평 확장이 모든 구멍에 적용됩니다. 구멍 수평 확장 최대 직경보다 큰 구멍은 확장되지 않습니다." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "0보다 크면 홀 수평 확장은 각 레이어의 모든 홀에 적용되는 오프셋의 양입니다. 양수 값은 홀의 크기를 늘리고 음수 값은 홀의 크기를 줄입니다. 이 설정을 활성화하면 홀 수평 확장 최대 직경을 사용하여 추가로 조정할 수 있습니다." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "브릿지 세번째 스킨 속도" +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "브리지 세 번째 스킨 압출량" +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." msgctxt "bridge_skin_material_flow_3 description" msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "브릿지 세번째 스킨 밀도" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "세번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "브릿지 세번째 스킨 팬 속도" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "레이어 사이의 와이프 노즐" - -msgctxt "clean_between_layers description" -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 "노즐 와이퍼 작동 G-코드를 레이어 사이에 포함할지 여부(레이어당 최대 1개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "와이프 사이의 재료 볼륨" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "모델의 몇 가지 레이어에만 수직 간격이 작을 경우 보통 좁은 공간의 본 레이어 주위에도 스킨이 있어야 합니다. 수직 간격이 매우 작을 경우 스킨을 생성하지 않도록 이 설정을 활성화합니다. 이렇게 하면 프린팅 시간과 슬라이싱 시간은 개선되지만 기술적으로 내부채움이 공기 중에 노출된 상태로 남게 됩니다." -msgctxt "max_extrusion_before_wipe description" -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 "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "와이프 리트랙션 활성화" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." +msgctxt "wipe_hop_enable description" +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 "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "와이프 리트랙션 거리" +msgctxt "retraction_hop_enabled 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 "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "서포트 X/Y 거리가 서포트 Z 거리를 무시하는지 여부를 나타냅니다. X/Y가 Z를 오버라이드하면 X/Y 거리는 모델에서 서포트점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X/Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "와이프 리트랙션 추가 초기 양" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "프린터의 0 위치의 X/Y 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X 축의 엔드 스톱이 양의 방향 (높은 X 좌표) 또는 음의 (낮은 X 좌표)인지 여부." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "와이프 리트랙션 속도" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y 축의 엔드 스톱이 양의 방향 (높은 Y 좌표) 또는 음의 (낮은 Y 좌표)인지 여부." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z 축의 엔드 스톱이 양의 방향 (높은 Z 좌표) 또는 음의 (낮은 Z 좌표)인지 여부." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "와이프 리트랙션 리트렉트 속도" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "익스트루더가 자체 노즐을 가지고 있지 않고 단일 노즐을 공유하는지에 대한 여부. True로 설정하면 프린터 시동 gcode 스크립트가 알려진 상호 호환 가능한 초기 수축 상태(0 또는 1개의 필라멘트가 수축되지 않음)에서 모든 익스트루더를 적절하게 설정해야 합니다. 이 경우 초기 수축 상태는 'machine_extruders_shared_nozzle_initial_retraction' 매개 변수에 의해 익스트루더마다 표시됩니다." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "와이프 리트렉션 초기 속도" +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "와이프 일시 정지" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간 (0,0)를 중심으로 할지 여부." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "와이프 Z 홉" +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura는 이 설정을 자동으로 비활성화 합니다." -msgctxt "wipe_hop_enable description" -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 "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura는 이 설정을 자동으로 비활성화 합니다." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "화이프 Z 홉 높이" +msgctxt "clean_between_layers description" +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 "노즐 와이퍼 작동 G-코드를 레이어 사이에 포함할지 여부(레이어당 최대 1개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행할 때의 높이 차이." +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "와이프 홉 속도" +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "홉 중에 z축을 이동하는 속도입니다." +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 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 "모든 모델을 한 번에 한 레이어씩 프린팅할 것인지, 아니면 한 모델이 완료될 때까지 기다릴 것인지, 다음 단계로 넘어가기 전에 대한 여부 a) 한 번에 하나의 압출기만 활성화하고 b) 모든 모델은 전체 프린트 헤드가 이동할 수 있는 방식으로 분리되며 모든 모델은 노즐과 X/Y 축 사이의 거리보다 낮습니다." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "와이프 브러시 X 위치" +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "와이프 스크립트가 시작되는 X 위치입니다." +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)를 사용할 지 여부." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "와이프 반복 횟수" +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "단일 내부채움 라인의 너비." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "와이프 이동 거리" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "서포트의 지붕, 바닥의 폭." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "프린팅 상단 부분의 한 줄 너비." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "소형 구멍 최대 크기" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "단일 주요 타워 라인의 폭." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "소형 피처 최대 길이" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "단일 스커트 또는 브림의 너비." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "단일 서포트 플로어 라인의 폭." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "소형 피처 속도" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "단일 서포트 지붕 라인 폭." -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 "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "단일 서포트 구조 선의 폭입니다." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "소형 피처 초기 레이어 속도" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." -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 "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "벽 방향 대체" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "단일 벽 선의 너비입니다." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "래프트 내부 모서리 제거" +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "래프트 베이스 벽 개수" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "커맨드 라인 설정" +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "와이프 브러시 X 위치" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "와이프 홉 속도" -msgctxt "center_object label" -msgid "Center Object" -msgstr "가운데 객체" +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "프라임 타워에서 비활성 노즐 닦기" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "와이프 이동 거리" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간 (0,0)를 중심으로 할지 여부." +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "레이어 사이의 와이프 노즐" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "메쉬 위치 X" +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "와이프 일시 정지" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "x 방향으로 객체에 적용된 오프셋입니다." +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "와이프 반복 횟수" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "메쉬 위치 Y" +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "와이프 리트랙션 거리" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "y 방향으로 객체에 적용된 오프셋입니다." +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "와이프 리트랙션 활성화" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "메쉬 위치 Z" +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "와이프 리트랙션 추가 초기 양" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다." +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "와이프 리트렉션 초기 속도" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "메쉬 회전 행렬" +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "와이프 리트랙션 리트렉트 속도" -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "와이프 리트랙션 속도" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "점진적 흐름 활성화" +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "와이프 Z 홉" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "화이프 Z 홉 높이" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "점진적 흐름 최대 가속도" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "내부채움 내" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "점진적 흐름 변경에 대한 최대 가속도" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "임시 명령을 비활성 도구로 전송한 후 활성 도구를 작성하십시오. Smoothie 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "초기 레이어 최대 흐름 가속도" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "양의 방향 X 엔드 스톱" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "와이프 스크립트가 시작되는 X 위치입니다." -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "점진적 흐름 이산화 단계 크기" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y가 Z를 무시합니다" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "점진적 흐름 변화의 각 단계 지속 시간" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "양의 방향 Y 엔드 스톱" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "흐름 지속 시간 재설정" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "양의 방향 Z 엔드 스톱" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "익스트루더 스위치 후 Z 홉" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 포지션" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "익스트루더 스위치 높이 후 Z 홉" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "부착" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 홉 높이" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "프린팅 된 부분에만 Z Hop" -msgctxt "material description" -msgid "Material" -msgstr "재료" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 홉 속도" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 지름" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "리트렉션했을 때의 Z Hop" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더의 노즐 ID." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 솔기 정렬" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 경계 위치" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "상대적 Z 솔기" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 솔기 X" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 솔기 Y" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z가 X/Y를 무시합니다" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "material label" -msgid "Material" -msgstr "재료" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 부착" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "외벽 그룹화" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "지그재그" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "상면 가장 바깥 벽의 유량" +msgctxt "travel description" +msgid "travel" +msgstr "이동" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "출력물에서 서포트의 바닥까지의 거리." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "상면 내벽 흐름" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "서포트 구조의 위/아래에서 프린팅까지의 거리. 이 틈새는 모형 프린팅 후 서포트를 제거하기 위한 공간을 제공합니다. 이 값은 레이어 높이의 배수로 반올림됩니다." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "점진적 흐름 변화의 각 단계 지속 시간" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "상면 외벽 속도" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소됩니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "상면 내벽 속도" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "점진적 흐름 이산화 단계 크기" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 속도" +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "점진적 흐름 활성화" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "상면 외벽 가속도" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "점진적 흐름 최대 가속도" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "초기 레이어 최대 흐름 가속도" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "상면 내벽 가속도" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "점진적 흐름 변경에 대한 최대 가속도" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 가속도" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "첫 번째 레이어의 점진적인 흐름 변화를 위한 최소 속도" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "상면 내벽의 최대 순간 속도 변화" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "프라임 타워 브림" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "프라임 타워는 모델이 제공하지 않더라도 브림이 제공하는 추가 접착이 필요할 수 있습니다. 현재 '래프트' 접착 유형을 사용할 수 없습니다." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "흐름 지속 시간 재설정" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "첫 번째 레이어에 프린팅에 사용되는 온도입니다. 초기 레이어의 특수 처리를 사용하지 않으려면 0으로 설정합니다." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index bf5337902be..90b544fff72 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -137,8 +138,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats\n- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze\n- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats\n" +"- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze\n" +"- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" msgctxt "@heading" msgid "-- incomplete --" @@ -164,6 +171,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-bestand" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lezer" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-schrijver" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF-schrijverplug-in is beschadigd." @@ -184,29 +199,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Alleen door de gebruiker gewijzigde instellingen worden opgeslagen in het aangepast profiel.
    Voor materialen die dit ondersteunen, neemt het nieuwe aangepaste profiel eigenschappen over van %1 ." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-renderer: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-leverancier: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-versie: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

    \n

    Druk op de knop "Rapport verzenden" om het foutenrapport automatisch naar onze servers te verzenden

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen

    \n" +"

    Druk op de knop "Rapport verzenden" om het foutenrapport automatisch naar onze servers te verzenden

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

    \n

    Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

    \n

    Back-ups bevinden zich in de configuratiemap.

    \n

    Stuur ons dit crashrapport om het probleem op te lossen.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

    \n" +"

    Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.

    \n" +"

    Back-ups bevinden zich in de configuratiemap.

    \n" +"

    Stuur ons dit crashrapport om het probleem op te lossen.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

    \n

    {model_names}

    \n

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    \n

    Handleiding printkwaliteit bekijken

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:

    \n" +"

    {model_names}

    \n" +"

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    \n" +"

    Handleiding printkwaliteit bekijken

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -226,6 +269,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF-bestand" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-lezer" + msgctxt "@label" msgid "Abort" msgstr "Afbreken" @@ -262,6 +309,10 @@ msgctxt "@button" msgid "Accept" msgstr "Ja, ik ga akkoord" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." + msgctxt "@label" msgid "Account synced" msgstr "Account gesynchroniseerd" @@ -354,6 +405,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Printer handmatig toevoegen" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Printer {name} ({model}) toevoegen vanaf uw account" @@ -390,10 +442,23 @@ msgctxt "@button" msgid "Agree" msgstr "Akkoord" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Alle Bestanden (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Alle Ondersteunde Typen ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Verzenden van anonieme gegevens toestaan" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Altijd vragen" @@ -466,6 +531,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Weet u zeker dat u {printer_name} tijdelijk wilt verwijderen?" @@ -474,6 +540,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Weet u zeker dat u een nieuw project wilt starten? Hiermee wordt het platform leeggemaakt en worden eventuele niet-opgeslagen instellingen verwijderd." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" @@ -486,6 +557,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Rangschik alle modellen in een raster" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Stel een vraag" @@ -534,6 +609,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Back-up maken en herstellen van configuratie" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Een back-up maken van uw configuratie en deze herstellen." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Maak een back-up van uw materiaalinstellingen en plug-ins en synchroniseer deze" @@ -546,6 +625,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Back-ups" +msgctxt "@label" +msgid "Balanced" +msgstr "Gebalanceerd" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Basis (mm)" @@ -622,10 +705,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Kunt u geen verbinding maken met uw UltiMaker-printer?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Kan het profiel niet importeren uit {0} voordat een printer toegevoegd is." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Kan geen ander bestand openen als G-code wordt geladen. Het importeren van {0} is overgeslagen" @@ -634,6 +719,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Kan niet naar UFP-bestand schrijven:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Annuleren" + msgctxt "@button" msgid "Cancel" msgstr "Annuleren" @@ -694,8 +783,21 @@ msgctxt "@label" msgid "Checking..." msgstr "Aan het controleren..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controleert op firmware-updates." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." msgctxt "@action:inmenu menubar:edit" @@ -774,6 +876,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Gecomprimeerd G-code-bestand" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lezer voor gecomprimeerde G-code" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Schrijver voor gecomprimeerde G-code" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Configuratiewijzigingen" @@ -810,6 +920,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Diameterwijziging bevestigen" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Verwijderen Bevestigen" + msgctxt "@action:button" msgid "Connect" msgstr "Verbinden" @@ -842,6 +956,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Verbonden via Cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulteer de UltiMaker Community." @@ -882,6 +1000,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Kan geen bestandsnaam vinden tijdens het schrijven naar {device}." @@ -894,6 +1013,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Antwoord van de server is niet duidelijk." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Kan Marketplace niet bereiken." @@ -906,6 +1029,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Kan materiaalarchief niet opslaan op {}:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Kan niet opslaan als {0}: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" @@ -914,17 +1043,28 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Kan de gegevens niet uploaden naar de printer." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Geen toestemming om proces uit te voeren." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Het wordt door het besturingssysteem geblokkeerd (antivirus?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}\nResource is tijdelijk niet beschikbaar" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"EnginePlugin kon niet gestart worden: {self._plugin_id}\n" +"Resource is tijdelijk niet beschikbaar" msgctxt "@title:window" msgid "Crash Report" @@ -966,6 +1106,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Maak printprojecten aan in Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Uw back-up maken..." @@ -978,10 +1122,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura-back-ups" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-back-ups" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-profiel" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-profiellezer" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profielschrijver" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-project 3MF-bestand" @@ -994,13 +1150,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kan niet worden gestart" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura is ontwikkeld door UltiMaker in samenwerking met de community.\nCura maakt met trots gebruik van de volgende opensourceprojecten:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura is ontwikkeld door UltiMaker in samenwerking met de community.\n" +"Cura maakt met trots gebruik van de volgende opensourceprojecten:" msgctxt "@label" msgid "Cura language" @@ -1010,6 +1171,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-versie" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-back-end" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1090,10 +1263,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Standaardgedrag voor gewijzigde instellingen wanneer er naar een ander profiel wordt overgeschakeld: " @@ -1266,10 +1435,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Uitwerpen" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Verwisselbaar station {0} uitwerpen" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} is uitgeworpen. U kunt het station nu veilig verwijderen." @@ -1294,6 +1465,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Ingeschakeld" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." + msgctxt "@title:label" msgid "End G-code" msgstr "Eind G-code" @@ -1322,6 +1497,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Voer het IP-adres van uw printer in." +msgctxt "@info:title" +msgid "Error" +msgstr "Fout" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Traceback van fout" @@ -1366,6 +1545,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "De export is voltooid" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Het profiel is geëxporteerd als {0}" @@ -1374,6 +1554,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Breid UltiMaker Cura uit met plug-ins en materiaalprofielen." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" + msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -1410,6 +1594,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Kan geen materiaalarchief maken voor synchronisatie met printers." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Uitwerpen van {0} is niet gelukt. Mogelijk wordt het station door een ander programma gebruikt." @@ -1418,22 +1603,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Exporteren van materiaal naar %1 is mislukt: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Kan het profiel niet exporteren als {0}: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Kan het profiel niet exporteren als {0}: Plug-in voor de schrijver heeft een fout gerapporteerd." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Kan het profiel niet importeren uit {0}: {1}" @@ -1466,6 +1656,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Gewicht filament" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Het Bestand Bestaat Al" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Bestand opgeslagen" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Het bestand {0} bevat geen geldig profiel." @@ -1498,6 +1697,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Firmware-update" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-updatecontrole" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-updater" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Kan de firmware niet bijwerken omdat de verbinding met de printer geen ondersteuning biedt voor het uitvoeren van een firmware-upgrade." @@ -1594,6 +1801,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code-bestand" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code-profiellezer" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code-lezer" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code-schrijver" + msgctxt "@label" msgid "G-code flavor" msgstr "Versie G-code" @@ -1626,6 +1845,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Rijbrughoogte" +msgctxt "@title:tab" +msgid "General" +msgstr "Algemeen" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." @@ -1658,6 +1881,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Rasterplaatsing" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groepsnummer #{group_nr}" @@ -1730,6 +1954,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Raadpleeg de handleiding voor probleemoplossing bij printen via het netwerk als uw printer niet in de lijst wordt vermeld" +msgctxt "name" +msgid "Image Reader" +msgstr "Afbeeldinglezer" + msgctxt "@action:button" msgid "Import" msgstr "Importeren" @@ -1978,6 +2206,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Meer informatie" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Meer informatie" + msgctxt "@button" msgid "Learn more" msgstr "Meer informatie" @@ -2006,6 +2238,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Linkeraanzicht" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lezer voor Profielen van oudere Cura-versies" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Laat ontwikkelaars weten dat er iets misgaat." @@ -2086,6 +2322,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Logboeken" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbinding met de printer is verbroken" @@ -2094,6 +2334,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Machine-instellingen" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Actie machine-instellingen" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Machines" @@ -2106,6 +2350,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfiguratie voordat u het bestand verzendt. Mogelijk is de weergave van de G-code niet nauwkeurig." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Materialen Beheren..." @@ -2154,6 +2414,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Beheer hier uw UltiMaker Cura-plug-ins en materiaalprofielen. Zorg ervoor dat uw plug-ins up-to-date blijven en maak regelmatig een back-up van uw instellingen." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Hiermee beheert u netwerkverbindingen naar UltiMaker-netwerkprinters." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabrikant" @@ -2166,6 +2434,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marktplaats" +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplaats" + msgctxt "@action:label" msgid "Material" msgstr "Materiaal" @@ -2182,6 +2454,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Materiaalkleur" +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiaalprofielen" + msgctxt "@label" msgid "Material Type" msgstr "Type Materiaal" @@ -2226,6 +2502,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modus" +msgctxt "name" +msgid "Model Checker" +msgstr "Modelcontrole" + msgctxt "@info:title" msgid "Model Errors" msgstr "Modelfouten" @@ -2242,6 +2522,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controleren" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Controlestadium" + msgctxt "@action:button" msgid "Monitor print" msgstr "Printen in de gaten houden" @@ -2316,6 +2600,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Netwerkfout" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nieuwe stabiele firmware voor %s beschikbaar" @@ -2328,6 +2613,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Nieuwe UltiMaker printers kunnen toegevoegd worden aan Digital Factory om van afstand beheerd te worden" +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Er zijn mogelijk nieuwe functies of foutoplossingen beschikbaar voor uw {machine_name}. Als u dit nog niet hebt gedaan, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." @@ -2374,6 +2660,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Geen kostenraming beschikbaar" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Er is geen aangepast profiel om in het bestand {0} te importeren" @@ -2482,8 +2769,12 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Aantal extruders" -msgctxt "@label" -msgid "OS language" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + +msgctxt "@label" +msgid "OS language" msgstr "Taal van besturingssysteem" msgctxt "@label" @@ -2502,6 +2793,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Alleen bovenlagen weergegeven" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen" @@ -2635,7 +2927,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Plakken uit klembord" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Pauzeren" @@ -2660,6 +2951,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Instellingen per Model" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Gereedschap voor Instellingen per Model" + msgid "Perspective" msgstr "Perspectief" @@ -2696,8 +2991,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepassing." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Controleer of de printer verbonden is:\n- Controleer of de printer ingeschakeld is.\n- Controleer of de printer verbonden is met het netwerk.\n- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Controleer of de printer verbonden is:\n" +"- Controleer of de printer ingeschakeld is.\n" +"- Controleer of de printer verbonden is met het netwerk.\n" +"- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +3014,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Geef een naam op voor dit profiel." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Lees de plug-in-licentie en stem hiermee in." @@ -2720,8 +3027,16 @@ msgid "Please remove the print" msgstr "Verwijder de print" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Controleer de instellingen en zorg ervoor dat uw modellen:\n- binnen het werkvolume passen\n- zijn toegewezen aan een ingeschakelde extruder\n- niet allemaal zijn ingesteld als modificatierasters" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Controleer de instellingen en zorg ervoor dat uw modellen:\n" +"- binnen het werkvolume passen\n" +"- zijn toegewezen aan een ingeschakelde extruder\n" +"- niet allemaal zijn ingesteld als modificatierasters" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2771,6 +3086,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nabewerking" +msgctxt "name" +msgid "Post Processing" +msgstr "Nabewerking" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in voor Nabewerking" @@ -2787,6 +3106,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Voorbereiden" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Stadium voorbereiden" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Voorbereiden..." @@ -2807,6 +3130,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Voorbeeld" +msgctxt "name" +msgid "Preview Stage" +msgstr "Voorbeeldstadium" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Primepijler" @@ -2935,6 +3262,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Printerinstellingen worden bijgewerkt zodat deze overeenkomen met de instellingen die zijn opgeslagen met het project." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Printers" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Printers toegevoegd vanuit Digital Factory:" @@ -2995,6 +3326,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profielinstellingen" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Het profiel {0} heeft een onbekend bestandstype of is beschadigd." @@ -3019,18 +3351,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmeertaal" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projectbestand {0} bevat een onbekend type machine {1}. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projectbestand {0} is corrupt: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Projectbestand {0} wordt gemaakt met behulp van profielen die onbekend zijn bij deze versie van UltiMaker Cura." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Projectbestand {0} is plotseling ontoegankelijk: {1}." @@ -3039,6 +3375,106 @@ msgctxt "@label" msgid "Properties" msgstr "Eigenschappen" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Biedt machineacties voor het bijwerken van de firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Deze optie biedt een controlestadium in Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Biedt een normale, solide rasterweergave." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Deze optie biedt een voorbereidingsstadium in Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Deze optie biedt een voorbeeldstadium in Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Biedt ondersteuning voor het lezen van modelbestanden." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Biedt de Instellingen per Model." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Biedt de röntgenweergave." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Biedt voorbeeld van geslicete laaggegevens." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt version" @@ -3059,6 +3495,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt version" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Kwaliteitstype '{0}' is niet compatibel met de huidige actieve machinedefinitie '{1}'." @@ -3075,6 +3512,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Sluit %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." + msgctxt "@button" msgid "Recommended" msgstr "Aanbevolen" @@ -3127,6 +3568,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Verwisselbaar Station" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" + msgctxt "@action:button" msgid "Remove" msgstr "Verwijderen" @@ -3143,6 +3588,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Hernoemen" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Profiel Hernoemen" @@ -3279,14 +3728,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Opslaan op verwisselbaar station" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Opslaan" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" @@ -3379,6 +3835,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "De materialen worden naar de printer verzonden" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentrylogger" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seriële-communicatiebibliotheek" @@ -3411,6 +3871,10 @@ msgctxt "@label" msgid "Settings" msgstr "Instellingen" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Instellingen" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van extruders:" @@ -3571,6 +4035,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Meld u aan op het UltiMaker-platform" +msgctxt "name" +msgid "Simulation View" +msgstr "Simulatieweergave" + msgctxt "@tooltip" msgid "Skin" msgstr "Huid" @@ -3599,6 +4067,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Automatisch slicen bij wijzigen van instellingen." +msgctxt "name" +msgid "Slice info" +msgstr "Slice-informatie" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicen mislukt" @@ -3615,13 +4087,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Effenen" +msgctxt "name" +msgid "Solid View" +msgstr "Solide weergave" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide weergave" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.\n\nKlik om deze instellingen zichtbaar te maken." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.\n" +"\n" +"Klik om deze instellingen zichtbaar te maken." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3636,8 +4118,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Sommige instelwaarden gedefinieerd in %1 zijn overschreven." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen.\n\nKlik om het profielbeheer te openen." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen.\n" +"\n" +"Klik om het profielbeheer te openen." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +4151,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Sponsor Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Sponsor Cura" @@ -3709,6 +4195,10 @@ msgctxt "@label" msgid "Strength" msgstr "Kracht" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiaal is geëxporteerd naar %1" @@ -3717,6 +4207,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiaal %1 is geïmporteerd" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." @@ -3737,6 +4228,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Supportblokkering" +msgctxt "name" +msgid "Support Eraser" +msgstr "Supportwisser" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Supportvulling" @@ -3843,6 +4338,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "De back-up is groter dan de maximale bestandsgrootte." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Het gebalanceerde profiel is ontworpen om een balans te vinden tussen productiviteit, oppervlaktekwaliteit, mechanische eigenschappen en dimensionale nauwkeurigheid." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "De basishoogte van het platform in millimeters." @@ -3899,6 +4398,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "De firmware die bij nieuwe printers wordt geleverd, werkt wel, maar nieuwe versies hebben vaak meer functies en verbeteringen." @@ -3958,8 +4462,22 @@ msgid "The nozzle inserted in this extruder." msgstr "De nozzle die in deze extruder geplaatst is." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Het patroon van het invulmateriaal van de print:\n\nVoor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling.\n\nVoor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan.\n\nGebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"Het patroon van het invulmateriaal van de print:\n" +"\n" +"Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling.\n" +"\n" +"Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan.\n" +"\n" +"Gebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4111,6 +4629,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Deze printer is de host voor een groep van %1 printers." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dit profiel {0} bevat incorrecte gegevens. Kan het profiel niet importeren." @@ -4124,8 +4643,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Dit project bevat materialen of plugins die momenteel niet geïnstalleerd zijn in Cura.
    Installeer de ontbrekende pakketten en open het project opnieuw." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Deze instelling heeft een andere waarde dan in het profiel.\n\nKlik om de waarde van het profiel te herstellen." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Deze instelling heeft een andere waarde dan in het profiel.\n" +"\n" +"Klik om de waarde van het profiel te herstellen." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4142,8 +4667,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n\nKlik om de berekende waarde te herstellen." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde.\n" +"\n" +"Klik om de berekende waarde te herstellen." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4169,6 +4700,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Om de materiaalprofielen automatisch te synchroniseren met alle printers die op Digital Factory zijn aangesloten, moet u zich aanmelden bij Cura." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Ga naar {website_link} om een verbinding tot stand te brengen" @@ -4181,6 +4713,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Bezoek {digital_factory_link} om {printer_name} permanent te verwijderen" @@ -4229,6 +4762,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Geprobeerd een Cura-back-up te herstellen zonder correcte gegevens of metadata." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh-lezer" + msgctxt "@button" msgid "Troubleshooting" msgstr "Probleemoplossing" @@ -4245,10 +4782,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Type" +msgctxt "@label" +msgid "Type" +msgstr "Type" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-lezer" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-schrijver" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-printen" +msgctxt "name" +msgid "USB printing" +msgstr "USB-printen" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker-account" @@ -4265,6 +4818,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-netwerkverbinding" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Geverifieerd UltiMaker-pakket" @@ -4273,6 +4830,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Geverifieerde UltiMaker-plug-in" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acties UltiMaker-machines" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker printer" @@ -4285,6 +4846,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Kan het profiel niet toevoegen." @@ -4293,12 +4858,16 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Kan binnen het werkvolume niet voor alle objecten een locatie vinden" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Kan lokaal EnginePlugin-serveruitvoerbestand niet vinden voor: {self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." msgstr "Kan lopende EnginePlugin niet stoppen: {self._plugin_id}}Toegang is geweigerd." msgctxt "@info" @@ -4321,10 +4890,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Slicen is niet mogelijk omdat de terugduwpijler of terugduwpositie(s) ongeldig zijn." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Slicing is niet mogelijk vanwege enkele instellingen per model. De volgende instellingen bevatten fouten voor een of meer modellen: {error_labels}" @@ -4333,6 +4904,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Met het huidige materiaal is slicen niet mogelijk, omdat het materiaal niet compatibel is met de geselecteerde machine of configuratie." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Met de huidige instellingen is slicing niet mogelijk. De volgende instellingen bevatten fouten: {0}" @@ -4381,6 +4953,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Onbekend pakket" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Onbekende foutcode bij uploaden printtaak: {0}" @@ -4445,13 +5018,117 @@ msgctxt "@button" msgid "Updating..." msgstr "Updaten..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Aangepaste Firmware Uploaden" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Printtaak naar printer aan het uploaden." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Aangepaste Firmware Uploaden" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Printtaak naar printer aan het uploaden." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4477,6 +5154,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Gebruiksbibliotheek, waaronder Voronoi-generatie" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Versie-upgrade van 2.1 naar 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Versie-upgrade van 2.2 naar 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Versie-upgrade van 2.5 naar 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Versie-upgrade van 2.6 naar 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Versie-upgrade van 2.7 naar 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Versie-upgrade van 3.0 naar 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Versie-upgrade van 3.2 naar 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Versie-upgrade van 3.3 naar 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Versie-upgrade van 3.4 naar 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Versie-upgrade van 3.5 naar 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Versie-upgrade van 4.0 naar 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Versie-upgrade van 4.1 naar 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Versie-upgrade van 4.11 naar 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Versie-upgrade 4.13 naar 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Versie-upgrade van 4.2 naar 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Versie-upgrade van 4.3 naar 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Versie-upgrade van 4.4 naar 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Versie-upgrade van 4.5 naar 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Versie-upgrade van 4.6.2 naar 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Versie-upgrade van 4.7 naar 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Versie-upgrade van 4.8 naar 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Versie-upgrade 4.9 naar 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Versie-upgrade van 5.2 naar 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versie-upgrade 5.3 naar 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versie-upgrade 5.4 naar 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Printers weergeven in Digital Factory" @@ -4525,6 +5306,11 @@ msgctxt "@button" msgid "Want more?" msgstr "Wilt u meer?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Waarschuwing" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Waarschuwing: het profiel is niet zichtbaar omdat het kwaliteitstype '{0}' van het profiel niet beschikbaar is voor de huidige configuratie. Schakel naar een materiaal-nozzle-combinatie waarvoor dit kwaliteitstype geschikt is." @@ -4585,6 +5371,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Breedte (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Met deze optie schrijft u G-code naar een bestand." + msgctxt "@label" msgid "X (Width)" msgstr "X (Breedte)" @@ -4597,6 +5391,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgenweergave" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgenweergave" @@ -4609,6 +5407,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D-bestand" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-lezer" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Diepte)" @@ -4626,19 +5428,33 @@ msgid "Yes" msgstr "Ja" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" +"Weet u zeker dat u door wilt gaan?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "U staat op het punt om {0} printer uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" -msgstr[1] "U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"U staat op het punt om {0} printer uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" +"Weet u zeker dat u door wilt gaan?" +msgstr[1] "" +"U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" +"Weet u zeker dat u door wilt gaan?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "U probeert verbinding te maken met een printer waarop UltiMaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "U probeert verbinding te maken met {0}, maar deze is niet de host van een groep. U kunt de webpagina bezoeken om deze als groephost te configureren." @@ -4649,7 +5465,10 @@ msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om ee msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "U hebt enkele profielinstellingen aangepast.\nWilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?\nU kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." +msgstr "" +"U hebt enkele profielinstellingen aangepast.\n" +"Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?\n" +"U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4679,9 +5498,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Uw nieuwe printer wordt automatisch weergegeven in Cura" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "U kunt uw printer {printer_name} via de cloud verbinden.\n Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"U kunt uw printer {printer_name} via de cloud verbinden.\n" +" Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" msgctxt "@label" msgid "Z" @@ -4739,6 +5563,7 @@ msgctxt "@label" msgid "version: %1" msgstr "versie: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wordt verwijderd tot de volgende accountsynchronisatie." @@ -4747,630 +5572,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} plug-ins zijn niet gedownload" -msgid "Provides support for exporting Cura profiles." -msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profielschrijver" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." - -msgctxt "name" -msgid "Slice info" -msgstr "Slice-informatie" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Default" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lezer voor Profielen van oudere Cura-versies" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lezer" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-schrijver" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Versie-upgrade van 3.5 naar 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Versie-upgrade van 4.1 naar 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Versie-upgrade van 4.7 naar 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Versie-upgrade 4.9 naar 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Versie-upgrade van 3.2 naar 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Versie-upgrade van 2.7 naar 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Versie-upgrade van 4.11 naar 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Versie-upgrade van 2.6 naar 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Versie-upgrade van 4.8 naar 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Versie-upgrade van 4.3 naar 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Versie-upgrade van 3.3 naar 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Versie-upgrade van 4.4 naar 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Versie-upgrade van 2.5 naar 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Versie-upgrade van 2.1 naar 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Versie-upgrade van 4.2 naar 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Versie-upgrade van 5.2 naar 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Versie-upgrade van 4.0 naar 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Versie-upgrade van 2.2 naar 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Versie-upgrade van 3.4 naar 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Versie-upgrade 4.13 naar 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versie-upgrade 5.4 naar 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Versie-upgrade van 4.5 naar 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Versie-upgrade van 3.0 naar 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Versie-upgrade van 4.6.2 naar 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versie-upgrade 5.3 naar 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" - -msgctxt "name" -msgid "Post Processing" -msgstr "Nabewerking" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Biedt voorbeeld van geslicete laaggegevens." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simulatieweergave" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiellezer" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Biedt de Instellingen per Model." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Gereedschap voor Instellingen per Model" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Deze optie biedt een voorbeeldstadium in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Voorbeeldstadium" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Supportwisser" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code-lezer" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Een back-up maken van uw configuratie en deze herstellen." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-back-ups" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaalprofielen" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acties UltiMaker-machines" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Biedt de röntgenweergave." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgenweergave" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Hiermee beheert u netwerkverbindingen naar UltiMaker-netwerkprinters." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker-netwerkverbinding" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Actie machine-instellingen" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Biedt ondersteuning voor het lezen van modelbestanden." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh-lezer" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplaats" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Deze optie biedt een controlestadium in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Controlestadium" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." - -msgctxt "name" -msgid "Image Reader" -msgstr "Afbeeldinglezer" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Biedt machineacties voor het bijwerken van de firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-updater" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-back-end" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Deze optie biedt een voorbereidingsstadium in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Stadium voorbereiden" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controleert op firmware-updates." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-updatecontrole" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Met deze optie schrijft u G-code naar een bestand." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code-schrijver" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." - -msgctxt "name" -msgid "Model Checker" -msgstr "Modelcontrole" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lezer" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." - -msgctxt "name" -msgid "USB printing" -msgstr "USB-printen" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-lezer" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code-profiellezer" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Biedt een normale, solide rasterweergave." - -msgctxt "name" -msgid "Solid View" -msgstr "Solide weergave" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentrylogger" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lezer voor gecomprimeerde G-code" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-lezer" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Biedt ondersteuning voor het schrijven van 3MF-bestanden." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-schrijver" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Schrijver voor gecomprimeerde G-code" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -msgctxt "@info:title" -msgid "Error" -msgstr "Fout" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Annuleren" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Instellingen" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Meer informatie" - -msgctxt "@title:tab" -msgid "General" -msgstr "Algemeen" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" - -msgctxt "@label" -msgid "Type" -msgstr "Type" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Opslaan" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Het Bestand Bestaat Al" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Alle Ondersteunde Typen ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Kan niet opslaan als {0}: {1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Waarschuwing" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Printers" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Bestand opgeslagen" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Verwijderen Bevestigen" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Alle Bestanden (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Gebalanceerd" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Het gebalanceerde profiel is ontworpen om een balans te vinden tussen productiviteit, oppervlaktekwaliteit, mechanische eigenschappen en dimensionale nauwkeurigheid." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index f541f0b6662..d25d5716162 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extruder" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Printkoelventilator van extruder" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extruder" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Eind-G-code van Extruder" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Eindpositie Extruder" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van de printkop." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "X-eindpositie Extruder" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Y-eindpositie Extruder" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Printkoelventilator van extruder" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Start-G-code van Extruder" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startpositie Extruder" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "X-startpositie Extruder" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Y-startpositie Extruder" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van de printkop." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop." + +msgctxt "material description" +msgid "Material" +msgstr "Materiaal" + +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozzle-ID" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Offset Nozzle" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "De X-coördinaat van de offset van de nozzle." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Y-Offset Nozzle" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "De Y-coördinaat van de offset van de nozzle." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." -msgctxt "material label" -msgid "Material" -msgstr "Materiaal" - -msgctxt "material description" -msgid "Material" -msgstr "Materiaal" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "De X-coördinaat van de offset van de nozzle." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "De Y-coördinaat van de offset van de nozzle." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 333268d3b68..ff7d8d84a98 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5466 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type Machine" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "De afstand die moet worden aangehouden tot de randen van het model. Strijken tot de rand van het raster kan leiden tot een gerafelde rand van de print." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "De naam van uw 3D-printermodel." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Een factor die aangeeft hoeveel het filament wordt samengedrukt tussen de feeder en de nozzlekamer, om te bepalen hoe ver het materiaal moet worden verplaatst voor het verwisselen van filament." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Machinevarianten tonen" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de bovenste skinlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst is bereikt, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Hiermee bepaalt u of verschillende varianten van deze machine worden getoond. Deze worden beschreven in afzonderlijke json-bestanden." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de boven-/onderlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-code" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoek van 0 graden wordt gebruikt." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Eind G-code" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Materiaal-GUID" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden voor het lijn- en zigzagpatroon en 45 voor alle andere patronen) worden gebruikt." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." +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." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Wachten op verwarmen van platform" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Hiermee bepaalt u of de opdracht moet worden ingevoegd dat bij aanvang moet worden gewacht totdat het platform op temperatuur is." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Een deel dat volledig is ingesloten in een ander deel kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van de interne gaten." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Wachten op verwarmen van nozzle" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Een aanbeveling over hoe ver takken kunnen bewegen van de punten die ze ondersteunen. Takken kunnen deze waarde overschrijden om hun bestemming te bereiken (bouwplaat of een plat deel van het model). Als u deze waarde verlaagt, wordt de ondersteuning steviger, maar neemt het aantal takken toe (en daardoor materiaalgebruik/printtijd)." -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Hiermee bepaalt u of bij aanvang moet worden gewacht totdat de nozzle op temperatuur is." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Absolute Positie voor Primen Extruder" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materiaaltemperatuur invoegen" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maximale variatie adaptieve lagen" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de nozzletemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de nozzletemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Topografieformaat aanpasbare lagen" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Platformtemperatuur invoegen" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Stapgrootte variatie adaptieve lagen" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de platformtemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de platformtemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Met adaptieve lagen berekent u de laaghoogte afhankelijk van de vorm van het model." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Machinebreedte" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Voeg extra wanden toe rondom de vulling. Deze wanden kunnen ervoor zorgen dat de skin aan de boven-/onderkant minder doorzakt. Dit betekent dat u met alleen wat extra materiaal voor dezelfde kwaliteit minder skinlagen aan de boven-/onderkant nodig hebt.\n" +"Deze optie kan in combinatie met de optie 'Polygonen voor de vulling verbinden' worden gebruikt om alle vulling in één doorvoerpad te verbinden zonder extra bewegingen of intrekkingen, mits correct ingesteld." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "De breedte (X-richting) van het printbare gebied." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Machinediepte" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Hechtingsgevoeligheid" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "De diepte (Y-richting) van het printbare gebied." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan, als percentage van de lijnbreedtes van de skin-lijnen en de binnenste wand. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een percentage hoger dan 50%, omdat de nozzle van de skin-extruder op deze positie al voorbij het midden van de wand kan zijn." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Machinehoogte" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een waarde groter dan de halve wandbreedte, omdat de nozzle van de skin-extruder op deze positie het midden van de wand al kan hebben bereikt." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "De hoogte (Z-richting) van het printbare gebied." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Past de vuldichtheid van de print aan." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Vorm van het platform" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Past de dichtheid van de daken en vloeren van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "De vorm van het platform zonder rekening te houden met niet-printbare gebieden." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Hiermee past u de dichtheid aan van de ondersteunende structuur die wordt gebruikt om de tips van de takken te genereren. Een hogere waarde resulteert in een betere overhang, maar de ondersteuning is moeilijker te verwijderen. Gebruik ondersteunend dak voor zeer hoge waarden of zorg ervoor dat de ondersteuningsdichtheid aan de bovenkant even hoog is." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechthoekig" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Past de dichtheid van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ovaal" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiaal van het platform" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Het materiaal van het platform dat in de printer geïnstalleerd is." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Nadat de machine van de ene extruder naar de andere is gewisseld, wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle doorgevoerd materiaal achterlaat op de buitenzijde van een print." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Alles" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Heeft verwarmd platform" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Alles Tegelijk" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Hiermee geeft u aan of een verwarmd platform aanwezig is." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Alle instellingen die invloed hebben op de resolutie van de print. Deze instellingen hebben een grote invloed op de kwaliteit (en printtijd)." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Heeft temperatuurstabilisatie van werkvolume" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Afwisselend Extra Wand" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Of de machine in staat is de temperatuur van het werkvolume te stabiliseren." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Verwijderen van afwisselend raster" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Alternerende wandrichtingen" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alternerende wandrichtingen na elke laag en instroming. Nuttig voor materialen die spanning op kunnen bouwen, bijvoorbeeld voor het printen van metaal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Tool voor altijd actief schrijven" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Tool voor actief schrijven na het verzenden van tijdelijke opdrachten naar inactieve tool. Vereist voor afdrukken met dubbele extruder met Smoothie of andere firmware met modale toolopdrachten." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Altijd intrekken voordat wordt bewogen om met een buitenwand te beginnen." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is oorsprongpunt centraal" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "De mate van offset die wordt toegepast op alle polygonen in elke laag. Met positieve waarden compenseert u te grote gaten, met negatieve waarden compenseert u te kleine gaten." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Hiermee geeft u aan of de X/Y-coördinaten van de nul-positie van de printer zich in het midden van het printbare gebied bevinden." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "De mate van offset die wordt toegepast op alle polygonen in de eerste laag. Met negatieve waarden compenseert u het samenpersen van de eerste laag, ook wel 'olifantenpoot' genoemd." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Aantal extruders" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "De mate van offset die wordt toegepast op alle steunpolygonen in elke laag. Met positieve waarden kunt u de draagvlakken effenen en krijgt u een stevigere supportstructuur." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Aantal extruder trains. Een extruder train is de combinatie van een feeder, Bowden-buis en nozzle." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "De mate van offset die wordt toegepast op de supportvloeren." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Aantal ingeschakelde extruders" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "De mate van offset die wordt toegepast op de supportdaken." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Het aantal extruder trains dat ingeschakeld is; automatisch ingesteld in de software" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "De mate van offset die wordt toegepast op de verbindingspolygonen." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Buitendiameter nozzle" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Volume filament dat moet worden ingetrokken om te voorkomen dat filament verloren gaat tijdens het afvegen." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "De buitendiameter van de punt van de nozzle." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Een aanvulling op de straal vanuit het midden van elk blok om de rand van het model te detecteren, om te bepalen of het blok moet worden onderverdeeld. Een hogere waarde leidt tot een dikkere shell voor kleine blokken bij de rand van het model." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozzlelengte" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Raster tegen overhang" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Het hoogteverschil tussen de punt van de nozzle en het laagste deel van de printkop." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Intrekpositie voor niet-uitlopen" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozzlehoek" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Intreksnelheid voor niet-uitlopen" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "De hoek tussen het horizontale vlak en het conische gedeelte boven de punt van de nozzle." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op alle extruders." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lengte verwarmingszone" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Genereer op de plaatsen waar modellen elkaar raken een in elkaar grijpende balkstructuur. Dit verbetert de hechting tussen modellen, vooral modellen die in verschillende materialen zijn geprint." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "De afstand tussen de punt van de nozzle waarin de warmte uit de nozzle wordt overgedragen aan het filament." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Geprinte delen mijden tijdens bewegingen" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Regulering van de nozzletemperatuur inschakelen" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Supportstructuren mijden tijdens bewegingen" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Hiermee geeft u aan of u de temperatuur wilt reguleren vanuit Cura. Schakel deze optie uit als u de nozzletemperatuur buiten Cura om wilt reguleren." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Achter" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Verwarmingssnelheid" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Linksachter" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "De snelheid (°C/s) waarmee de nozzle wordt verwarmd, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Rechtsachter" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Afkoelsnelheid" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "De snelheid (°C/s) waarmee de nozzle afkoelt, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beide" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimale tijd stand-bytemperatuur" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Beide overlappen" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "De minimale tijd die een extruder inactief moet zijn, voordat de nozzle wordt afgekoeld. Alleen als een extruder gedurende langer dan deze tijd niet wordt gebruikt, wordt deze afgekoeld naar de stand-bytemperatuur." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Bodemlagen" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versie G-code" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Eerste laag patroon onderkant" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "De G-code-versie die moet worden gegenereerd." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Uitbreidingsafstand van onderste skinlaag" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Verwijderingsbreedte onderste skinlaag" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Bodemdikte" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Takdichtheid" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Takdiameter" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Hoek takdiameter" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Intrekpositie voor voorbereiding van afbreken" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Intreksnelheid voor voorbereiding van afbreken" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatuur voor voorbereiding van afbreken" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Intrekpositie voor afbreken" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Intrekken via firmware" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Intreksnelheid voor afbreken" -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." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatuur voor afbreken" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruders delen verwarming" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Supportstructuur in Stukken Breken" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Hiermee bepaalt u of de extruders één verwarming delen in plaats van dat elke extruder zijn eigen verwarming heeft." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Ventilatorsnelheid brug" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruders delen nozzle" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brug heeft meerdere lagen" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Hiermee bepaalt u of de extruders één nozzle delen in plaats van dat elke extruder zijn eigen nozzle heeft. Wanneer dit wordt ingesteld op 'true', wordt verwacht dat het G-code-script voor het opstarten van de printer alle extruders correct instelt in een initiële intrekstatus die bekend is en onderling compatibel is (nul of één filament niet ingetrokken). In dat geval wordt de initiële intrekstatus per extruder beschreven door de parameter 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichtheid tweede brugskin" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Initiële terugtrekking gedeelde nozzle" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Ventilatorsnelheid tweede brugskin" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Hoever het filament van elke extruder geacht wordt te zijn ingetrokken vanuit de gedeelde nozzle als het G-code-script voor het opstarten van de printer is uitgevoerd. De waarde mag niet gelijk zijn aan of groter zijn dan de lengte van het gemeenschappelijke deel van de kanalen in de nozzle." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Doorvoer tweede brugskin" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Verboden gebieden" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Snelheid tweede brugskin" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichtheid brugskin" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Verboden gebieden voor de nozzle" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Doorvoer brugskin" -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." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Snelheid brugskin" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Machinekop- en ventilatorpolygoon" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Drempelwaarde voor brugskinsupport" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "De vorm van de printkop. Deze coördinaten hebben betrekking op de positie van de printkop. Meestal is dit de positie van de eerste extruder. De dimensies links van en vóór de printkop moeten negatieve coördinaten zijn." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale dichtheid van dunne vulling brugskin" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Rijbrughoogte" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset met extruder" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op alle extruders." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Absolute Positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de primepositie van de extruder de absolute positie, in plaats van de relatieve positie ten opzichte van de laatst bekende locatie van de printkop." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximale Snelheid X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "De maximale snelheid van de motor in de X-richting." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximale Snelheid Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "De maximale snelheid van de motor in de Y-richting." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximale Snelheid Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "De maximale snelheid van de motor in de Z-richting." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximale Snelheid E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "De maximale snelheid voor de doorvoer van het filament." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Acceleratie X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "De maximale acceleratie van de motor in de X-richting" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Acceleratie Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "De maximale acceleratie van de motor in de Y-richting." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Acceleratie Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "De maximale acceleratie van de motor in de Z-richting." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Filamentacceleratie" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "De maximale acceleratie van de motor van het filament." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Standaardacceleratie" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichtheid derde brugskin" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "De standaardacceleratie van de printkopbeweging." +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Ventilatorsnelheid derde brugskin" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Standaard X-/Y-schok" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Doorvoer derde brugskin" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "De standaardschok voor beweging in het horizontale vlak." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Snelheid derde brugskin" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Standaard Z-schok" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting brugwand" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "De standaardschok voor de motor in de Z-richting." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Doorvoer brugwand" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Standaard Filamentschok" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Snelheid brugwand" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "De standaardschok voor de motor voor het filament." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Stappen per millimeter (X)" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Brimafstand" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de X-richting." +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Binnenste mijdmarge brim" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Stappen per millimeter (Y)" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Aantal Brimlijnen" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Y-richting." +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Brim Alleen aan Buitenkant" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Stappen per millimeter (Z)" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim vervangt supportstructuur" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Z-richting." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breedte Brim" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Stappen per millimeter (E)" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van het feederwiel van één millimeter rond de omtrek." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extruder Hechting aan Platform" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-eindstop in positieve richting" +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type Hechting aan Platform" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Of de eindstop op de X-as zich in positieve (hoog X-coördinaat) of negatieve richting (laag X-coördinaat) bevindt." +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiaal van het platform" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-eindstop in positieve richting" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Vorm van het platform" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Of de eindstop op de Y-as zich in positieve (hoog Y-coördinaat) of negatieve richting (laag Y-coördinaat) bevindt." +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Platformtemperatuur" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-eindstop in positieve richting" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Platformtemperatuur voor de eerste laag" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Of de eindstop op de Z-as zich in positieve (hoog Z-coördinaat) of negatieve richting (laag Z-coördinaat) bevindt." +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatuur werkvolume" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimale Doorvoersnelheid" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Object centreren" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "De minimale bewegingssnelheid van de printkop." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Verander de geometrie van het geprinte model dusdanig dat minimale support is vereist. Een steile overhang wordt een vlakke overhang. Overhangende gedeelten worden verlaagd zodat deze meer verticaal komen te staan." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diameter van het feedertandwiel" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creëert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creëert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "De diameter van het tandwiel waarmee het materiaal in de feeder wordt gevoerd." +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-snelheid" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Zet de ventilatorsnelheid op 0-1" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-volume" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Zet de ventilatorsnelheid op een waarde tussen 0 en 1 in plaats van tussen 0 en 256." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Met coasting wordt het laatste gedeelte van een doorvoerpad vervangen door een beweging. Het doorgevoerde materiaal wordt gebruikt om het laatste gedeelte van het doorvoerpad te printen, om draadvorming te verminderen." -msgctxt "resolution label" -msgid "Quality" -msgstr "Kwaliteit" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-modus" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Alle instellingen die invloed hebben op de resolutie van de print. Deze instellingen hebben een grote invloed op de kwaliteit (en printtijd)." +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen of combing alleen binnen de vulling te gebruiken." -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Laaghoogte" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Instellingen opdrachtregel" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "De hoogte van elke laag in mm. Met hogere waarden print u sneller met een lagere resolutie, met lagere waarden print u langzamer met een hogere resolutie." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hoogte Eerste Laag" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht het object beter aan het platform." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Lijnbreedte" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "De breedte van een enkele lijn. Over het algemeen dient de breedte van elke lijn overeen te komen met de breedte van de nozzle. Wanneer deze waarde echter iets wordt verlaagd, resulteert dit in betere prints." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Lijnbreedte Wand" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Breedte van een enkele wandlijn." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Lijnbreedte Buitenwand" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "De breedte van de buitenste lijn van de wand. Wanneer deze waarde wordt verlaagd, kan nauwkeuriger worden geprint." +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrisch" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Lijnbreedte Binnenwand(en)" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Hoek Conische Supportstructuur" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Breedte van een enkele wandlijn voor alle wandlijnen, behalve de buitenste." +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Minimale Breedte Conische Supportstructuur" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Lijnbreedte Boven-/onderkant" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Vullijnen verbinden" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Breedte van een enkele lijn aan de boven-/onderkant." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Vulpolygonen Verbinden" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Lijnbreedte Vulling" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Supportstructuurlijnen verbinden" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Breedte van een enkele vullijn." +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zigzaglijnen Supportstructuur Verbinden" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Lijnbreedte Skirt/Brim" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Boven-/onderkant Polygonen Verbinden" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Breedte van een enkele skirt- of brimlijn." +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Vulpaden verbinden waar ze naast elkaar lopen. Bij vulpatronen die uit meerdere gesloten polygonen bestaan, wordt met deze instelling de bewegingstijd aanzienlijk verkort." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Lijnbreedte Supportstructuur" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Verbind de zigzaglijnen. Hiermee versterkt u de zigzag-supportstructuur." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Breedte van een enkele lijn van de supportstructuur." +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Verbind de uiteinden van de supportstructuurlijnen met elkaar. Als u deze instelling inschakelt, maakt u de supportstructuur robuuster en vermindert u onderextrusie. Er wordt echter meer materiaal verbruikt." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Lijnbreedte Verbindingsstructuur" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Verbindt de uiteinden waar het vulpatroon bij de binnenwand komt, met een lijn die de vorm van de binnenwand volgt. Als u deze instelling inschakelt, kan de vulling beter hechten aan de wanden en wordt de invloed van de vulling op de kwaliteit van de verticale oppervlakken kleiner. Als u deze instelling uitschakelt, wordt er minder materiaal gebruikt." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Breedte van een enkele lijn van het supportdak of de supportvloer." +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Lijnbreedte supportdak" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Instellen of hoeken in het model invloed hebben op de positie van de naad. Geen wil zeggen dat hoeken geen invloed hebben op de positie van de naad. Met Naad Verbergen is de kans groter dat de naad op een binnenhoek komt. Met Naad Zichtbaar Maken is de kans groter dat de naad op een buitenhoek komt. Met Naad Verbergen of Naad Zichtbaar Maken is de kans groter dat de naad op een binnen- of buitenhoek komt. Met Slim Verbergen zijn zowel binnen- als buitenhoeken mogelijk, maar wordt er vaker (indien van toepassing) gebruikgemaakt van binnenhoeken." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Breedte van een enkele lijn van het supportdak." +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Zet elke vullijn om naar zoveel keer vullijnen. De extra lijnen kruisen elkaar niet, maar mijden elkaar. Hierdoor wordt de vulling stijver, maar duurt het printen langer en wordt er meer materiaal verbruikt." -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Lijnbreedte supportvloer" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Afkoelsnelheid" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Breedte van een enkele lijn van de supportvloer." +msgctxt "cooling description" +msgid "Cooling" +msgstr "Koelen" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Lijnbreedte Primepijler" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Koelen" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Breedte van een enkele lijn van de primepijler." +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kruis" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Lijnbreedte eerste laag" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Kruis" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Vermenigvuldiging van de lijnbreedte van de eerste laag. Door deze te verhogen kan de hechting aan het bed worden verbeterd." +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Kruis 3D" -msgctxt "shell label" -msgid "Walls" -msgstr "Wanden" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Luchtbelgrootte bij Kruis 3D" -msgctxt "shell description" -msgid "Shell" -msgstr "Shell" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Wandextruder" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Dichtheid kruisvulling afbeelding" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de wanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallijnmateriaal" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder buitenwand" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kubisch" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de buitenwand wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kubische onderverdeling" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder binnenwand" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kubische onderverdeling shell" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de binnenwanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Snijdend raster" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddikte" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Grafiek om de materiaaldoorvoer (in mm3 per seconde) te koppelen aan de temperatuur (graden Celsius)." -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "De dikte van de wanden in horizontale richting. Het aantal wanden wordt bepaald door het delen van deze waarde door de breedte van de wandlijn." +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Standaardacceleratie" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Aantal Wandlijnen" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standaardtemperatuur platform" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Het aantal wandlijnen. Wanneer deze waarde wordt berekend aan de hand van de wanddikte, wordt deze afgerond naar een geheel getal." +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Standaard Filamentschok" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lengte wandovergang" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Standaard printtemperatuur" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Bij de overgang tussen verschillende aantallen wanden naarmate het onderdeel dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen voor het splitsen of samenvoegen van wandlijnen." +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Standaard X-/Y-schok" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Aantal wanden voor distributie" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Standaard Z-schok" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Het aantal wanden, geteld vanaf het midden, waarover de variatie moet worden gespreid. Lagere waarden betekenen dat de breedte van de buitenwanden niet verandert." +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "De standaardschok voor beweging in het horizontale vlak." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Drempelhoek wandovergang" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "De standaardschok voor de motor in de Z-richting." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Wanneer u overgangen moet maken tussen even en oneven aantallen wanden. Een wigvorm met een hoek die groter is dan deze instelling, heeft geen overgangen. Er worden geen wanden geprint in het midden om de overblijvende ruimte te vullen. Door deze instelling kleiner te maken, reduceert u het aantal en de lengte van deze centrumwanden. Dit kan echter leiden tot openingen of een te hoge doorvoer." +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "De standaardschok voor de motor voor het filament." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Filterafstand wandovergang" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Hiermee detecteert u bruggen en past u de instellingen voor de printsnelheid, doorvoer en ventilator aan tijdens het printen van bruggen." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Maak geen gebruik van wandovergangen als dit leidt tot snelle achtereenvolgende veranderingen in het aantal wanden. Verwijder overgangen als de afstand tussen overgangen kleiner is dan deze afstand." +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Bepaalt de volgorde waarin de wanden worden geprint. Wanneer u de buitenwanden het eerst print, bevordert u de nauwkeurigheid van de afmetingen, omdat fouten in de binnenwanden niet worden overgedragen op de buitenzijde. Door ze later te printen kunt u echter beter stapelen wanneer de overhangs worden geprint. Bij een oneven aantal binnenwanden wordt de 'middelste laatste lijn' altijd als laatste afgedrukt." -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Filtermarge wandovergang" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Bepaalt de prioriteit van dit raster bij meerdere overlappende vulrasters. Gebieden met meerdere overlappende vulrasters krijgen de instellingen van het vulraster met de hoogste rang. Bij een vulraster met een hogere rang wordt de vulling van vulrasters met een lagere rang en normale rasters aangepast." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Voorkom herhaaldelijke overgangen tussen een wand meer en een wand minder. Deze marge vergroot het aantal lijnbreedtes dat volgt op [minimumbreedte wandlijn - marge, 2 * minimumbreedte wandlijn + marge]. Door de marge te vergroten reduceert u het aantal overgangen, wat weer het aantal doorvoerstarts/-stops en de tijd van de beweging reduceert. Een grote variatie in lijnbreedtes kan echter wel leiden tot problemen met te geringe of te hoge extrusie." +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bepaalt wanneer een bliksemvullaag iets moet ondersteunen dat zich boven de vullaag bevindt. Gemeten in de hoek bepaald door de laagdikte." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Veegafstand buitenwand" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bepaalt wanneer een bliksemvullaag het model boven de laag moet ondersteunen. Gemeten in de hoek bepaald door de laagdikte." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Afstand van een beweging die ingevoegd is na de buitenwand, om de Z-naad beter te maskeren." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Uitsparing Buitenwand" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Diameterverhoging naar model" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Uitsparing die wordt toegepast in de buitenwand. Als de buitenwand smaller is dan de nozzle en na de binnenwand wordt geprint, gebruikt u deze offset om het gat in de nozzle te laten overlappen met de binnenwanden in plaats van met de buitenkant van het model." +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diameter elke tak probeert te bereiken bij het bereiken van de bouwplaat. Verbetert de hechting van het bed." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Printvolgorde van wanden optimaliseren" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Er zijn verschillende opties die u helpen zowel de voorbereiding van de doorvoer als de hechting aan het platform te verbeteren. Met de optie Brim legt u in de eerste laag extra materiaal rondom de voet van het model om vervorming te voorkomen. Met de optie Raft legt u een dik raster met een dak onder het model. Met de optie Skirt print u rond het model een lijn die niet met het model is verbonden." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimaliseer de volgorde waarin wanden worden geprint om het aantal intrekbewegingen en de afgelegde afstand te verkleinen. Deze instelling is gunstig voor de meeste onderdelen. Bij sommige onderdelen duurt het printen echter langer. Controleer daarom de verwachte printtijd met en zonder optimalisatie. De eerste laag wordt niet geoptimaliseerd als u brim kiest als hechting aan platform." +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Verboden gebieden" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandvolgorde" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "De afstand tussen de geprinte vullijnen. Deze instelling wordt berekend op basis van de dichtheid van de vulling en de lijnbreedte van de vulling." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Bepaalt de volgorde waarin de wanden worden geprint. Wanneer u de buitenwanden het eerst print, bevordert u de nauwkeurigheid van de afmetingen, omdat fouten in de binnenwanden niet worden overgedragen op de buitenzijde. Door ze later te printen kunt u echter beter stapelen wanneer de overhangs worden geprint. Bij een oneven aantal binnenwanden wordt de 'middelste laatste lijn' altijd als laatste afgedrukt." +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Afstand tussen de lijnen van de supportstructuur voor de eerste laag. Deze wordt berekend op basis van de dichtheid van de supportstructuur." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Van binnen naar buiten" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "De afstand tussen de geprinte lijnen van de supportvloer. Deze instelling wordt berekend op basis van de dichtheid van de supportvloer, maar kan onafhankelijk worden aangepast." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Van buiten naar binnen" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "De afstand tussen de geprinte lijnen van het supportdak. Deze instelling wordt berekend op basis van de dichtheid van het supportdak, maar kan onafhankelijk worden aangepast." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Afwisselend Extra Wand" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze instelling wordt berekend op basis van de dichtheid van de supportstructuur." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Print op afwisselende lagen een extra wand. Op deze manier wordt vulling tussen deze extra wanden gevangen, wat leidt tot sterkere prints." +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimumbreedte wandlijn" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "De afstand van de bovenkant van de supportstructuur tot de print." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn." +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum lijnbreedte even wand" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "De afstand voor een beweging die na het printen van elke vullijn wordt ingevoegd, om ervoor te zorgen dat de vulling beter aan de wanden hecht. Deze optie lijkt op de optie voor overlap van vulling. Tijdens deze beweging is er echter geen doorvoer en de beweging vindt maar aan één uiteinde van de vullijn plaats." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "De minimum lijnbreedte voor normale polygonale wanden. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van één dunne wandlijn op het printen van twee wandlijnen. Een hogere Minimum lijnbreedte gelijkmatige wand leidt tot een hogere maximum lijnbreedte voor een ongelijkmatige wand. De maximum breedte bij een gelijkmatige wandlijn wordt berekend als Lijnbreedte buitenste wand + 0,5 * Minimum lijnbreedte voor een ongelijkmatige wand." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Afstand van een beweging die ingevoegd is na de buitenwand, om de Z-naad beter te maskeren." -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum breedte ongelijkmatige wandlijn" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "De afstand tussen het tochtscherm en de print, in de X- en Y-richting." -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "De minimum lijnbreedte voor opvuller voor ruimte middelste lijn bij muren met meerdere lijnen. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van twee wandlijnen naar het printen van twee buitenwanden en één centrale wand in het midden. Een hogere Minimum breedte ongelijkmatige wandlijn leidt naar een hogere maximale lijnbreedte bij een gelijkmatige wand. De maximale breedte ongelijkmatige wandlijn wordt berekend als 2 * Minimum breedte gelijkmatige wandlijn." +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." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Dunne wanden printen" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Afstand tussen de supportstructuur en de overhang in de X- en Y-richting." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Print delen van het model die horizontaal dunner zijn dan de maat van de nozzle." +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Afstand tussen de supportstructuur en de print, in de X- en Y-richting." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum elementgrootte" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Minimumdikte van dunne elementen. Modelelementen die dunner zijn dan deze waarde worden niet geprint, terwijl elementen die dikker zijn dan de minimale elementgrootte worden verbreed tot de minimale wandlijnbreedte." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimumbreedte dunne wandlijn" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Genereer geen gebieden met vulling die kleiner zijn dan deze waarde (gebruik in plaats daarvan een skin)." -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Breedte van de wand die dunne elementen van het model vervangt (volgens de minimum elementgrootte). Als de Minimumbreedte wandlijn dunner is dan de dikte van het element, wordt de wand even dik als het element zelf." +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hoogte Tochtscherm" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Uitbreiding" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Beperking Tochtscherm" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "De mate van offset die wordt toegepast op alle polygonen in elke laag. Met positieve waarden compenseert u te grote gaten, met negatieve waarden compenseert u te kleine gaten." +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Tochtscherm X-/Y-afstand" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Eerste laag Horizontale uitbreiding" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Supportraster verlagen" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "De mate van offset die wordt toegepast op alle polygonen in de eerste laag. Met negatieve waarden compenseert u het samenpersen van de eerste laag, ook wel 'olifantenpoot' genoemd." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dubbele Doorvoer" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontale uitbreiding gaten" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ovaal" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Als de horizontale uitzetting van het gat groter is dan nul, is dit de hoeveelheid offset die op alle gaten in elke laag wordt toegepast. Positieve waarden vergroten de grootte van de gaten, negatieve waarden verkleinen de grootte van de gaten. Wanneer deze instelling is ingeschakeld, kan deze verder worden afgesteld met Maximum diameter horizontale uitzetting gaten." +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Acceleratieregulering Inschakelen" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Gat horizontale expansie max diameter" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Bruginstellingen inschakelen" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Als dit groter is dan nul, wordt de horizontale gatexpansie geleidelijk toegepast op kleine gaten (kleine gaten worden meer uitgebreid). Indien ingesteld op nul, wordt de horizontale gatexpansie toegepast op alle gaten. Gaten groter dan de maximale diameter van de horizontale gatexpansie worden niet vergroot." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting Inschakelen" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Uitlijning Z-naad" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Conische supportstructuur inschakelen" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Het startpunt voor elk pad in een laag. Wanneer paden in opeenvolgende lagen op hetzelfde punt beginnen, kan in de print een verticale naad zichtbaar zijn. De naad is het eenvoudigst te verwijderen wanneer deze zich nabij een door de gebruiker opgegeven locatie van de print bevindt. De onnauwkeurigheden vallen minder op wanneer het pad steeds op een willekeurige plek begint. De print is sneller af wanneer het kortste pad wordt gekozen." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Tochtscherm Inschakelen" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Door de gebruiker opgegeven" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Vloeiende beweging inschakelen" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kortste" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Strijken inschakelen" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Willekeurig" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Schokregulering Inschakelen" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Scherpste hoek" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Regulering van de nozzletemperatuur inschakelen" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z-naadpositie" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Uitloopscherm Inschakelen" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "De positie nabij waar met het printen van elk deel van een laag moet worden begonnen." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Primeblob inschakelen" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Linksachter" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Primepijler Inschakelen" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Achter" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Koelen van de Print Inschakelen" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Rechtsachter" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Intrekken Inschakelen" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Supportbrim inschakelen" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Rechtsvoor" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Supportvloer inschakelen" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Voor" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Verbindingsstructuur Inschakelen" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Linksvoor" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Supportdak inschakelen" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Bewegingsacceleratie inschakelen" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-naad X" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Bewegingsschok inschakelen" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "De X-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Hiermee wordt het uitloopscherm aan de buitenkant ingeschakeld, waardoor een shell rond het model wordt gemaakt waarop een tweede nozzle kan worden afgeveegd als deze zich op dezelfde hoogte bevindt als de eerste nozzle." -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-naad Y" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Laat kleine (tot 'Breedte kleine bovenkant/onderkant') gebieden op de bovenste skinned layer (blootgesteld aan lucht) opvullen met muren in plaats van het standaardpatroon." -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "De Y-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Hiermee stelt u de schok van de printkop in wanneer de snelheid in de X- of Y-as verandert. Door het verhogen van de schok wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Voorkeur van naad en hoek" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Hiermee stelt u de printkopacceleratie in. Door het verhogen van de acceleratie wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Instellen of hoeken in het model invloed hebben op de positie van de naad. Geen wil zeggen dat hoeken geen invloed hebben op de positie van de naad. Met Naad Verbergen is de kans groter dat de naad op een binnenhoek komt. Met Naad Zichtbaar Maken is de kans groter dat de naad op een buitenhoek komt. Met Naad Verbergen of Naad Zichtbaar Maken is de kans groter dat de naad op een binnen- of buitenhoek komt. Met Slim Verbergen zijn zowel binnen- als buitenhoeken mogelijk, maar wordt er vaker (indien van toepassing) gebruikgemaakt van binnenhoeken." +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Hiermee schakelt u de printkoelventilatoren in tijdens het printen. De ventilatoren verbeteren de printkwaliteit van lagen met een korte laagtijd en brugvorming/overhang." -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Geen" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Eind G-code" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Naad verbergen" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Afvoerduur einde van filament" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naad zichtbaar maken" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Afvoersnelheid einde van filament" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Naad verbergen of zichtbaar maken" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Slim verbergen" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Overal" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusief" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatieve Z-naad" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimenteel" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Als deze optie ingeschakeld is, zijn de Z-naadcoördinaten relatief ten opzichte van het midden van elk deel. Als de optie uitgeschakeld is, staan de coördinaten voor een absolute positie op het platform." +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naad zichtbaar maken" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Uitgebreid Hechten" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Met uitgebreid hechten worden zo veel mogelijk open gaten in het raster gehecht doordat het gat wordt gedicht met polygonen die elkaar raken. Deze optie kan de verwerkingstijd aanzienlijk verlengen." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extruder bovenskin" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Aantal Extra Wanden Rond vulling" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de bovenste skinlaag wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Aantal Extra Wandlijnen Rond Skin" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Bovenste skinlagen" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Extra primemateriaal na het wisselen van de nozzle." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Het aantal bovenste skinlagen. Doorgaans is één bovenste skinlaag voldoende om oppervlakken van hogere kwaliteit te verkrijgen." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Lijnbreedte bovenskin" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Breedte van een enkele lijn aan de bovenkant van de print." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patroon bovenskin" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruders delen verwarming" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Het patroon van de bovenste lagen." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruders delen nozzle" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Aanpassing Afkoelsnelheid Doorvoer" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Op doorvoerbreedte gebaseerde correctiefactor voor de snelheid. Op 0% wordt de bewegingssnelheid gelijk gehouden aan de printsnelheid. Op 100% wordt de bewegingssnelheid zo aangepast dat de stroom (in mm³/s) constant is, d.w.z. dat alle lijnen die half zo breed zijn als de normale lijnbreedte, tweemaal zo snel worden geprint en lijnen die twee maal zo breed zijn, half zo snel. Een waarde groter dan 100% kan de hogere druk compenseren die nodig is voor de extrusie van brede lijnen." -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Ventilatorsnelheid" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotone volgorde bovenlaag" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Ventilatorsnelheid Overschrijven" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print de lijnen van de bovenlaag in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Kenmerkcontouren die korter zijn dan deze lengte, worden afgedrukt met behulp van Klein kenmerksnelheid." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Lijnrichting bovenskin" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Functies die nog niet volledig zijn uitgewerkt." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de bovenste skinlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst is bereikt, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diameter van het feedertandwiel" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Boven-/Onderkant" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Eindtemperatuur voor printen" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de boven- en onderskin wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Intrekken via firmware" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Dikte Boven-/Onderkant" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder Eerste Laag van Support" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "De dikte van de boven-/onderlagen in de print. Het aantal boven-/onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Doorvoer" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Dikte Bovenkant" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhouding voor afstemmen doorvoer" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "De dikte van de bovenlagen in de print. Het aantal bovenlagen wordt bepaald door het delen van deze waarde door de laaghoogte." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Doorvoercompensatiefactor" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Bovenlagen" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Maximale extrusieoffset voor doorvoercompensatie" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Het aantal bovenlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bovenkant, wordt deze afgerond naar een geheel getal." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafiek Doorvoertemperatuur" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Bodemdikte" +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." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "De dikte van de onderlagen in de print. Het aantal onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Stroomcompensatie op de onderste lijnen van de eerste laag" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Bodemlagen" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Doorvoercompensatie op vullijnen." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Het aantal bodemlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Doorvoercompensatie op de lijnen van supportdak of de supportvloer." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Eerste onderste lagen" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Doorvoercompensatie op lijnen van de gebieden bovenaan de print." -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." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Doorvoercompensatie op primepijlerlijnen." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patroon Boven-/Onderkant" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Doorvoercompensatie op skirt- of brimlijnen." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Het patroon van de boven-/onderlagen." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Doorvoercompensatie op de supportvloerlijnen." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Doorvoercompensatie op supportdaklijnen." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Doorvoercompensatie op de supportstructuurlijnen." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Stroomcompensatie op de buitenste wandlijn van de eerste laag." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Eerste laag patroon onderkant" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Doorvoercompensatie op de buitenste wandlijn." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Het patroon van de eerste laag aan de onderkant van de print." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Doorvoercompensatie op bovenste/onderste lijn." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Stroomcompensatie op wandlijnen voor alle wandlijnen behalve de buitenste, maar alleen voor de eerste laag" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Doorvoercompensatie op wandlijnen voor alle wandlijnen behalve de buitenste." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Boven-/onderkant Polygonen Verbinden" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Doorvoercompensatie op wandlijnen." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotone volgorde van boven naar beneden" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Hoek vloeiende beweging" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print boven- en onderlijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Vloeiende beweging verschuivingsafstand" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Lijnrichtingen boven-/onderkant" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Vloeiende beweging kleine afstand" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de boven-/onderlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Afvoerduur flush" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Kleine breedte boven/onderzijde" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Afvoersnelheid flush" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Kleine boven-/ondergebieden worden gevuld met muren in plaats van het standaard boven-/onderpatroon. Dit helpt om schokkerige bewegingen te voorkomen. Standaard uit voor de bovenste (aan lucht blootgestelde) laag (zie 'Kleine boven-/onderkant op oppervlak')." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn." -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Kleine bovenkant/onderkant op oppervlak" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Voor" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Laat kleine (tot 'Breedte kleine bovenkant/onderkant') gebieden op de bovenste skinned layer (blootgesteld aan lucht) opvullen met muren in plaats van het standaardpatroon." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Linksvoor" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Geen skin in Z-gaten" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Rechtsvoor" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Als het model kleine verticale gaten van slechts een paar lagen heeft, bevindt er zich doorgaans een skin rond die lagen in de kleine ruimte. Schakel deze instelling in om geen skin te genereren als de verticale tussenruimte erg klein is. Zo verloopt printen en slicen sneller, maar technisch nadeel is dat de vulling aan de lucht wordt blootgesteld." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Volledig" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Aantal Extra Wandlijnen Rond Skin" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rafelig Oppervlak" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Vervang het buitenste gedeelte van het patroon boven-/onderkant door een aantal concentrische lijnen. Het gebruik van 1 of 2 lijnen verbetert daken die op vulmateriaal beginnen." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichtheid Rafelig Oppervlak" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Strijken inschakelen" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Alleen rafelig oppervlak buitenkant" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Nog een extra keer over de bovenlaag gaan, dit keer zonder veel materiaal te extruderen. Hierdoor wordt de kunststof aan de bovenkant verder gesmolten, waardoor een gladder oppervlak wordt verkregen. De kamerdruk in de nozzle wordt hoog gehouden zodat de spleten in het oppervlak met materiaal worden gevuld." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Puntafstand Rafelig Oppervlak" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Alleen hoogste laag strijken" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dikte Rafelig Oppervlak" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Strijk alleen de allerlaatste laag van het voorwerp. Dit bespaart tijd als de daaronder gelegen lagen geen glad oppervlak vereisen." +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versie G-code" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Strijkpatroon" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door \n" +"." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door \n" +"." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Rijbrughoogte" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotone strijkvolgorde" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Genereer in elkaar grijpende structuur" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print strijklijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Support genereren" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Tussenruimte strijklijnen" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genereer een brim binnen de supportvulgebieden van de eerste laag. Deze brim wordt niet rondom maar onder de supportstructuur geprint. Als u deze instelling inschakelt, hecht de supportstructuur beter aan het platform." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "De afstand tussen de strijklijnen." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Hiermee maakt u een dichte verbindingsstructuur tussen het model en de supportstructuur. Er wordt een skin gemaakt aan de bovenkant van de supportstructuur waarop het model wordt geprint en op de bodem van de supportstructuur waar dit op het model rust." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Strijkdoorvoer" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genereer een dichte materiaallaag tussen de onderzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "De hoeveelheid materiaal, in verhouding tot een normale skinlijn, die tijdens het strijken moet worden doorgevoerd. Als de nozzle gevuld blijft, kunnen scheuren in de bovenlaag worden gevuld. Te hoge doorvoer leidt echter tot uitstulpingen aan de zijkant van het oppervlak." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genereer een dichte materiaallaag tussen de bovenzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Uitsparing strijken" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "De afstand die moet worden aangehouden tot de randen van het model. Strijken tot de rand van het raster kan leiden tot een gerafelde rand van de print." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Strijksnelheid" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Nog een extra keer over de bovenlaag gaan, dit keer zonder veel materiaal te extruderen. Hierdoor wordt de kunststof aan de bovenkant verder gesmolten, waardoor een gladder oppervlak wordt verkregen. De kamerdruk in de nozzle wordt hoog gehouden zodat de spleten in het oppervlak met materiaal worden gevuld." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "De snelheid waarmee over de bovenste laag wordt bewogen." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Staphoogte Geleidelijke Vulling" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Strijkacceleratie" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stappen Geleidelijke Vulling" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "De acceleratie tijdens het strijken." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Geleidelijke supportvulling hoogte traptreden" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Schok strijken" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Geleidelijke supportvulling traptreden" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Verlaag geleidelijk naar deze temperatuur bij het printen met lagere snelheden vanwege de minimale laagtijd." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Overlappercentage Skin" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan, als percentage van de lijnbreedtes van de skin-lijnen en de binnenste wand. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een percentage hoger dan 50%, omdat de nozzle van de skin-extruder op deze positie al voorbij het midden van de wand kan zijn." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Overlap Skin" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een waarde groter dan de halve wandbreedte, omdat de nozzle van de skin-extruder op deze positie het midden van de wand al kan hebben bereikt." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Raster" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Verwijderingsbreedte skin" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Raster" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "De grootste breedte van skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Groepeer de buitenwanden" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Verwijderingsbreedte bovenste skinlaag" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "De grootste breedte van delen van bovenste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Verwijderingsbreedte onderste skinlaag" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Heeft temperatuurstabilisatie van werkvolume" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "De grootste breedte van delen van de onderste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de onderste skinlaag op schuine vlakken in het model." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Heeft verwarmd platform" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Uitbreidingsafstand van skin" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Verwarmingssnelheid" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "De afstand waarmee de skin wordt uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden van aangrenzende lagen beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lengte verwarmingszone" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Uitbreidingsafstand van bovenste skinlaag" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Stel een hoogtebeperking in voor het tochtscherm. Boven deze hoogte wordt er geen tochtscherm geprint." -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "De afstand waarmee de bovenste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden op de bovenliggende laag beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Naad verbergen" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Uitbreidingsafstand van onderste skinlaag" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Naad verbergen of zichtbaar maken" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "De afstand waarmee de onderste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en de wanden van de onderliggende laag. Bij lagere waarden wordt er minder materiaal gebruikt." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontale uitbreiding gaten" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximale skinhoek voor uitbreiding" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Gat horizontale expansie max diameter" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Van boven- en/of onderoppervlakken van het object met een hoek die groter is dan deze instelling, wordt de boven-/onderskin niet uitgebreid. Hiermee wordt uitbreiding voorkomen van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft. Bij een hoek van 0° (horizontaal) wordt er geen skin uitgebreid; bij een hoek van 90° (verticaal) wordt alle skin uitgebreid." +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Gaten en contouren van onderdelen met een kleinere diameter dan deze worden afgedrukt met behulp van Klein kenmerksnelheid." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Minimale skinbreedte voor uitbreiding" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Uitbreiding" -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." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Horizontale schaalfactor krimpcompensatie" -msgctxt "infill label" -msgid "Infill" -msgstr "Vulling" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Hoe ver het filament kan worden uitgerekt voordat het afbreekt, wanneer het wordt verwarmd." -msgctxt "infill description" -msgid "Infill" -msgstr "Vulling" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Hoe ver het materiaal moet worden ingetrokken voordat het niet meer uitloopt." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Vullingextruder" +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." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de vulling wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Hoe ver het filament moet worden ingetrokken om het recht af te breken." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dichtheid Vulling" +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." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Past de vuldichtheid van de print aan." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Hoe snel het materiaal moet worden ingetrokken tijdens het wisselen van een filament om uitlopen te voorkomen." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Lijnafstand Vulling" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Hoe snel het materiaal moet worden geprimed na het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "De afstand tussen de geprinte vullijnen. Deze instelling wordt berekend op basis van de dichtheid van de vulling en de lijnbreedte van de vulling." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Hoe snel het materiaal moet worden geprimed na het overschakelen op een ander materiaal." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Vulpatroon" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Hoe lang het materiaal veilig buiten een droge opslagplaats kan worden bewaard." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert de vulling doordat deze alleen het plafond van het object ondersteunt." +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de X-richting." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Y-richting." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Z-richting." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van het feederwiel van één millimeter rond de omtrek." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-hexagonaal" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kubisch" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het overschakelen op een ander materiaal." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kubische onderverdeling" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Hoever het filament van elke extruder geacht wordt te zijn ingetrokken vanuit de gedeelde nozzle als het G-code-script voor het opstarten van de printer is uitgevoerd. De waarde mag niet gelijk zijn aan of groter zijn dan de lengte van het gemeenschappelijke deel van de kanalen in de nozzle." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Hoe ondersteuningsinterface en ondersteuning op elkaar inwerken wanneer ze elkaar overlappen. Momenteel alleen geïmplementeerd voor ondersteunend dak." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Afgeknotte kubus" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Hoe groot moet een tak zijn als deze op het model wordt geplaatst. Voorkomt kleine ondersteunende blobs. Deze instelling wordt genegeerd wanneer een tak een ondersteunend dak ondersteunt." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +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." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Als een baansegment meer dan deze hoek afwijkt van de algemene beweging, wordt hij afgevlakt." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kruis" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Als deze optie ingeschakeld is, worden de tweede en derde laag boven de vrije ruimte geprint met de volgende instellingen. Anders worden de lagen geprint met de normale instellingen." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Kruis 3D" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Maak geen gebruik van wandovergangen als dit leidt tot snelle achtereenvolgende veranderingen in het aantal wanden. Verwijder overgangen als de afstand tussen overgangen kleiner is dan deze afstand." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Bliksem" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Negeer de interne geometrie die ontstaat uit overlappende volumes binnen een raster en print de volumes als een geheel. Hiermee kunnen onbedoelde holtes binnenin verdwijnen." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Vullijnen verbinden" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Platformtemperatuur invoegen" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Verbindt de uiteinden waar het vulpatroon bij de binnenwand komt, met een lijn die de vorm van de binnenwand volgt. Als u deze instelling inschakelt, kan de vulling beter hechten aan de wanden en wordt de invloed van de vulling op de kwaliteit van de verticale oppervlakken kleiner. Als u deze instelling uitschakelt, wordt er minder materiaal gebruikt." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materiaaltemperatuur invoegen" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Vulpolygonen Verbinden" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusief" + +msgctxt "infill description" +msgid "Infill" +msgstr "Vulling" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Vulpaden verbinden waar ze naast elkaar lopen. Bij vulpatronen die uit meerdere gesloten polygonen bestaan, wordt met deze instelling de bewegingstijd aanzienlijk verkort." +msgctxt "infill label" +msgid "Infill" +msgstr "Vulling" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Lijnrichting vulling" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Vulacceleratie" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden voor het lijn- en zigzagpatroon en 45 voor alle andere patronen) worden gebruikt." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Vulling vóór Wanden" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Vulling X-offset" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dichtheid Vulling" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de X-as." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Vullingextruder" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Vulling Y-offset" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Doorvoer vulling" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de Y-as." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Vulschok" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Start willekeurig invullen" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dikte Vullaag" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Bepaal willekeurig welke invullijn het eerst wordt geprint. Dit voorkomt dat één segment het sterkst wordt, maar gaat ten koste van een extra beweging." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Lijnrichting vulling" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Lijnafstand Vulling" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Vermenigvuldiging Vullijn" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Zet elke vullijn om naar zoveel keer vullijnen. De extra lijnen kruisen elkaar niet, maar mijden elkaar. Hierdoor wordt de vulling stijver, maar duurt het printen langer en wordt er meer materiaal verbruikt." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Aantal Extra Wanden Rond vulling" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Lijnbreedte Vulling" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Voeg extra wanden toe rondom de vulling. Deze wanden kunnen ervoor zorgen dat de skin aan de boven-/onderkant minder doorzakt. Dit betekent dat u met alleen wat extra materiaal voor dezelfde kwaliteit minder skinlagen aan de boven-/onderkant nodig hebt.\nDeze optie kan in combinatie met de optie 'Polygonen voor de vulling verbinden' worden gebruikt om alle vulling in één doorvoerpad te verbinden zonder extra bewegingen of intrekkingen, mits correct ingesteld." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Vulraster" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kubische onderverdeling shell" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Overhanghoek vulling" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Een aanvulling op de straal vanuit het midden van elk blok om de rand van het model te detecteren, om te bepalen of het blok moet worden onderverdeeld. Een hogere waarde leidt tot een dikkere shell voor kleine blokken bij de rand van het model." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Overlap Vulling" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Overlappercentage vulling" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "De mate van overlap tussen de vulling en de wanden als percentage van de lijnbreedte van de vulling. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Vulpatroon" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Overlap Vulling" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vulsnelheid" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "De mate van overlap tussen de vulling en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supportvulling" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegingsoptimalisatie vulling" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Veegafstand Vulling" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "De afstand voor een beweging die na het printen van elke vullijn wordt ingevoegd, om ervoor te zorgen dat de vulling beter aan de wanden hecht. Deze optie lijkt op de optie voor overlap van vulling. Tijdens deze beweging is er echter geen doorvoer en de beweging vindt maar aan één uiteinde van de vullijn plaats." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Vulling X-offset" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dikte Vullaag" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Vulling Y-offset" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "De dikte per laag vulmateriaal. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Eerste onderste lagen" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stappen Geleidelijke Vulling" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Startsnelheid ventilator" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Het aantal keren dat de vuldichtheid wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid vulling." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Acceleratie Eerste Laag" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Staphoogte Geleidelijke Vulling" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Initiële laag onderste lijn" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "De hoogte van de vulling van een opgegeven dichtheid voordat wordt overgeschakeld naar de helft van deze dichtheid." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diameter beginlaag" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Vulling vóór Wanden" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Doorvoer eerste laag" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Print de vulling voordat de wanden worden geprint. Wanneer u eerst de wanden print, worden deze nauwkeuriger geprint, maar wordt de overhang mogelijk van mindere kwaliteit. Wanneer u eerst de vulling print, worden de wanden steviger, maar schijnt het vulpatroon mogelijk door." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hoogte Eerste Laag" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimumgebied vulling" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Eerste laag Horizontale uitbreiding" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Genereer geen gebieden met vulling die kleiner zijn dan deze waarde (gebruik in plaats daarvan een skin)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Initiële laag binnenwandstroom" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supportvulling" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Schok Eerste Laag" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Print alleen vulstructuren waarvan de bovenkant van het model moet worden ondersteund. Hiermee reduceert u de printtijd en het materiaalgebruik. Dit kan echter leiden tot een niet gelijkmatige objectsterkte." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Lijnbreedte eerste laag" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Overhanghoek vulling" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Initiële laag buitenwandstroom" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "De minimale interne overhanghoek waarbij vulling wordt toegevoegd. Bij een waarde van 0° worden objecten volledig gevuld. Bij 90° wordt er geen vulling geprint." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Printacceleratie Eerste Laag" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Dikte skinrandondersteuning" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Printschok Eerste Laag" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "De dikte van de extra vulling die skinranden ondersteunt." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Printsnelheid Eerste Laag" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Lagen skinrandondersteuning" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Snelheid Eerste Laag" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Het aantal opvullagen dat skinranden ondersteunt." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Lijnafstand Supportstructuur Eerste Laag" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Hoek supportstructuur bliksemvulling" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Bewegingsacceleratie Eerste Laag" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Bepaalt wanneer een bliksemvullaag iets moet ondersteunen dat zich boven de vullaag bevindt. Gemeten in de hoek bepaald door de laagdikte." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Bewegingsschok Eerste Laag" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Hoek overhang bliksemvulling" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegingssnelheid Eerste Laag" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Bepaalt wanneer een bliksemvullaag het model boven de laag moet ondersteunen. Gemeten in de hoek bepaald door de laagdikte." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Overlap Eerste Laag" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Starttemperatuur voor printen" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Binnenwandacceleratie" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder binnenwand" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Snoeihoek bliksemvulling" +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Schok Binnenwand" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "De eindpunten van de vullijnen worden verkort om materiaal te besparen. Deze instelling is de overhanghoek van de eindpunten van deze lijnen." +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Snelheid Binnenwand" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Rechtbuighoek bliksemvulling" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Doorvoer binnenwand(en)" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Lijnbreedte Binnenwand(en)" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Standaard printtemperatuur" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Uitsparing die wordt toegepast in de buitenwand. Als de buitenwand smaller is dan de nozzle en na de binnenwand wordt geprint, gebruikt u deze offset om het gat in de nozzle te laten overlappen met de binnenwanden in plaats van met de buitenkant van het model." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "De standaardtemperatuur waarmee wordt geprint. Dit moet overeenkomen met de basistemperatuur van een materiaal. Voor alle andere printtemperaturen moet een offset worden gebruikt die gebaseerd is op deze waarde" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Van binnen naar buiten" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatuur werkvolume" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Geprefereerde interfacelijnen" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "De omgevingstemperatuur waarin wordt geprint. Als deze waarde is ingesteld op 0, wordt de temperatuur van het werkvolume niet aangepast." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Geprefereerde interface" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Printtemperatuur" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Aantal in elkaar grijpende balklagen" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "De temperatuur waarmee wordt geprint." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breedte in elkaar grijpende balk" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Printtemperatuur van de eerste laag" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "In elkaar grijpende grensvermijding" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "De temperatuur waarmee de eerste laag wordt geprint. Stel deze optie in op 0 om speciale bewerkingen voor de eerste laag uit te schakelen." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "In elkaar grijpende diepte" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Starttemperatuur voor printen" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "In elkaar grijpende structuuroriëntatie" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "De minimale temperatuur tijdens het opwarmen naar de printtemperatuur waarbij met printen kan worden begonnen." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Alleen hoogste laag strijken" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Eindtemperatuur voor printen" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Strijkacceleratie" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "De temperatuur waarnaar alvast kan worden afgekoeld net voordat het printen wordt beëindigd." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Strijkdoorvoer" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Aanpassing Afkoelsnelheid Doorvoer" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Uitsparing strijken" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "De extra snelheid waarmee de nozzle tijdens het doorvoeren afkoelt. Met dezelfde waarde wordt ook de verloren verwarmingssnelheid aangeduid wanneer tijdens het doorvoeren wordt verwarmd." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Schok strijken" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standaardtemperatuur platform" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Tussenruimte strijklijnen" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "De standaardtemperatuur die wordt gebruikt voor het verwarmde platform. Dit moet overeenkomen met de basistemperatuur van een platform. Voor alle andere printtemperaturen moet een offset worden gebruikt die is gebaseerd op deze waarde" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Strijkpatroon" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Platformtemperatuur" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Strijksnelheid" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "De temperatuur van het verwarmde platform. Als de temperatuur is ingesteld op 0, wordt het platform niet verwarmd." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is oorsprongpunt centraal" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Platformtemperatuur voor de eerste laag" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Is support materiaal" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "De temperatuur van het verwarmde platform voor de eerste laag. Als de temperatuur 0 is, wordt het platform bij de eerste laag niet verwarmd." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Hechtingsgevoeligheid" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Hechtingsgevoeligheid van het oppervlak." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Trillen alleen voor de contouren van de onderdelen en niet voor de gaten van de onderdelen." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Oppervlakte-energie" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Onderbroken Oppervlakken Behouden" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oppervlakte-energie." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Laaghoogte" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Schaalfactor krimpcompensatie" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Begin laag X" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Het model wordt met deze factor geschaald ter compensatie van het krimpen van het materiaal tijdens het afkoelen." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Begin laag Y" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Horizontale schaalfactor krimpcompensatie" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in de richting XY (horizontaal)." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "De laagdikte van de middelste laag van de raft." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Verticale schaalfactor krimpcompensatie" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Laagdikte van de bovenste lagen van de raft." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in Z-richting (verticaal)." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Sla elke N millimeter een verbinding tussen de lijnen van de supportstructuur over, zodat deze gemakkelijker kan worden weggebroken." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallijnmateriaal" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Printkop Optillen" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Intrekpositie voor niet-uitlopen" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Bliksem" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Hoe ver het materiaal moet worden ingetrokken voordat het niet meer uitloopt." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Hoek overhang bliksemvulling" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Intreksnelheid voor niet-uitlopen" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Snoeihoek bliksemvulling" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Hoe snel het materiaal moet worden ingetrokken tijdens het wisselen van een filament om uitlopen te voorkomen." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Rechtbuighoek bliksemvulling" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Intrekpositie voor voorbereiding van afbreken" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Hoek supportstructuur bliksemvulling" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Hoe ver het filament kan worden uitgerekt voordat het afbreekt, wanneer het wordt verwarmd." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Takbereik beperken" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Intreksnelheid voor voorbereiding van afbreken" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Beperken hoe ver elke tak moet bewegen vanaf het punt dat het ondersteunt. Dit kan de steun steviger maken, maar zal de hoeveelheid takken vergroten (en daardoor het materiaalgebruik/de printtijd)." -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." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Beperk het volume van dit raster binnen andere rasters. U kunt dit gebruiken om bepaalde delen van een raster met andere instellingen en met een andere extruder te printen." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatuur voor voorbereiding van afbreken" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Beperkt" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "De temperatuur die wordt gebruikt om materiaal te zuiveren, moet ongeveer gelijk zijn aan de hoogst mogelijke printtemperatuur." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Lijnbreedte" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Intrekpositie voor afbreken" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Hoe ver het filament moet worden ingetrokken om het recht af te breken." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Intreksnelheid voor afbreken" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "De snelheid waarmee het filament wordt ingetrokken om het recht af te breken." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatuur voor afbreken" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -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." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Afvoersnelheid flush" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Hoe snel het materiaal moet worden geprimed na het overschakelen op een ander materiaal." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lijnen" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Afvoerduur flush" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het overschakelen op een ander materiaal." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Afvoersnelheid einde van filament" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Machinediepte" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Hoe snel het materiaal moet worden geprimed na het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Machinekop- en ventilatorpolygoon" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Afvoerduur einde van filament" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Machinehoogte" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type Machine" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale parkeerduur" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Machinebreedte" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Hoe lang het materiaal veilig buiten een droge opslagplaats kan worden bewaard." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Verplaatsingsfactor zonder lading" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Overhang Printbaar Maken" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Een factor die aangeeft hoeveel het filament wordt samengedrukt tussen de feeder en de nozzlekamer, om te bepalen hoe ver het materiaal moet worden verplaatst voor het verwisselen van filament." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Laat rasters die elkaar raken deels met elkaar overlappen. Hierdoor hechten ze beter aan elkaar." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Doorvoer" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Maak draagvlakken aan de onderkant kleiner dan bij de overhang." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Maak overal onder het supportraster support zodat er in het supportraster geen overhang is." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wanddoorvoer" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de primepositie van de extruder de absolute positie, in plaats van de relatieve positie ten opzichte van de laatst bekende locatie van de printkop." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Doorvoercompensatie op wandlijnen." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Buitenste wanddoorvoer" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Maak de rasters beter geschikt voor 3D-printen." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Doorvoercompensatie op de buitenste wandlijn." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Doorvoer binnenwand(en)" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Doorvoercompensatie op wandlijnen voor alle wandlijnen behalve de buitenste." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Doorvoer boven/onder" +msgctxt "material description" +msgid "Material" +msgstr "" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Doorvoercompensatie op bovenste/onderste lijn." +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Bovenste oppervlak skindoorvoer" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Materiaal-GUID" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Doorvoercompensatie op lijnen van de gebieden bovenaan de print." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materiaalvolume tussen afvegen" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Doorvoer vulling" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. combing-afstand zonder intrekken" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Doorvoercompensatie op vullijnen." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Acceleratie X" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Doorvoer skirt/brim" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Acceleratie Y" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Doorvoercompensatie op skirt- of brimlijnen." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Acceleratie Z" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Doorvoer support" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maximale vertakkingshoek" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Doorvoercompensatie op de supportstructuurlijnen." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale afwijking" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Doorvoer supportinterface" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale afwijking doorvoergebied" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Doorvoercompensatie op de lijnen van supportdak of de supportvloer." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximale Ventilatorsnelheid" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Doorvoer supportdak" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Filamentacceleratie" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximale Modelhoek" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Doorvoercompensatie op supportdaklijnen." +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximale overhang oppervlak gat" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Doorvoer supportvloer" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale parkeerduur" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Doorvoercompensatie op de supportvloerlijnen." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale resolutie" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Doorvoer Primepijler" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximaal Aantal Intrekbewegingen" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Doorvoercompensatie op primepijlerlijnen." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximale skinhoek voor uitbreiding" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Doorvoer eerste laag" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximale Snelheid E" -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." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximale Snelheid X" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Initiële laag binnenwandstroom" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximale Snelheid Y" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Stroomcompensatie op wandlijnen voor alle wandlijnen behalve de buitenste, maar alleen voor de eerste laag" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximale Snelheid Z" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Initiële laag buitenwandstroom" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximale pijler-ondersteunde diameter" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Stroomcompensatie op de buitenste wandlijn van de eerste laag." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale bewegingsresolutie" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Initiële laag onderste lijn" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "De maximale acceleratie van de motor in de X-richting" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Stroomcompensatie op de onderste lijnen van de eerste laag" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "De maximale acceleratie van de motor in de Y-richting." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Stand-bytemperatuur" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "De maximale acceleratie van de motor in de Z-richting." -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." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "De maximale acceleratie van de motor van het filament." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Is support materiaal" +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 "Maximale dichtheid van de vulling die als dun wordt beschouwd. Skin boven dunne vulling wordt als niet-ondersteund beschouwd en kan dus als een brugskin worden behandeld." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "De maximale diameter in de X- en Y-richting van een kleiner gebied dat moet worden ondersteund door een speciale steunpijler." -msgctxt "speed label" -msgid "Speed" -msgstr "Snelheid" +msgctxt "max_extrusion_before_wipe description" +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 "Maximale materiaalhoeveelheid die kan worden geëxtrudeerd voordat de nozzle opnieuw wordt afgeveegd. Als deze waarde kleiner is dan het benodigde materiaalvolume in een laag, heeft de instelling geen effect op deze laag. Er wordt dan maar een keer per laag afgeveegd." -msgctxt "speed description" -msgid "Speed" -msgstr "Snelheid" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Samengevoegde rasters overlappen" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Printsnelheid" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Modelcorrecties" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "De snelheid waarmee wordt geprint." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Rasterpositie X" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vulsnelheid" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Rasterpositie Y" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "De snelheid waarmee de vulling wordt geprint." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Rasterpositie Z" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandsnelheid" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rasterverwerkingsrang" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "De snelheid waarmee wanden worden geprint." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matrix rasterrotatie" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Snelheid Buitenwand" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Midden" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "De snelheid waarmee de buitenwanden worden geprint. Als u de buitenwand langzamer print, verhoogt u de uiteindelijke kwaliteit van de skin. Een groot verschil tussen de printsnelheid van de binnenwand en de printsnelheid van de buitenwand kan echter een negatief effect hebben op de kwaliteit." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimale matrijsbreedte" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Snelheid Binnenwand" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimale tijd stand-bytemperatuur" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "De snelheid waarmee alle binnenwanden worden geprint. Als u de binnenwand sneller print dan de buitenwand, verkort u de printtijd. Het wordt aangeraden hiervoor een snelheid in te stellen die ligt tussen de printsnelheid van de buitenwand en de vulsnelheid." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimale brugwandlengte" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Snelheid bovenskin" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum lijnbreedte even wand" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "De snelheid waarmee bovenste skinlagen worden geprint." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimaal Afstandsgebied voor Intrekken" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Snelheid Boven-/Onderkant" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum elementgrootte" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "De snelheid waarmee boven-/onderlagen worden geprint." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimale Doorvoersnelheid" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Snelheid Supportstructuur" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Minimale hoogte tot model" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "De snelheid waarmee de supportstructuur wordt geprint. Als u de supportstructuur sneller print, kunt u de printtijd aanzienlijk verkorten. De kwaliteit van het oppervlak van de supportstructuur is niet belangrijk, aangezien deze na het printen wordt verwijderd." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimumgebied vulling" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vulsnelheid Supportstructuur" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimale Laagtijd" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "De snelheid waarmee de supportvulling wordt geprint. Als u de vulling langzamer print, wordt de stabiliteit verbeterd." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum breedte ongelijkmatige wandlijn" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vulsnelheid Verbindingsstructuur" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimale Polygoonomtrek" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "De snelheid waarmee de supportdaken en -vloeren worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Minimale skinbreedte voor uitbreiding" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Snelheid supportdak" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimumsnelheid" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "De snelheid waarmee de supportdaken worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimumgebied supportstructuur" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Snelheid supportvloer" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimumgebied supportvloer" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimumgebied verbindingsstructuur" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "De snelheid waarmee de supportvloer wordt geprint. Als u deze langzamer print, hecht het supportmateriaal beter aan de bovenzijde van het model." +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimumgebied supportdak" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Snelheid Primepijler" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimale X-/Y-afstand Supportstructuur" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "De snelheid waarmee de primepijler wordt geprint. Als u de primepijler langzamer print, wordt deze stabieler. Dit is zinvol wanneer de hechting tussen de verschillende filamenten niet optimaal is." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimumbreedte dunne wandlijn" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegingssnelheid" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Minimaal Volume vóór Coasting" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "De snelheid waarmee bewegingen plaatsvinden." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimumbreedte wandlijn" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Snelheid Eerste Laag" +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 "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren. Heeft geen invloed op de hechtstructuren van het platform zelf, zoals brim en raft." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Minimumgebied voor steunpolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Printsnelheid Eerste Laag" +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 "Minimumgebied voor de supportvloeren. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren." +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 "Minimumgebied voor de supportdaken. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegingssnelheid Eerste Laag" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Minimumdikte van dunne elementen. Modelelementen die dunner zijn dan deze waarde worden niet geprint, terwijl elementen die dikker zijn dan de minimale elementgrootte worden verbreed tot de minimale wandlijnbreedte." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "De snelheid van de bewegingen tijdens het printen van de eerste laag. Hiervoor wordt een lagere waarde aanbevolen om te voorkomen dat eerder geprinte delen van het platform worden getrokken. De waarde van deze instelling kan automatisch worden berekend uit de verhouding tussen de bewegingssnelheid en de printsnelheid." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Minimale breedte waarmee het grondvlak van het kegelvormige supportgebied wordt verkleind. Een geringe breedte kan leiden tot een instabiele supportstructuur." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt-/Brimsnelheid" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Matrijs" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "De snelheid waarmee de skirt en de brim worden geprint. Normaal gebeurt dit met dezelfde snelheid als de snelheid van de eerste laag, maar in sommige situaties wilt u de skirt of de brim mogelijk met een andere snelheid printen." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Matrijshoek" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Snelheid Z-sprong" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dakhoogte matrijs" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "De snelheid waarmee de verticale Z-beweging wordt gemaakt voor Z-sprongen. Dit is meestal lager dan de printsnelheid, omdat het platform of de rijbrug van de machine moeilijker te verplaatsen is." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotone strijkvolgorde" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Aantal Lagen met Lagere Printsnelheid" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotone volgorde bovenlaag" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "De eerste lagen worden minder snel geprint dan de rest van het model, om ervoor te zorgen dat dit zich beter hecht aan het platform en om de kans dat de print slaagt te vergroten. Tijdens het printen van deze lagen wordt de snelheid geleidelijk opgevoerd." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotone volgorde van boven naar beneden" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhouding voor afstemmen doorvoer" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Met meerdere skirtlijnen kunt u de doorvoer beter voorbereiden voor kleine modellen. Met de waarde 0 wordt de skirt uitgeschakeld." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Op doorvoerbreedte gebaseerde correctiefactor voor de snelheid. Op 0% wordt de bewegingssnelheid gelijk gehouden aan de printsnelheid. Op 100% wordt de bewegingssnelheid zo aangepast dat de stroom (in mm³/s) constant is, d.w.z. dat alle lijnen die half zo breed zijn als de normale lijnbreedte, tweemaal zo snel worden geprint en lijnen die twee maal zo breed zijn, half zo snel. Een waarde groter dan 100% kan de hogere druk compenseren die nodig is voor de extrusie van brede lijnen." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Vermenigvuldiging van de lijnbreedte van de eerste laag. Door deze te verhogen kan de hechting aan het bed worden verbeterd." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Acceleratieregulering Inschakelen" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Verplaatsingsfactor zonder lading" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Hiermee stelt u de printkopacceleratie in. Door het verhogen van de acceleratie wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Geen skin in Z-gaten" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Bewegingsacceleratie inschakelen" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Niet-traditionele manieren om uw modellen te printen." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Gebruik een aparte acceleratiesnelheid voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de acceleratiewaarde van de geprinte lijn op de bestemming." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Geen" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Printacceleratie" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Geen" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "De acceleratie tijdens het printen." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normaal" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Vulacceleratie" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normaal" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "De acceleratie tijdens het printen van de vulling." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normaal probeert Cura kleine gaten in het raster te hechten en delen van een laag met grote gaten te verwijderen. Als u deze optie inschakelt, behoudt u de delen die niet kunnen worden gehecht. Deze optie kan als laatste redmiddel worden gebruikt als er geen andere manier meer is om correcte G-code te genereren." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Wandacceleratie" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Niet in skin" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "De acceleratie tijdens het printen van de wanden." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Niet op buitenzijde" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Buitenwandacceleratie" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozzlehoek" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "De acceleratie tijdens het printen van de buitenste wanden." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Binnenwandacceleratie" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Verboden gebieden voor de nozzle" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "De acceleratie tijdens het printen van alle binnenwanden." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Acceleratie bovenskin" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozzlelengte" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "De acceleratie tijdens het printen van de bovenste skinlagen." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Extra primehoeveelheid na wisselen van nozzle" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Acceleratie Boven-/Onderkant" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Primesnelheid bij Wisselen Nozzles" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Intrekkingssnelheid bij Wisselen Nozzles" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Acceleratie Supportstructuur" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Intrekafstand bij Wisselen Nozzles" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "De acceleratie tijdens het printen van de supportstructuur." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Intreksnelheid bij Wisselen Nozzles" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Acceleratie Supportvulling" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Aantal extruders" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "De acceleratie tijdens het printen van de supportvulling." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Aantal ingeschakelde extruders" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Acceleratie Verbindingsstructuur" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Aantal Lagen met Lagere Printsnelheid" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "De acceleratie tijdens het printen van de supportdaken en -vloeren. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Het aantal extruder trains dat ingeschakeld is; automatisch ingesteld in de software" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Acceleratie supportdak" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Aantal extruder trains. Een extruder train is de combinatie van een feeder, Bowden-buis en nozzle." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "De acceleratie tijdens het printen van de supportdaken. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Aantal keren dat de nozzle over de borstel beweegt." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Acceleratie supportvloer" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Het aantal keren dat de vuldichtheid wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid vulling." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "De acceleratie tijdens het printen van de supportvloeren. Als u deze met een lagere acceleratie print, hecht het supportmateriaal beter aan de bovenzijde van het model." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Het aantal keren dat de dichtheid van de supportvulling wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid supportvulling." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Acceleratie Primepijler" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "De acceleratie tijdens het printen van de primepijler." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Uit" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Bewegingsacceleratie" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "De offset die in de X-richting wordt toegepast op het object." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "De offset die in de Y-richting wordt toegepast op het object." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Acceleratie Eerste Laag" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "De offset die wordt toegepast op het object in de z-richting. Hiermee kunt u de taak uitvoeren die voorheen 'Object Sink' werd genoemd." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "De acceleratie voor de eerste laag." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset met extruder" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Printacceleratie Eerste Laag" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Op bouwplaat indien mogelijk" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "De acceleratie tijdens het printen van de eerste laag." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Op model indien nodig" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Bewegingsacceleratie Eerste Laag" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Eén voor Eén" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Voer alleen een Z-sprong uit bij bewegingen over geprinte delen die niet kunnen worden vermeden met Geprinte Delen Mijden Tijdens Bewegingen." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Acceleratie Skirt/Brim" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Strijk alleen de allerlaatste laag van het voorwerp. Dit bespaart tijd als de daaronder gelegen lagen geen glad oppervlak vereisen." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "De acceleratie tijdens het printen van de skirt en de brim. Normaal gebeurt dit met dezelfde acceleratie als die van de eerste laag, maar in sommige situaties wilt u de skirt of de brim wellicht met een andere acceleratie printen." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Schokregulering Inschakelen" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Hoek Uitloopscherm" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Hiermee stelt u de schok van de printkop in wanneer de snelheid in de X- of Y-as verandert. Door het verhogen van de schok wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Afstand Uitloopscherm" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Bewegingsschok inschakelen" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimaal vertakkingsbereik" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Gebruik een apart schokpercentage voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de schokwaarde van de geprinte lijn op de bestemming." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Printvolgorde van wanden optimaliseren" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Printschok" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimaliseer de volgorde waarin wanden worden geprint om het aantal intrekbewegingen en de afgelegde afstand te verkleinen. Deze instelling is gunstig voor de meeste onderdelen. Bij sommige onderdelen duurt het printen echter langer. Controleer daarom de verwachte printtijd met en zonder optimalisatie. De eerste laag wordt niet geoptimaliseerd als u brim kiest als hechting aan platform." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Buitendiameter nozzle" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Vulschok" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Buitenwandacceleratie" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de vulling." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder buitenwand" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Wandschok" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Buitenste wanddoorvoer" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de wanden." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Uitsparing Buitenwand" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Schok Buitenwand" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de buitenwanden." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Lijnbreedte Buitenwand" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Schok Binnenwand" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Snelheid Buitenwand" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van alle binnenwanden." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Veegafstand buitenwand" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Schok bovenskin" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de bovenste skinlagen." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Van buiten naar binnen" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Schok Boven-/Onderkant" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Hoek Overhangende Wand" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de boven-/onderlagen." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Snelheid Overhangende Wand" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Schok Supportstructuur" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Overhangende wanden worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportstructuur." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pauzeren na het ongedaan maken van intrekken." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Schok Supportvulling" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Percentage ventilatorsnelheid tijdens het printen van brugwanden en -skin." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvulling." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Percentage ventilatorsnelheid tijdens het printen van de tweede brugskinlaag." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Schok Verbindingsstructuur" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Percentage van de ventilatorsnelheid dat tijdens het printen van skinregio's direct boven de supportstructuur moet worden gebruikt. Bij gebruikmaking van een hoge ventilatorsnelheid kan de supportstructuur gemakkelijker worden verwijderd." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken en -vloeren." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Percentage ventilatorsnelheid tijdens het printen van de derde brugskinlaag." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Schok supportdak" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polygonen in geslicete lagen, die een kleinere omtrek hebben dan deze waarde, worden eruit gefilterd. Bij lagere waarden krijgt het raster een hogere resolutie, waardoor het slicen langer duurt. Dit is voornamelijk bedoeld voor SLA-printers met een hoge resolutie en zeer kleine 3D-modellen die veel details bevatten." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Geprefereerde vertakkingshoek" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Voorkom herhaaldelijke overgangen tussen een wand meer en een wand minder. Deze marge vergroot het aantal lijnbreedtes dat volgt op [minimumbreedte wandlijn - marge, 2 * minimumbreedte wandlijn + marge]. Door de marge te vergroten reduceert u het aantal overgangen, wat weer het aantal doorvoerstarts/-stops en de tijd van de beweging reduceert. Een grote variatie in lijnbreedtes kan echter wel leiden tot problemen met te geringe of te hoge extrusie." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Acceleratie Primepijler" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken." +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Schok supportvloer" +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvloeren." +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Doorvoer Primepijler" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "Schok Primepijler" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de primepijler." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Bewegingsschok" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het uitvoeren van bewegingen." +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Lijnbreedte Primepijler" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Schok Eerste Laag" +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Minimumvolume primepijler" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "De maximale onmiddellijke snelheidsverandering in de eerste laag." +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Printschok Eerste Laag" +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Formaat Primepijler" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de eerste laag." +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Snelheid Primepijler" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Bewegingsschok Eerste Laag" +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-positie Primepijler" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-positie Primepijler" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Schok Skirt/Brim" +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de skirt en de brim." +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Printacceleratie" -msgctxt "travel label" -msgid "Travel" -msgstr "Beweging" +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Printschok" -msgctxt "travel description" -msgid "travel" -msgstr "beweging" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Printvolgorde" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Intrekken Inschakelen" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Printsnelheid" -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." +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Dunne wanden printen" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Intrekken bij laagwisseling" +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." -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." +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Print alleen vulstructuren waarvan de bovenkant van het model moet worden ondersteund. Hiermee reduceert u de printtijd en het materiaalgebruik. Dit kan echter leiden tot een niet gelijkmatige objectsterkte." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Intrekafstand" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print strijklijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." -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." +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Print modellen als matrijs, die vervolgens kan worden gegoten om een model te krijgen dat lijkt op de modellen op het platform." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Intreksnelheid" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Print delen van het model die horizontaal dunner zijn dan de maat van de nozzle." -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." +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Printsnelheid tijdens het printen van de tweede brugskinlaag." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Intreksnelheid (Intrekken)" +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Printsnelheid tijdens het printen van de derde brugskinlaag." -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." +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Print de vulling voordat de wanden worden geprint. Wanneer u eerst de wanden print, worden deze nauwkeuriger geprint, maar wordt de overhang mogelijk van mindere kwaliteit. Wanneer u eerst de vulling print, worden de wanden steviger, maar schijnt het vulpatroon mogelijk door." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Intreksnelheid (Primen)" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print de lijnen van de bovenlaag in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." -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." +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print boven- en onderlijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Extra Primehoeveelheid na Intrekken" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Printtemperatuur" -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." +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Printtemperatuur van de eerste laag" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimale Afstand voor Intrekken" +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Het printen van de binnenste skirt-lijn met meerdere lagen maakt het gemakkelijk om de skirt te verwijderen." -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." +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Print op afwisselende lagen een extra wand. Op deze manier wordt vulling tussen deze extra wanden gevangen, wat leidt tot sterkere prints." -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximaal Aantal Intrekbewegingen" +msgctxt "resolution label" +msgid "Quality" +msgstr "Kwaliteit" -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." +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Afgeknotte kubus" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimaal Afstandsgebied voor Intrekken" +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -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." +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luchtruimte Raft" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-modus" +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft basisextruder" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen of combing alleen binnen de vulling te gebruiken." +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Ventilatorsnelheid Grondlaag Raft" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Uit" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Tussenruimte Lijnen Grondvlak Raft" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alles" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Lijnbreedte Grondvlak Raft" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Niet op buitenzijde" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Printacceleratie Grondvlak Raft" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Niet in skin" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Printschok Grondvlak Raft" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Binnen Vulling" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Printsnelheid Grondvlak Raft" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. combing-afstand zonder intrekken" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dikte Grondvlak Raft" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats." +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Aantal wanden grondvlak raft" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Intrekken voor buitenwand" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Extra Marge Raft" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Altijd intrekken voordat wordt bewogen om met een buitenwand te beginnen." +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Ventilatorsnelheid Raft" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Geprinte delen mijden tijdens bewegingen" +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft middelste extruder" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Tijdens bewegingen mijdt de nozzle delen die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Ventilatorsnelheid Midden Raft" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Supportstructuren mijden tijdens bewegingen" +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft middelste lagen" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Tijdens bewegingen mijdt de nozzle supportstructuren die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Lijnbreedte Midden Raft" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Mijdafstand Tijdens Bewegingen" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Printacceleratie Midden Raft" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "De afstand tussen de nozzle en geprinte delen wanneer deze tijdens bewegingen worden gemeden." +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Printschok Midden Raft" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Begin laag X" +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Printsnelheid Midden Raft" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "De X-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Tussenruimte Midden Raft" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Begin laag Y" +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Lijndikte Midden Raft" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "De Y-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Printacceleratie Raft" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-sprong wanneer ingetrokken" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Printschok Raft" -msgctxt "retraction_hop_enabled 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 "raft_speed label" +msgid "Raft Print Speed" +msgstr "Printsnelheid Raft" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-sprong Alleen over Geprinte Delen" +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft effenen" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Voer alleen een Z-sprong uit bij bewegingen over geprinte delen die niet kunnen worden vermeden met Geprinte Delen Mijden Tijdens Bewegingen." +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft bovenste extruder" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hoogte Z-sprong" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Ventilatorsnelheid Bovenkant Raft" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dikte Bovenlaag Raft" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-sprong na Wisselen Extruder" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Bovenlagen Raft" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Nadat de machine van de ene extruder naar de andere is gewisseld, wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle doorgevoerd materiaal achterlaat op de buitenzijde van een print." +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Breedte Bovenste Lijn Raft" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Hoogte Z-sprong na wisselen extruder" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Printacceleratie Bovenkant Raft" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong na wisselen extruder." +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Printschok Bovenkant Raft" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Koelen" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Printsnelheid Bovenkant Raft" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Koelen" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Bovenruimte Raft" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Koelen van de Print Inschakelen" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Willekeurig" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Hiermee schakelt u de printkoelventilatoren in tijdens het printen. De ventilatoren verbeteren de printkwaliteit van lagen met een korte laagtijd en brugvorming/overhang." +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Start willekeurig invullen" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Ventilatorsnelheid" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Bepaal willekeurig welke invullijn het eerst wordt geprint. Dit voorkomt dat één segment het sterkst wordt, maar gaat ten koste van een extra beweging." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "De snelheid waarmee de printventilatoren draaien." +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." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechthoekig" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Normale Ventilatorsnelheid" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "De snelheid waarmee de ventilatoren draaien voordat de drempelwaarde wordt bereikt. Wanneer een laag sneller wordt geprint dan de drempelwaarde, wordt de ventilatorsnelheid geleidelijk verhoogd tot de maximale ventilatorsnelheid." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximale Ventilatorsnelheid" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normale Ventilatorsnelheid op Hoogte" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "De snelheid waarmee de ventilatoren draaien bij de minimale laagtijd. Wanneer de drempelwaarde wordt bereikt, wordt de ventilatorsnelheid geleidelijk verhoogd van de normale ventilatorsnelheid naar de maximale ventilatorsnelheid." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normale Ventilatorsnelheid op Laag" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Drempelwaarde Normale/Maximale Ventilatorsnelheid" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "De laagtijd waarmee de drempelwaarde tussen de normale ventilatorsnelheid en de maximale ventilatorsnelheid wordt ingesteld. Voor lagen die langzamer worden geprint, draaien de ventilatoren op normale snelheid. Bij lagen die sneller worden geprint, draaien de ventilatoren op maximale snelheid." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relatieve Extrusie" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Startsnelheid ventilator" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Gaten Verwijderen" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "De snelheid waarmee de ventilatoren draaien bij de start van het printen. Tijdens het printen van de volgende lagen wordt de ventilatorsnelheid geleidelijk verhoogd tot de laag waarin de snelheid overeenkomt met de normale ventilatorsnelheid op hoogte." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Lege eerste lagen verwijderen" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normale Ventilatorsnelheid op Hoogte" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rastersnijpunt verwijderen" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "De hoogte waarop de ventilatoren op normale snelheid draaien. Tijdens het printen van de onderliggende lagen wordt de ventilatorsnelheid geleidelijk verhoogd van de startsnelheid ventilator naar de normale ventilatorsnelheid." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Binnenhoeken raft verwijderen" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Hiermee verwijdert u gebieden waar meerdere rasters elkaar overlappen. Deze functie kan worden gebruikt als samengevoegde objecten van twee materialen elkaar overlappen." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Hiermee worden de lege lagen onder de eerste geprinte laag verwijderd, indien aanwezig. Als u deze instelling uitschakelt, kunnen lege eerste lagen ontstaan als de Slicetolerantie is ingesteld op Exclusief of Midden." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Verwijder de gaten in elke laag en behoudt u alleen de buitenvorm. Hiermee negeert u eventuele onzichtbare interne geometrie. U negeert echter ook gaten in lagen die u van boven- of onderaf kunt zien." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Vervang het buitenste gedeelte van het patroon boven-/onderkant door een aantal concentrische lijnen. Het gebruik van 1 of 2 lijnen verbetert daken die op vulmateriaal beginnen." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Plaatsings voorkeur" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normale Ventilatorsnelheid op Laag" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Intrekken voor buitenwand" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "De laag waarop de ventilatoren op normale snelheid draaien. Als de normale ventilatorsnelheid op hoogte ingeschakeld is, wordt deze waarde berekend en op een geheel getal afgerond." +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Intrekken bij laagwisseling" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimale Laagtijd" +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." -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "De tijd die minimaal aan het printen van een laag wordt besteed. Hierdoor wordt de printer gedwongen langzamer te printen zodat deze ten minste de ingestelde tijd gebruikt voor het printen van een laag. Hierdoor kan het geprinte materiaal voldoende afkoelen voordat de volgende laag wordt geprint. Het printen van lagen kan nog steeds minder lang duren dan de minimale laagtijd als Printkop optillen is uitgeschakeld en als anders niet zou worden voldaan aan de Minimumsnelheid." +msgctxt "wipe_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." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimumsnelheid" +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." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "De minimale printsnelheid die wordt aangehouden ondanks vertragen vanwege de minimale laagtijd. Als de printer te zeer vertraagt, wordt de druk in de nozzle te laag, wat leidt tot slechte printkwaliteit." +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Intrekafstand" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Printkop Optillen" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Extra Primehoeveelheid na Intrekken" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Wanneer de minimale snelheid wordt bereikt vanwege de minimale laagtijd, wordt de printkop van de print verwijderd totdat de minimale laagtijd bereikt is." +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimale Afstand voor Intrekken" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Printtemperatuur van de kleine laag" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Intreksnelheid (Primen)" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Verlaag geleidelijk naar deze temperatuur bij het printen met lagere snelheden vanwege de minimale laagtijd." +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Intreksnelheid (Intrekken)" -msgctxt "support label" -msgid "Support" -msgstr "Supportstructuur" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Intreksnelheid" -msgctxt "support description" -msgid "Support" -msgstr "Supportstructuur" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Support genereren" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Zet de ventilatorsnelheid op 0-1" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Zet de ventilatorsnelheid op een waarde tussen 0 en 1 in plaats van tussen 0 en 256." -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder Supportstructuur" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Schaalfactor krimpcompensatie" -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Scène heeft supportrasters" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder Supportvulling" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Voorkeur van naad en hoek" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Stel de hoogte van het tochtscherm in. U kunt ervoor kiezen een tochtscherm met dezelfde hoogte als het model of lager te printen." -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder Eerste Laag van Support" +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Instellingen die alleen worden gebruikt als CuraEngine niet wordt aangeroepen door de Cura-frontend." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder Verbindingsstructuur" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Initiële terugtrekking gedeelde nozzle" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de daken en vloeren van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Scherpste hoek" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder supportdak" +msgctxt "shell description" +msgid "Shell" +msgstr "Shell" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportdaken. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kortste" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder supportvloer" +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Machinevarianten tonen" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportvloeren. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Lagen skinrandondersteuning" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Supportstructuur" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Dikte skinrandondersteuning" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creëert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creëert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Uitbreidingsafstand van skin" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normaal" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Overlap Skin" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Boom" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Overlappercentage Skin" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maximale vertakkingshoek" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Verwijderingsbreedte skin" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "De maximale hoek van de takken terwijl ze rond het model groeien. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek om meer bereik te hebben." +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." -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Takdiameter" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Sla elke N verbindingslijnen één lijn over zodat de supportstructuur gemakkelijker kan worden weggebroken." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Hiermee stelt u de diameter in van de dunste takken van de boomsupportstructuur. Dikkere takken zijn steviger. Takken die dichter bij de stam liggen, zijn dikker dan dit." +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Sla enkele verbindingen tussen lijnen van de supportstructuur over zodat deze gemakkelijker kan worden weggebroken. Deze instelling is van toepassing op het zigzag-vulpatroon van de supportstructuur." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Stamdiameter" +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "De diameter van de breedste takken van de boomondersteuning. Een dikkere tak is steviger; een dunnere tak neemt minder ruimte in beslag op het platform." +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirtafstand" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Hoek takdiameter" +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Hoogte Skirt" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "De hoek van de diameter van de takken terwijl ze naar beneden toe geleidelijk dikker worden. Met de hoekinstelling 0 zijn de takken over de gehele lengte even dik. Een kleine hoek verbetert de stabiliteit van de boomsupportstructuur." +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Aantal Skirtlijnen" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Plaatsing Supportstructuur" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Acceleratie Skirt/Brim" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Platform Aanraken" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extruder Skirt/Brim" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Overal" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Doorvoer skirt/brim" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Geprefereerde vertakkingshoek" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Schok Skirt/Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Lijnbreedte Skirt/Brim" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "De geprefereerde hoek van de takken, wanneer ze het model niet hoeven te vermijden. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek voor takken om sneller samen te voegen." +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimale Skirt-/Brimlengte" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Diameterverhoging naar model" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt-/Brimsnelheid" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "De diameter van een tak die moet aansluiten op het model mag maximaal toenemen door samen te voegen met takken die de bouwplaat zouden kunnen bereiken. Als u dit verhoogt, wordt de printtijd verkort, maar wordt het ondersteuningsgebied dat op het model rust vergroot" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicetolerantie" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Minimale hoogte tot model" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Kleine kenmerken eerste laagsnelheid" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Hoe groot moet een tak zijn als deze op het model wordt geplaatst. Voorkomt kleine ondersteunende blobs. Deze instelling wordt genegeerd wanneer een tak een ondersteunend dak ondersteunt." +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maximale lengte klein kenmerk" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diameter beginlaag" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Klein kenmerksnelheid" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diameter elke tak probeert te bereiken bij het bereiken van de bouwplaat. Verbetert de hechting van het bed." +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maximale grootte kleine gaten" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Takdichtheid" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Printtemperatuur van de kleine laag" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Hiermee past u de dichtheid aan van de ondersteunende structuur die wordt gebruikt om de tips van de takken te genereren. Een hogere waarde resulteert in een betere overhang, maar de ondersteuning is moeilijker te verwijderen. Gebruik ondersteunend dak voor zeer hoge waarden of zorg ervoor dat de ondersteuningsdichtheid aan de bovenkant even hoog is." +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Kleine bovenkant/onderkant op oppervlak" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Puntdiameter" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Kleine breedte boven/onderzijde" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "De diameter van de bovenkant van de punt van de takken van de boomsteun." +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." -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Takbereik beperken" +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." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Beperken hoe ver elke tak moet bewegen vanaf het punt dat het ondersteunt. Dit kan de steun steviger maken, maar zal de hoeveelheid takken vergroten (en daardoor het materiaalgebruik/de printtijd)." +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Kleine boven-/ondergebieden worden gevuld met muren in plaats van het standaard boven-/onderpatroon. Dit helpt om schokkerige bewegingen te voorkomen. Standaard uit voor de bovenste (aan lucht blootgestelde) laag (zie 'Kleine boven-/onderkant op oppervlak')." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimaal vertakkingsbereik" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Slimme Brim" -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Een aanbeveling over hoe ver takken kunnen bewegen van de punten die ze ondersteunen. Takken kunnen deze waarde overschrijden om hun bestemming te bereiken (bouwplaat of een plat deel van het model). Als u deze waarde verlaagt, wordt de ondersteuning steviger, maar neemt het aantal takken toe (en daardoor materiaalgebruik/printtijd)." +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Slim verbergen" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Plaatsings voorkeur" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Gespiraliseerde contouren effenen" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "De voorkeursplaats van de ondersteunende structuren. Als structuren niet op de gewenste locatie kunnen worden geplaatst, worden ze elders geplaatst, zelfs als dat betekent dat ze op het model moeten worden geplaatst." +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Maak de gespiraliseerde contouren vlak om de zichtbaarheid van de Z-naad te verminderen (de Z-naad mag in de print nauwelijks zichtbaar zijn, maar is nog wel zichtbaar in de laagweergave). Houd er rekening mee dat fijne oppervlaktedetails worden vervaagd door het effenen." -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Op bouwplaat indien mogelijk" +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." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Op model indien nodig" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Tijdens veegbewegingen kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Overhanghoek Supportstructuur" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Speciale Modi" -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "De minimale overhanghoek waarbij een supportstructuur wordt toegevoegd. Bij een waarde van 0° wordt elke overhang ondersteund. Bij 90° wordt er geen supportstructuur geprint." +msgctxt "speed description" +msgid "Speed" +msgstr "Snelheid" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patroon Supportstructuur" +msgctxt "speed label" +msgid "Speed" +msgstr "Snelheid" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Het patroon van de supportstructuur van de print. Met de verschillende beschikbare opties print u stevige of eenvoudig te verwijderen supportstructuren." +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Snelheid waarmee de Z-as wordt verplaatst tijdens de sprong." -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Buitencontour Spiraliseren" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Met spiraliseren wordt de Z-beweging van de buitenrand vloeiender. Hierdoor ontstaat een geleidelijke Z-verhoging over de hele print. Met deze functie maakt u van een massief model een enkelwandige print met een solide bodem. Deze functie dient alleen te worden ingeschakeld wanneer elke laag uit een enkel deel bestaat." -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Stand-bytemperatuur" -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-code" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Het startpunt voor elk pad in een laag. Wanneer paden in opeenvolgende lagen op hetzelfde punt beginnen, kan in de print een verticale naad zichtbaar zijn. De naad is het eenvoudigst te verwijderen wanneer deze zich nabij een door de gebruiker opgegeven locatie van de print bevindt. De onnauwkeurigheden vallen minder op wanneer het pad steeds op een willekeurige plek begint. De print is sneller af wanneer het kortste pad wordt gekozen." -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Kruis" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Stappen per millimeter (E)" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Stappen per millimeter (X)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Aantal wandlijnen supportstructuur" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Stappen per millimeter (Y)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt." +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Stappen per millimeter (Z)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Ondersteuning Interface Wandlijn" +msgctxt "support description" +msgid "Support" +msgstr "Supportstructuur" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee de ondersteuningsinterface moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." +msgctxt "support label" +msgid "Support" +msgstr "Supportstructuur" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Aantal wandlijnen ondersteuningsdak" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Acceleratie Supportstructuur" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee het ondersteuningsinterfacedak kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Afstand van Onderkant Supportstructuur" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Aantal wandlijnen van de ondersteuningsbodem" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee de ondersteuningsinterfacevloer moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Aantal supportbrimlijnen" -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Supportstructuurlijnen verbinden" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breedte supportbrim" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Verbind de uiteinden van de supportstructuurlijnen met elkaar. Als u deze instelling inschakelt, maakt u de supportstructuur robuuster en vermindert u onderextrusie. Er wordt echter meer materiaal verbruikt." +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Aantal Lijnen Supportstuk" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zigzaglijnen Supportstructuur Verbinden" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Grootte Supportstuk" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Verbind de zigzaglijnen. Hiermee versterkt u de zigzag-supportstructuur." +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichtheid Supportstructuur" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioriteit Afstand Supportstructuur" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder Supportstructuur" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Acceleratie supportvloer" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichtheid Supportstructuur" +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichtheid supportvloer" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Past de dichtheid van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder supportvloer" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Lijnafstand Supportstructuur" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Doorvoer supportvloer" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze instelling wordt berekend op basis van de dichtheid van de supportstructuur." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Supportvloer horizontale uitbreiding" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Lijnafstand Supportstructuur Eerste Laag" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Schok supportvloer" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Afstand tussen de lijnen van de supportstructuur voor de eerste laag. Deze wordt berekend op basis van de dichtheid van de supportstructuur." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Lijnrichting supportvloer" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Lijnrichting Vulling Supportstructuur" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Lijnafstand supportvloer" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoek van 0 graden wordt gebruikt." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Lijnbreedte supportvloer" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Supportbrim inschakelen" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patroon supportvloer" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genereer een brim binnen de supportvulgebieden van de eerste laag. Deze brim wordt niet rondom maar onder de supportstructuur geprint. Als u deze instelling inschakelt, hecht de supportstructuur beter aan het platform." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Snelheid supportvloer" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breedte supportbrim" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dikte supportvloer" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "De breedte van de brim die onder de support wordt geprint. Een bredere brim kost meer materiaal, maar hecht beter aan het platform." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Doorvoer support" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Aantal supportbrimlijnen" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Uitzetting Supportstructuur" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Het aantal lijnen dat voor de supportbrim wordt gebruikt. Meer brimlijnen zorgen voor betere hechting aan het platform, maar kosten wat extra materiaal." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Acceleratie Supportvulling" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-afstand Supportstructuur" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder Supportvulling" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "De afstand tussen de boven-/onderkant van de supportstructuur en de print. Deze afstand zorgt ervoor dat de supportstructuren na het printen van het model kunnen worden verwijderd. De waarde wordt naar boven afgerond op een veelvoud van de laaghoogte." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Schok Supportvulling" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Afstand van Bovenkant Supportstructuur" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Dikte vullaag supportvulling" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "De afstand van de bovenkant van de supportstructuur tot de print." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Lijnrichting Vulling Supportstructuur" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Afstand van Onderkant Supportstructuur" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vulsnelheid Supportstructuur" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "De afstand van de print tot de onderkant van de supportstructuur." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Acceleratie Verbindingsstructuur" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X-/Y-afstand Supportstructuur" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichtheid Verbindingsstructuur" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Afstand tussen de supportstructuur en de print, in de X- en Y-richting." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder Verbindingsstructuur" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioriteit Afstand Supportstructuur" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Doorvoer supportinterface" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Hiermee bepaalt u of de optie X-/Y-afstand supportstructuur voorrang krijgt boven de optie Z-afstand supportstructuur of vice versa. Wanneer X/Y voorrang krijgt boven Z, kan de X-/Y-afstand de supportstructuur wegduwen van het model, waardoor de daadwerkelijke Z-afstand tot de overhang wordt beïnvloed. Dit kan worden uitgeschakeld door de X-/Y-afstand niet toe te passen rond een overhang." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Supportstructuur horizontale uitbreiding" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y krijgt voorrang boven Z" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Schok Verbindingsstructuur" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z krijgt voorrang boven X/Y" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Lijnrichting interface supportstructuur" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimale X-/Y-afstand Supportstructuur" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Lijnbreedte Verbindingsstructuur" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Afstand tussen de supportstructuur en de overhang in de X- en Y-richting." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patroon Verbindingsstructuur" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Hoogte Traptreden Supportstructuur" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Ondersteuning Interface Prioriteit" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "De hoogte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden. Stel deze waarde in op nul om het trapvormige gedrag uit te schakelen." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolutie Verbindingsstructuur" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Maximale breedte traptreden supportstructuur" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vulsnelheid Verbindingsstructuur" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "De maximale breedte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dikte Verbindingsstructuur" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Minimale hellingshoek traptreden supportstructuur" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Ondersteuning Interface Wandlijn" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "De minimale helling van het gebied voordat traptreden van kracht worden. Lage waarden zouden het gemakkelijker moeten maken om support op ondieperere hellingen te verwijderen. Zeer lage waarden kunnen echter resulteren in een aantal zeer contra-intuïtieve resultaten op andere delen van het model." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Schok Supportstructuur" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Samenvoegafstand Supportstructuur" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "De maximale afstand tussen de supportstructuren in de X- en Y-richting. Wanneer afzonderlijke structuren dichter bij elkaar staan dan deze waarde, worden deze samengevoegd tot één structuur." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Uitzetting Supportstructuur" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "De mate van offset die wordt toegepast op alle steunpolygonen in elke laag. Met positieve waarden kunt u de draagvlakken effenen en krijgt u een stevigere supportstructuur." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Dikte vullaag supportvulling" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Lijnafstand Supportstructuur" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "De dikte per laag materiaal supportvulling. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Lijnbreedte Supportstructuur" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Geleidelijke supportvulling traptreden" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supportstructuur raster" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Het aantal keren dat de dichtheid van de supportvulling wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid supportvulling." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Overhanghoek Supportstructuur" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Geleidelijke supportvulling hoogte traptreden" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patroon Supportstructuur" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "De hoogte van de supportvulling van een bepaalde dichtheid voordat de dichtheid wordt gehalveerd." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Plaatsing Supportstructuur" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimumgebied supportstructuur" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Acceleratie supportdak" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Minimumgebied voor steunpolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichtheid supportdak" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Verbindingsstructuur Inschakelen" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder supportdak" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Hiermee maakt u een dichte verbindingsstructuur tussen het model en de supportstructuur. Er wordt een skin gemaakt aan de bovenkant van de supportstructuur waarop het model wordt geprint en op de bodem van de supportstructuur waar dit op het model rust." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Doorvoer supportdak" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Supportdak inschakelen" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Supportdak horizontale uitbreiding" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genereer een dichte materiaallaag tussen de bovenzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Schok supportdak" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Supportvloer inschakelen" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Lijnrichting supportdak" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genereer een dichte materiaallaag tussen de onderzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Lijnafstand supportdak" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dikte Verbindingsstructuur" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Lijnbreedte supportdak" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "De dikte van de verbindingsstructuur waar dit het model aan de onder- of bovenkant raakt." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patroon supportdak" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Snelheid supportdak" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Dikte Supportdak" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "De dikte van de supportdaken. Hiermee wordt het aantal dichte lagen bepaald aan de bovenkant van de supportstructuur waarop het model rust." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Aantal wandlijnen ondersteuningsdak" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dikte supportvloer" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Snelheid Supportstructuur" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "De dikte van de supportvloeren. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Hoogte Traptreden Supportstructuur" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolutie Verbindingsstructuur" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Maximale breedte traptreden supportstructuur" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Minimale hellingshoek traptreden supportstructuur" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Dichtheid Verbindingsstructuur" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Supportstructuur" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Past de dichtheid van de daken en vloeren van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Afstand van Bovenkant Supportstructuur" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichtheid supportdak" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Aantal wandlijnen supportstructuur" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "De dichtheid van de daken van de supportstructuur. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X-/Y-afstand Supportstructuur" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Lijnafstand supportdak" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-afstand Supportstructuur" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "De afstand tussen de geprinte lijnen van het supportdak. Deze instelling wordt berekend op basis van de dichtheid van het supportdak, maar kan onafhankelijk worden aangepast." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Geprefereerde ondersteuningslijnen" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichtheid supportvloer" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Geprefereerde ondersteuning" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "De dichtheid van de vloeren van de supportstructuur. Met een hogere waarde hecht het supportmateriaal beter aan de bovenzijde van het model." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Ondersteunde Ventilatorsnelheid Skin" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Lijnafstand supportvloer" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oppervlak" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "De afstand tussen de geprinte lijnen van de supportvloer. Deze instelling wordt berekend op basis van de dichtheid van de supportvloer, maar kan onafhankelijk worden aangepast." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oppervlakte-energie" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patroon Verbindingsstructuur" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oppervlaktemodus" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Het patroon waarmee de verbindingsstructuur van het model wordt geprint." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Hechtingsgevoeligheid van het oppervlak." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oppervlakte-energie." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Verwissel de printvolgorde van de binnenste en de op een na binnenste randlijn. Dit verbetert het verwijderen van de rand." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Schakel naar de rastersnijpuntvolumes die bij elke laag horen, zodat de overlappende rasters worden verweven. Als u deze instelling uitschakelt, krijgt een van de rasters al het volume in de overlap, terwijl dit uit de andere rasters wordt verwijderd." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +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." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "De X-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patroon supportdak" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "De X-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Het patroon waarmee de daken van de supportstructuur worden geprint." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "De Y-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "De Y-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "De acceleratie tijdens het printen van de eerste laag." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "De acceleratie voor de eerste laag." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "De acceleratie tijdens het printen van alle binnenwanden." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "De acceleratie tijdens het printen van de vulling." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "De acceleratie tijdens het strijken." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patroon supportvloer" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "De acceleratie tijdens het printen." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Het patroon waarmee de vloeren van de supportstructuur worden geprint." +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "De acceleratie tijdens het printen van de supportvloeren. Als u deze met een lagere acceleratie print, hecht het supportmateriaal beter aan de bovenzijde van het model." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Raster" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "De acceleratie tijdens het printen van de supportvulling." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "De acceleratie tijdens het printen van de middelste laag van de raft." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "De acceleratie tijdens het printen van de buitenste wanden." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "De acceleratie tijdens het printen van de primepijler." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimumgebied verbindingsstructuur" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "De acceleratie tijdens het printen van de raft." -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 "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "De acceleratie tijdens het printen van de supportdaken en -vloeren. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimumgebied supportdak" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "De acceleratie tijdens het printen van de supportdaken. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." -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 "Minimumgebied voor de supportdaken. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "De acceleratie tijdens het printen van de skirt en de brim. Normaal gebeurt dit met dezelfde acceleratie als die van de eerste laag, maar in sommige situaties wilt u de skirt of de brim wellicht met een andere acceleratie printen." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimumgebied supportvloer" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "De acceleratie tijdens het printen van de supportstructuur." -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 "Minimumgebied voor de supportvloeren. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "De acceleratie tijdens het printen van de toplagen van de raft." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Supportstructuur horizontale uitbreiding" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "De mate van offset die wordt toegepast op de verbindingspolygonen." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Supportdak horizontale uitbreiding" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "De acceleratie tijdens het printen van de wanden." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "De mate van offset die wordt toegepast op de supportdaken." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "De acceleratie tijdens het printen van de bovenste skinlagen." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Supportvloer horizontale uitbreiding" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "De mate van offset die wordt toegepast op de supportvloeren." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Ondersteuning Interface Prioriteit" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "De hoeveelheid materiaal, in verhouding tot een normale skinlijn, die tijdens het strijken moet worden doorgevoerd. Als de nozzle gevuld blijft, kunnen scheuren in de bovenlaag worden gevuld. Te hoge doorvoer leidt echter tot uitstulpingen aan de zijkant van het oppervlak." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Hoe ondersteuningsinterface en ondersteuning op elkaar inwerken wanneer ze elkaar overlappen. Momenteel alleen geïmplementeerd voor ondersteunend dak." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De mate van overlap tussen de vulling en de wanden als percentage van de lijnbreedte van de vulling. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Geprefereerde ondersteuning" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De mate van overlap tussen de vulling en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Geprefereerde interface" +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." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Geprefereerde ondersteuningslijnen" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "De hoek tussen het horizontale vlak en het conische gedeelte boven de punt van de nozzle." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Geprefereerde interfacelijnen" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "De hoek van een dak van een pijler. Een hogere waarde zorgt voor een spits pijlerdak, een lagere waarde zorgt voor een plat pijlerdak." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Beide overlappen" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "De hoek van de overhang van de buitenwanden die voor de matrijs worden gemaakt. Met 0° is de buitenshell van de matrijs verticaal, terwijl met 90° de buitenzijde van de matrijs de contouren van het model volgt." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Lijnrichting interface supportstructuur" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "De hoek van de diameter van de takken terwijl ze naar beneden toe geleidelijk dikker worden. Met de hoekinstelling 0 zijn de takken over de gehele lengte even dik. Een kleine hoek verbetert de stabiliteit van de boomsupportstructuur." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "De hoek van de schuine kant van de conische supportstructuur, waarbij 0 graden verticaal en 90 horizontaal is. Met een kleinere hoek is de supportstructuur steviger, maar bestaat deze uit meer materiaal. Met een negatieve hoek is het grondvlak van de supportstructuur breder dan de top." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Lijnrichting supportdak" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "De gemiddelde dichtheid van de punten die op elke polygoon in een laag worden geplaatst. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een lage dichtheid leidt dus tot een verlaging van de resolutie." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "De gemiddelde afstand tussen de willekeurig geplaatste punten op elk lijnsegment. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een hoge effenheid leidt dus tot een verlaging van de resolutie. Deze waarde moet hoger zijn dan de helft van de Dikte rafelig oppervlak." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Lijnrichting supportvloer" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "De standaardacceleratie van de printkopbeweging." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "De standaardtemperatuur waarmee wordt geprint. Dit moet overeenkomen met de basistemperatuur van een materiaal. Voor alle andere printtemperaturen moet een offset worden gebruikt die gebaseerd is op deze waarde" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Ventilatorsnelheid Overschrijven" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "De standaardtemperatuur die wordt gebruikt voor het verwarmde platform. Dit moet overeenkomen met de basistemperatuur van een platform. Voor alle andere printtemperaturen moet een offset worden gebruikt die is gebaseerd op deze waarde" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Wanneer deze optie ingeschakeld is, wordt de ventilatorsnelheid voor het koelen van de print gewijzigd voor de skinregio's direct boven de supportstructuur." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Ondersteunde Ventilatorsnelheid Skin" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "De dichtheid van de vloeren van de supportstructuur. Met een hogere waarde hecht het supportmateriaal beter aan de bovenzijde van het model." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Percentage van de ventilatorsnelheid dat tijdens het printen van skinregio's direct boven de supportstructuur moet worden gebruikt. Bij gebruikmaking van een hoge ventilatorsnelheid kan de supportstructuur gemakkelijker worden verwijderd." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "De dichtheid van de daken van de supportstructuur. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Pijlers Gebruiken" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de tweede brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Gebruik speciale pijlers om delen met minimale overhang te ondersteunen. Deze pijlers hebben een grotere diameter dan het deel dat ze ondersteunen. Bij de overhang neemt de diameter van de pijlers af en vormen ze een dak." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de derde brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pijlerdiameter" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "De diepte (Y-richting) van het printbare gebied." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "De diameter van een speciale pijler." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximale pijler-ondersteunde diameter" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Hiermee stelt u de diameter in van de dunste takken van de boomsupportstructuur. Dikkere takken zijn steviger. Takken die dichter bij de stam liggen, zijn dikker dan dit." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "De maximale diameter in de X- en Y-richting van een kleiner gebied dat moet worden ondersteund door een speciale steunpijler." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "De diameter van de bovenkant van de punt van de takken van de boomsteun." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Hoek van Pijlerdak" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "De diameter van het tandwiel waarmee het materiaal in de feeder wordt gevoerd." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "De diameter van de breedste takken van de boomondersteuning. Een dikkere tak is steviger; een dunnere tak neemt minder ruimte in beslag op het platform." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "De hoek van een dak van een pijler. Een hogere waarde zorgt voor een spits pijlerdak, een lagere waarde zorgt voor een plat pijlerdak." +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Het hoogteverschil tussen de hoogte van de volgende laag ten opzichte van de vorige laag." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Supportraster verlagen" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "De afstand tussen de strijklijnen." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Maak overal onder het supportraster support zodat er in het supportraster geen overhang is." +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "De afstand tussen de nozzle en geprinte delen wanneer deze tijdens bewegingen worden gemeden." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Scène heeft supportrasters" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Er zijn supportrasters aanwezig in de scène. Deze instelling wordt beheerd door Cura." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "De afstand tussen de raftlijnen voor de middelste laag van de raft. De ruimte in het midden moet vrij breed zijn, maar toch smal genoeg om ondersteuning te bieden voor de bovenste lagen van de raft." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Primeblob inschakelen" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Hiermee bepaalt u of het filament voor het printen met een blob wordt geprimed. Met het inschakelen van deze instelling wordt verzekerd dat er vanuit de extruder materiaal bij de nozzle beschikbaar is voordat het printen start. Het printen van een brim of skirt kan tevens fungeren als primen. In dat geval kan door het uitschakelen van deze instelling tijd worden bespaard." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type Hechting aan Platform" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "De afstand vanaf de grens tussen modellen om een in elkaar grijpende structuur te genereren, gemeten in cellen. Te weinig cellen leiden tot slechte hechting." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Er zijn verschillende opties die u helpen zowel de voorbereiding van de doorvoer als de hechting aan het platform te verbeteren. Met de optie Brim legt u in de eerste laag extra materiaal rondom de voet van het model om vervorming te voorkomen. Met de optie Raft legt u een dik raster met een dak onder het model. Met de optie Skirt print u rond het model een lijn die niet met het model is verbonden." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "De afstand vanaf de rand van het model tot de buitenrand van de brim. Een bredere brim hecht beter aan het platform, maar verkleint uw effectieve printgebied." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "De afstand van de buitenkant van een model waarbij in elkaar grijpende structuren niet worden gegenereerd, gemeten in cellen." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "De afstand tussen de punt van de nozzle waarin de warmte uit de nozzle wordt overgedragen aan het filament." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "De afstand waarmee de onderste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en de wanden van de onderliggende laag. Bij lagere waarden wordt er minder materiaal gebruikt." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Geen" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "De afstand waarmee de skin wordt uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden van aangrenzende lagen beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extruder Hechting aan Platform" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "De afstand waarmee de bovenste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden op de bovenliggende laag beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim/raft. Deze optie wordt gebruikt in meervoudige doorvoer." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "De afstand die de kop heen en weer wordt bewogen over de borstel." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extruder Skirt/Brim" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "De eindpunten van de vullijnen worden verkort om materiaal te besparen. Deze instelling is de overhanghoek van de eindpunten van deze lijnen." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim. Deze optie wordt gebruikt bij meervoudige doorvoer." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "De extra snelheid waarmee de nozzle tijdens het doorvoeren afkoelt. Met dezelfde waarde wordt ook de verloren verwarmingssnelheid aangeduid wanneer tijdens het doorvoeren wordt verwarmd." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft basisextruder" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft middelste extruder" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportvloeren. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de middelste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft bovenste extruder" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de daken en vloeren van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportdaken. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim. Deze optie wordt gebruikt bij meervoudige doorvoer." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim/raft. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." msgctxt "raft_surface_extruder_nr description" msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de bovenste laag/lagen van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Aantal Skirtlijnen" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de vulling wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Met meerdere skirtlijnen kunt u de doorvoer beter voorbereiden voor kleine modellen. Met de waarde 0 wordt de skirt uitgeschakeld." +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de binnenwanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Hoogte Skirt" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de buitenwand wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Het printen van de binnenste skirt-lijn met meerdere lagen maakt het gemakkelijk om de skirt te verwijderen." +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de boven- en onderskin wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirtafstand" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de bovenste skinlaag wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "De horizontale afstand tussen de skirt en de eerste laag van de print.\nDit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de wanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimale Skirt-/Brimlengte" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "De minimale lengte van de skirt of de brim. Als deze minimumlengte niet wordt bereikt met het totale aantal skirt- of brimlijnen, worden er meer skirt- of brimlijnen toegevoegd totdat de minimale lengte is bereikt. Opmerking: als het aantal lijnen is ingesteld op 0, wordt dit genegeerd." +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "De ventilatorsnelheid tijdens het printen van de middelste laag van de raft." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breedte Brim" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "De ventilatorsnelheid tijdens het printen van de raft." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "De afstand vanaf de rand van het model tot de buitenrand van de brim. Een bredere brim hecht beter aan het platform, maar verkleint uw effectieve printgebied." +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Aantal Brimlijnen" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de vulling van de print bepalen." -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." +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de supportstructuur bepalen." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Brimafstand" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "De eerste lagen worden minder snel geprint dan de rest van het model, om ervoor te zorgen dat dit zich beter hecht aan het platform en om de kans dat de print slaagt te vergroten. Tijdens het printen van deze lagen wordt de snelheid geleidelijk opgevoerd." -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 "De horizontale afstand tussen de eerste brimlijn en de contour van de eerste laag van de print. Door een kleine tussenruimte is de brim gemakkelijker te verwijderen terwijl de thermische voordelen behouden blijven." +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "De ruimte tussen de laatste laag van de raft en de eerste laag van het model. Alleen de eerste laag wordt met deze waarde verhoogd om de binding tussen de raftlaag en het model te verminderen. Hierdoor is het eenvoudiger om de raft te verwijderen." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim vervangt supportstructuur" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "De hoogte (Z-richting) van het printbare gebied." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "De hoogte die in de matrijs moet worden geprint boven de horizontale delen in het model." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Brim Alleen aan Buitenkant" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "De hoogte waarop de ventilatoren op normale snelheid draaien. Tijdens het printen van de onderliggende lagen wordt de ventilatorsnelheid geleidelijk verhoogd van de startsnelheid ventilator naar de normale ventilatorsnelheid." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Het hoogteverschil tussen de punt van de nozzle en het laagste deel van de printkop." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong na wisselen extruder." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Print de brim alleen aan de buitenkant van het model. Hiermee verkleint u de hoeveelheid brim die u achteraf moet verwijderen, zonder dat dit de hechting aan het printbed te zeer vermindert." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "De hoogte van elke laag in mm. Met hogere waarden print u sneller met een lagere resolutie, met lagere waarden print u langzamer met een hogere resolutie." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Binnenste mijdmarge brim" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "De hoogte van de vulling van een opgegeven dichtheid voordat wordt overgeschakeld naar de helft van deze dichtheid." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Een deel dat volledig is ingesloten in een ander deel kan een buitenste brim genereren die de binnenkant van het andere deel raakt. Dit verwijdert alle brim binnen deze afstand van de interne gaten." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "De hoogte van de supportvulling van een bepaalde dichtheid voordat de dichtheid wordt gehalveerd." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Slimme Brim" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Verwissel de printvolgorde van de binnenste en de op een na binnenste randlijn. Dit verbetert het verwijderen van de rand." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Extra Marge Raft" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht het object beter aan het platform." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft effenen" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "De hoogte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden. Stel deze waarde in op nul om het trapvormige gedrag uit te schakelen." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." +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 "De horizontale afstand tussen de eerste brimlijn en de contour van de eerste laag van de print. Door een kleine tussenruimte is de brim gemakkelijker te verwijderen terwijl de thermische voordelen behouden blijven." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luchtruimte Raft" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"De horizontale afstand tussen de skirt en de eerste laag van de print.\n" +"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "De ruimte tussen de laatste laag van de raft en de eerste laag van het model. Alleen de eerste laag wordt met deze waarde verhoogd om de binding tussen de raftlaag en het model te verminderen. Hierdoor is het eenvoudiger om de raft te verwijderen." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Overlap Eerste Laag" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de X-as." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor verloren materiaal in de luchtlaag. Alle stukjes model boven de eerste laag worden met deze hoeveelheid naar beneden verschoven." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de Y-as." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Bovenlagen Raft" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "De schok tijdens het printen van het grondvlak van de raft." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dikte Bovenlaag Raft" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "De schok tijdens het printen van de middelste laag van de raft." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Laagdikte van de bovenste lagen van de raft." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "De schok tijdens het printen van de raft." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Breedte Bovenste Lijn Raft" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "De schok tijdens het printen van de toplagen van de raft." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "De grootste breedte van delen van de onderste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de onderste skinlaag op schuine vlakken in het model." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Bovenruimte Raft" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "De grootste breedte van skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "De grootste breedte van delen van bovenste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft middelste lagen" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "De laag waarop de ventilatoren op normale snelheid draaien. Als de normale ventilatorsnelheid op hoogte ingeschakeld is, wordt deze waarde berekend en op een geheel getal afgerond." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Het aantal lagen tussen de basis en het oppervlak van de raft. Deze omvatten de het grootste deel van de dikte van de raft. Uitbreiden hiervan creëert een dikkere, stevigere raft." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "De laagtijd waarmee de drempelwaarde tussen de normale ventilatorsnelheid en de maximale ventilatorsnelheid wordt ingesteld. Voor lagen die langzamer worden geprint, draaien de ventilatoren op normale snelheid. Bij lagen die sneller worden geprint, draaien de ventilatoren op maximale snelheid." -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Lijndikte Midden Raft" +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." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "De laagdikte van de middelste laag van de raft." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Lijnbreedte Midden Raft" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Het materiaal van het platform dat in de printer geïnstalleerd is." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Breedte van de lijnen in de middelste laag van de raft. Als u voor de tweede laag meer materiaal gebruikt, hechten de lijnen beter aan het platform." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "De maximaal toegestane hoogte ten opzichte van de grondlaaghoogte." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Tussenruimte Midden Raft" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "De maximale hoek voor een deel van het uitloopscherm. Hierbij is 0 graden verticaal en 90 graden horizontaal. Een kleinere hoek leidt tot minder mislukte uitloopschermen, maar zorgt ervoor dat er meer materiaal wordt gebruikt." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "De afstand tussen de raftlijnen voor de middelste laag van de raft. De ruimte in het midden moet vrij breed zijn, maar toch smal genoeg om ondersteuning te bieden voor de bovenste lagen van de raft." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "De maximale hoek van een overhang nadat deze printbaar is gemaakt. Bij een hoek van 0° worden alle overhangende gedeelten vervangen door een deel van het model dat is verbonden met het platform; bij een hoek van 90° wordt het model niet gewijzigd." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dikte Grondvlak Raft" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "De maximale hoek van de takken terwijl ze rond het model groeien. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek om meer bereik te hebben." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Het maximale oppervlak van een gat in de basis van het model voordat het wordt verwijderd om de overhang printbaar te maken. Gaten die kleiner zijn dan dit oppervlak worden behouden. Bij een waarde van 0 mm² worden alle gaten in de basis van het model gevuld." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Lijnbreedte Grondvlak Raft" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "De maximaal toegestane afwijking tijdens het verlagen van de resolutie voor de instelling Maximale resolutie. Als u deze waarde verhoogt, wordt de print minder nauwkeurig, maar wordt de G-code kleiner. Maximale afwijking is een limiet voor Maximale resolutie, dus als de twee tegenstrijdig zijn, wordt de Maximale afwijking altijd aangehouden." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "De maximale afstand tussen de supportstructuren in de X- en Y-richting. Wanneer afzonderlijke structuren dichter bij elkaar staan dan deze waarde, worden deze samengevoegd tot één structuur." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Tussenruimte Lijnen Grondvlak Raft" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "De maximale afstand in mm om het filament te verplaatsen om veranderingen in de stroomsnelheid te compenseren." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "De maximaal toegestane afwijking van het doorvoergebied bij het verwijderen van tussenliggende punten van een rechte lijn. Een tussenliggend punt kan dienen als breedte-veranderend punt in een lange rechte lijn. Verwijdering van het punt leidt er dus toe dat de lijn een uniforme breedte krijgt en als gevolg daarvan een stuk van het doorvoergebied verliest (of wint). Als u deze waarde verhoogt, merkt u mogelijk een lichte onder- (of over-)doorvoer op tussen rechte parallele wanden, omdat er meer tussenliggende punten kunnen worden verwijderd die de breedte wijzigen. Uw print zal minder accuraat zijn, maar de g-code is kleiner." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Printsnelheid Raft" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de eerste laag." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "De snelheid waarmee de raft wordt geprint." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Printsnelheid Bovenkant Raft" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van alle binnenwanden." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Printsnelheid Midden Raft" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de vulling." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "De snelheid waarmee de middelste laag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvloeren." -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Printsnelheid Grondvlak Raft" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvulling." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de buitenwanden." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Printacceleratie Raft" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de primepijler." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "De acceleratie tijdens het printen van de raft." +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken en -vloeren." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Printacceleratie Bovenkant Raft" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "De acceleratie tijdens het printen van de toplagen van de raft." +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de skirt en de brim." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Printacceleratie Midden Raft" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportstructuur." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "De acceleratie tijdens het printen van de middelste laag van de raft." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Printacceleratie Grondvlak Raft" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de wanden." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Printschok Raft" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de bovenste skinlagen." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "De schok tijdens het printen van de raft." +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de boven-/onderlagen." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Printschok Bovenkant Raft" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het uitvoeren van bewegingen." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "De schok tijdens het printen van de toplagen van de raft." +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "De maximale snelheid van de motor in de X-richting." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Printschok Midden Raft" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "De maximale snelheid van de motor in de Y-richting." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "De schok tijdens het printen van de middelste laag van de raft." +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "De maximale snelheid van de motor in de Z-richting." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Printschok Grondvlak Raft" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "De maximale snelheid voor de doorvoer van het filament." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "De schok tijdens het printen van het grondvlak van de raft." +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "De maximale breedte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Ventilatorsnelheid Raft" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "De ventilatorsnelheid tijdens het printen van de raft." +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "De minimale bewegingssnelheid van de printkop." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Ventilatorsnelheid Bovenkant Raft" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "De minimale temperatuur tijdens het opwarmen naar de printtemperatuur waarbij met printen kan worden begonnen." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "De minimale tijd die een extruder inactief moet zijn, voordat de nozzle wordt afgekoeld. Alleen als een extruder gedurende langer dan deze tijd niet wordt gebruikt, wordt deze afgekoeld naar de stand-bytemperatuur." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Ventilatorsnelheid Midden Raft" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "De minimale interne overhanghoek waarbij vulling wordt toegevoegd. Bij een waarde van 0° worden objecten volledig gevuld. Bij 90° wordt er geen vulling geprint." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "De ventilatorsnelheid tijdens het printen van de middelste laag van de raft." +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "De minimale overhanghoek waarbij een supportstructuur wordt toegevoegd. Bij een waarde van 0° wordt elke overhang ondersteund. Bij 90° wordt er geen supportstructuur geprint." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Ventilatorsnelheid Grondlaag Raft" +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." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "De minimale lengte van de skirt of de brim. Als deze minimumlengte niet wordt bereikt met het totale aantal skirt- of brimlijnen, worden er meer skirt- of brimlijnen toegevoegd totdat de minimale lengte is bereikt. Opmerking: als het aantal lijnen is ingesteld op 0, wordt dit genegeerd." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dubbele Doorvoer" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "De minimum lijnbreedte voor opvuller voor ruimte middelste lijn bij muren met meerdere lijnen. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van twee wandlijnen naar het printen van twee buitenwanden en één centrale wand in het midden. Een hogere Minimum breedte ongelijkmatige wandlijn leidt naar een hogere maximale lijnbreedte bij een gelijkmatige wand. De maximale breedte ongelijkmatige wandlijn wordt berekend als 2 * Minimum breedte gelijkmatige wandlijn." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "De minimum lijnbreedte voor normale polygonale wanden. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van één dunne wandlijn op het printen van twee wandlijnen. Een hogere Minimum lijnbreedte gelijkmatige wand leidt tot een hogere maximum lijnbreedte voor een ongelijkmatige wand. De maximum breedte bij een gelijkmatige wandlijn wordt berekend als Lijnbreedte buitenste wand + 0,5 * Minimum lijnbreedte voor een ongelijkmatige wand." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Primepijler Inschakelen" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "De minimale printsnelheid die wordt aangehouden ondanks vertragen vanwege de minimale laagtijd. Als de printer te zeer vertraagt, wordt de druk in de nozzle te laag, wat leidt tot slechte printkwaliteit." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Het minimale formaat van een lijnsegment na het slicen. Als u deze waarde verhoogt, wordt het model met een lagere resolutie geprint. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden en wordt de slicesnelheid verhoogd doordat details van het raster worden verwijderd die niet kunnen worden verwerkt." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Formaat Primepijler" +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Het minimale formaat van een bewegingslijnsegment na het slicen. Als u deze waarde verhoogt, hebben de bewegingen minder vloeiende hoeken. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden, maar kan het model door vermijding minder nauwkeurig worden." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "De breedte van de primepijler." +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "De minimale helling van het gebied voordat traptreden van kracht worden. Lage waarden zouden het gemakkelijker moeten maken om support op ondieperere hellingen te verwijderen. Zeer lage waarden kunnen echter resulteren in een aantal zeer contra-intuïtieve resultaten op andere delen van het model." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Minimumvolume primepijler" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "De tijd die minimaal aan het printen van een laag wordt besteed. Hierdoor wordt de printer gedwongen langzamer te printen zodat deze ten minste de ingestelde tijd gebruikt voor het printen van een laag. Hierdoor kan het geprinte materiaal voldoende afkoelen voordat de volgende laag wordt geprint. Het printen van lagen kan nog steeds minder lang duren dan de minimale laagtijd als Printkop optillen is uitgeschakeld en als anders niet zou worden voldaan aan de Minimumsnelheid." msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." msgstr "Het minimale volume voor elke laag van de primepijler om voldoende materiaal te zuiveren." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-positie Primepijler" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "De X-coördinaat van de positie van de primepijler." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-positie Primepijler" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "De diameter van een tak die moet aansluiten op het model mag maximaal toenemen door samen te voegen met takken die de bouwplaat zouden kunnen bereiken. Als u dit verhoogt, wordt de printtijd verkort, maar wordt het ondersteuningsgebied dat op het model rust vergroot" -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "De Y-coördinaat van de positie van de primepijler." +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "De naam van uw 3D-printermodel." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Inactieve nozzle vegen op primepijler" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Tijdens bewegingen mijdt de nozzle delen die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim primepijler" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Tijdens bewegingen mijdt de nozzle supportstructuren die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Primepijlers hebben mogelijk de extra hechting van een brim nodig, ook als het model dit niet nodig heeft. Kan momenteel niet worden gebruikt met het hechtingstype 'Raft'." +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Het aantal bodemlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Uitloopscherm Inschakelen" +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Hiermee wordt het uitloopscherm aan de buitenkant ingeschakeld, waardoor een shell rond het model wordt gemaakt waarop een tweede nozzle kan worden afgeveegd als deze zich op dezelfde hoogte bevindt als de eerste nozzle." +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Het aantal opvullagen dat skinranden ondersteunt." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Hoek Uitloopscherm" +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." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "De maximale hoek voor een deel van het uitloopscherm. Hierbij is 0 graden verticaal en 90 graden horizontaal. Een kleinere hoek leidt tot minder mislukte uitloopschermen, maar zorgt ervoor dat er meer materiaal wordt gebruikt." +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Het aantal lagen tussen de basis en het oppervlak van de raft. Deze omvatten de het grootste deel van de dikte van de raft. Uitbreiden hiervan creëert een dikkere, stevigere raft." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Afstand Uitloopscherm" +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." -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." +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Het aantal lijnen dat voor de supportbrim wordt gebruikt. Meer brimlijnen zorgen voor betere hechting aan het platform, maar kosten wat extra materiaal." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Intrekafstand bij Wisselen Nozzles" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." -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." +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Het aantal bovenlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bovenkant, wordt deze afgerond naar een geheel getal." -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Intreksnelheid bij Wisselen Nozzles" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Het aantal bovenste skinlagen. Doorgaans is één bovenste skinlaag voldoende om oppervlakken van hogere kwaliteit te verkrijgen." -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." +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Intrekkingssnelheid bij Wisselen Nozzles" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee de ondersteuningsinterfacevloer moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." -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." +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee het ondersteuningsinterfacedak kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Primesnelheid bij Wisselen Nozzles" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee de ondersteuningsinterface moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." -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." +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Het aantal wanden, geteld vanaf het midden, waarover de variatie moet worden gespreid. Lagere waarden betekenen dat de breedte van de buitenwanden niet verandert." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Extra primehoeveelheid na wisselen van nozzle" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Het aantal wandlijnen. Wanneer deze waarde wordt berekend aan de hand van de wanddikte, wordt deze afgerond naar een geheel getal." -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Extra primemateriaal na het wisselen van de nozzle." +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "De buitendiameter van de punt van de nozzle." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Modelcorrecties" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert de vulling doordat deze alleen het plafond van het object ondersteunt." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Maak de rasters beter geschikt voor 3D-printen." +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Het patroon van de supportstructuur van de print. Met de verschillende beschikbare opties print u stevige of eenvoudig te verwijderen supportstructuren." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Overlappende Volumes Samenvoegen" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Het patroon van de bovenste lagen." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Negeer de interne geometrie die ontstaat uit overlappende volumes binnen een raster en print de volumes als een geheel. Hiermee kunnen onbedoelde holtes binnenin verdwijnen." +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Het patroon van de boven-/onderlagen." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Gaten Verwijderen" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Het patroon van de eerste laag aan de onderkant van de print." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Verwijder de gaten in elke laag en behoudt u alleen de buitenvorm. Hiermee negeert u eventuele onzichtbare interne geometrie. U negeert echter ook gaten in lagen die u van boven- of onderaf kunt zien." +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Uitgebreid Hechten" +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Het patroon waarmee de vloeren van de supportstructuur worden geprint." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Met uitgebreid hechten worden zo veel mogelijk open gaten in het raster gehecht doordat het gat wordt gedicht met polygonen die elkaar raken. Deze optie kan de verwerkingstijd aanzienlijk verlengen." +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Het patroon waarmee de verbindingsstructuur van het model wordt geprint." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Onderbroken Oppervlakken Behouden" +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Het patroon waarmee de daken van de supportstructuur worden geprint." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normaal probeert Cura kleine gaten in het raster te hechten en delen van een laag met grote gaten te verwijderen. Als u deze optie inschakelt, behoudt u de delen die niet kunnen worden gehecht. Deze optie kan als laatste redmiddel worden gebruikt als er geen andere manier meer is om correcte G-code te genereren." +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "De positie nabij waar met het printen van elk deel van een laag moet worden begonnen." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Samengevoegde rasters overlappen" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "De geprefereerde hoek van de takken, wanneer ze het model niet hoeven te vermijden. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek voor takken om sneller samen te voegen." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Laat rasters die elkaar raken deels met elkaar overlappen. Hierdoor hechten ze beter aan elkaar." +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "De voorkeursplaats van de ondersteunende structuren. Als structuren niet op de gewenste locatie kunnen worden geplaatst, worden ze elders geplaatst, zelfs als dat betekent dat ze op het model moeten worden geplaatst." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rastersnijpunt verwijderen" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "De maximale onmiddellijke snelheidsverandering in de eerste laag." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Hiermee verwijdert u gebieden waar meerdere rasters elkaar overlappen. Deze functie kan worden gebruikt als samengevoegde objecten van twee materialen elkaar overlappen." +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "De vorm van het platform zonder rekening te houden met niet-printbare gebieden." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Verwijderen van afwisselend raster" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "De vorm van de printkop. Deze coördinaten hebben betrekking op de positie van de printkop. Meestal is dit de positie van de eerste extruder. De dimensies links van en vóór de printkop moeten negatieve coördinaten zijn." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Schakel naar de rastersnijpuntvolumes die bij elke laag horen, zodat de overlappende rasters worden verweven. Als u deze instelling uitschakelt, krijgt een van de rasters al het volume in de overlap, terwijl dit uit de andere rasters wordt verwijderd." +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "De grootte van luchtbellen op kruispunten in het kruis 3D-patroon op punten waar het patroon zichzelf raakt." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Lege eerste lagen verwijderen" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Het kleinste volume dat een doorvoerpad moet hebben, voordat coasting mogelijk is. Voor een kort doorvoerpad wordt in de Bowden-buis minder druk opgebouwd en wordt het uitgespreide volume daarom lineair geschaald. Deze waarde moet altijd groter zijn dan de waarde voor het coasting-volume." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Hiermee worden de lege lagen onder de eerste geprinte laag verwijderd, indien aanwezig. Als u deze instelling uitschakelt, kunnen lege eerste lagen ontstaan als de Slicetolerantie is ingesteld op Exclusief of Midden." +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "De snelheid (°C/s) waarmee de nozzle afkoelt, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale resolutie" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "De snelheid (°C/s) waarmee de nozzle wordt verwarmd, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Het minimale formaat van een lijnsegment na het slicen. Als u deze waarde verhoogt, wordt het model met een lagere resolutie geprint. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden en wordt de slicesnelheid verhoogd doordat details van het raster worden verwijderd die niet kunnen worden verwerkt." +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "De snelheid waarmee alle binnenwanden worden geprint. Als u de binnenwand sneller print dan de buitenwand, verkort u de printtijd. Het wordt aangeraden hiervoor een snelheid in te stellen die ligt tussen de printsnelheid van de buitenwand en de vulsnelheid." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale bewegingsresolutie" +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "De snelheid waarmee brugskinregio's worden geprint." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Het minimale formaat van een bewegingslijnsegment na het slicen. Als u deze waarde verhoogt, hebben de bewegingen minder vloeiende hoeken. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden, maar kan het model door vermijding minder nauwkeurig worden." +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "De snelheid waarmee de vulling wordt geprint." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale afwijking" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "De snelheid waarmee wordt geprint." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "De maximaal toegestane afwijking tijdens het verlagen van de resolutie voor de instelling Maximale resolutie. Als u deze waarde verhoogt, wordt de print minder nauwkeurig, maar wordt de G-code kleiner. Maximale afwijking is een limiet voor Maximale resolutie, dus als de twee tegenstrijdig zijn, wordt de Maximale afwijking altijd aangehouden." +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale afwijking doorvoergebied" +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "De snelheid waarmee brugwanden worden geprint." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "De maximaal toegestane afwijking van het doorvoergebied bij het verwijderen van tussenliggende punten van een rechte lijn. Een tussenliggend punt kan dienen als breedte-veranderend punt in een lange rechte lijn. Verwijdering van het punt leidt er dus toe dat de lijn een uniforme breedte krijgt en als gevolg daarvan een stuk van het doorvoergebied verliest (of wint). Als u deze waarde verhoogt, merkt u mogelijk een lichte onder- (of over-)doorvoer op tussen rechte parallele wanden, omdat er meer tussenliggende punten kunnen worden verwijderd die de breedte wijzigen. Uw print zal minder accuraat zijn, maar de g-code is kleiner." +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "De snelheid waarmee de ventilatoren draaien bij de start van het printen. Tijdens het printen van de volgende lagen wordt de ventilatorsnelheid geleidelijk verhoogd tot de laag waarin de snelheid overeenkomt met de normale ventilatorsnelheid op hoogte." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Vloeiende beweging inschakelen" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "De snelheid waarmee de ventilatoren draaien voordat de drempelwaarde wordt bereikt. Wanneer een laag sneller wordt geprint dan de drempelwaarde, wordt de ventilatorsnelheid geleidelijk verhoogd tot de maximale ventilatorsnelheid." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Indien ingeschakeld, worden gereedschapsbanen gecorrigeerd voor printers met vloeiende bewegingsplanners. Kleine bewegingen die afwijken van de algemene richting van het gereedschapspad worden afgevlakt om vloeiende bewegingen te verbeteren." +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "De snelheid waarmee de ventilatoren draaien bij de minimale laagtijd. Wanneer de drempelwaarde wordt bereikt, wordt de ventilatorsnelheid geleidelijk verhoogd van de normale ventilatorsnelheid naar de maximale ventilatorsnelheid." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Vloeiende beweging verschuivingsafstand" +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." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt geprimed." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Vloeiende beweging kleine afstand" +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." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" +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." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Hoek vloeiende beweging" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken en geprimed." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Als een baansegment meer dan deze hoek afwijkt van de algemene beweging, wordt hij afgevlakt." +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." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Speciale Modi" +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." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Niet-traditionele manieren om uw modellen te printen." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Printvolgorde" +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." -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 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 "Hiermee bepaalt u of alle modellen laag voor laag moeten worden geprint of dat eerst het ene model helemaal klaar moet zijn voordat aan het volgende wordt begonnen. Eén voor één printen is mogelijk als a) slechts één extruder is ingeschakeld en b) alle modellen zodanig zijn gescheiden dat de hele printkop ertussen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X/Y-assen." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "De snelheid waarmee de supportvloer wordt geprint. Als u deze langzamer print, hecht het supportmateriaal beter aan de bovenzijde van het model." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Alles Tegelijk" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "De snelheid waarmee de supportvulling wordt geprint. Als u de vulling langzamer print, wordt de stabiliteit verbeterd." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Eén voor Eén" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "De snelheid waarmee de middelste laag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Vulraster" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "De snelheid waarmee de buitenwanden worden geprint. Als u de buitenwand langzamer print, verhoogt u de uiteindelijke kwaliteit van de skin. Een groot verschil tussen de printsnelheid van de binnenwand en de printsnelheid van de buitenwand kan echter een negatief effect hebben op de kwaliteit." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Gebruik dit raster om de vulling aan te passen van andere rasters waarmee dit raster overlapt. Met deze optie vervangt u vulgebieden van andere rasters met gebieden van dit raster. Het wordt aangeraden voor dit raster slechts één wand en geen boven-/onderskin te printen." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "De snelheid waarmee de primepijler wordt geprint. Als u de primepijler langzamer print, wordt deze stabieler. Dit is zinvol wanneer de hechting tussen de verschillende filamenten niet optimaal is." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rasterverwerkingsrang" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "De snelheid waarmee de printventilatoren draaien." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Bepaalt de prioriteit van dit raster bij meerdere overlappende vulrasters. Gebieden met meerdere overlappende vulrasters krijgen de instellingen van het vulraster met de hoogste rang. Bij een vulraster met een hogere rang wordt de vulling van vulrasters met een lagere rang en normale rasters aangepast." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "De snelheid waarmee de raft wordt geprint." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Snijdend raster" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "De snelheid waarmee de supportdaken en -vloeren worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Beperk het volume van dit raster binnen andere rasters. U kunt dit gebruiken om bepaalde delen van een raster met andere instellingen en met een andere extruder te printen." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "De snelheid waarmee de supportdaken worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Matrijs" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "De snelheid waarmee de skirt en de brim worden geprint. Normaal gebeurt dit met dezelfde snelheid als de snelheid van de eerste laag, maar in sommige situaties wilt u de skirt of de brim mogelijk met een andere snelheid printen." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Print modellen als matrijs, die vervolgens kan worden gegoten om een model te krijgen dat lijkt op de modellen op het platform." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "De snelheid waarmee de supportstructuur wordt geprint. Als u de supportstructuur sneller print, kunt u de printtijd aanzienlijk verkorten. De kwaliteit van het oppervlak van de supportstructuur is niet belangrijk, aangezien deze na het printen wordt verwijderd." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimale matrijsbreedte" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dakhoogte matrijs" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "De hoogte die in de matrijs moet worden geprint boven de horizontale delen in het model." +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "De snelheid waarmee de verticale Z-beweging wordt gemaakt voor Z-sprongen. Dit is meestal lager dan de printsnelheid, omdat het platform of de rijbrug van de machine moeilijker te verplaatsen is." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Matrijshoek" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "De snelheid waarmee wanden worden geprint." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "De hoek van de overhang van de buitenwanden die voor de matrijs worden gemaakt. Met 0° is de buitenshell van de matrijs verticaal, terwijl met 90° de buitenzijde van de matrijs de contouren van het model volgt." +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "De snelheid waarmee over de bovenste laag wordt bewogen." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supportstructuur raster" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "De snelheid waarmee het filament wordt ingetrokken om het recht af te breken." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Gebruik dit raster om steunvlakken op te geven. Deze functie kan worden gebruikt om supportstructuur te genereren." +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "De snelheid waarmee bovenste skinlagen worden geprint." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Raster tegen overhang" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "De snelheid waarmee boven-/onderlagen worden geprint." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Gebruik dit raster om op te geven waar geen enkel deel van het model mag worden gedetecteerd als overhang. Deze functie kan worden gebruikt om ongewenste supportstructuur te verwijderen." +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "De snelheid waarmee bewegingen plaatsvinden." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oppervlaktemodus" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "De snelheid waarmee de printkop tijdens coasting beweegt ten opzichte van de snelheid voor het doorvoerpad. Hiervoor wordt een waarde van iets minder dan 100% aangeraden, omdat de druk in de bowden-buis zakt tijdens een coasting-beweging." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Behandel het model alleen als oppervlak, volume of volumen met losse oppervlakken. In de normale printmodus worden alleen omsloten volumen geprint. Met de optie 'Oppervlak' wordt een enkele wand geprint waarbij het rasteroppervlak wordt gevolgd zonder vulling en zonder boven-/onderskin. Met de optie 'Beide' worden omsloten volumen normaal geprint en eventuele resterende polygonen als oppervlakken." +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren. Heeft geen invloed op de hechtstructuren van het platform zelf, zoals brim en raft." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normaal" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oppervlak" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "De snelheid van de bewegingen tijdens het printen van de eerste laag. Hiervoor wordt een lagere waarde aanbevolen om te voorkomen dat eerder geprinte delen van het platform worden getrokken. De waarde van deze instelling kan automatisch worden berekend uit de verhouding tussen de bewegingssnelheid en de printsnelheid." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beide" +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." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Buitencontour Spiraliseren" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "De omgevingstemperatuur waarin wordt geprint. Als deze waarde is ingesteld op 0, wordt de temperatuur van het werkvolume niet aangepast." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Met spiraliseren wordt de Z-beweging van de buitenrand vloeiender. Hierdoor ontstaat een geleidelijke Z-verhoging over de hele print. Met deze functie maakt u van een massief model een enkelwandige print met een solide bodem. Deze functie dient alleen te worden ingeschakeld wanneer elke laag uit een enkel deel bestaat." +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." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Gespiraliseerde contouren effenen" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "De temperatuur waarnaar alvast kan worden afgekoeld net voordat het printen wordt beëindigd." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Maak de gespiraliseerde contouren vlak om de zichtbaarheid van de Z-naad te verminderen (de Z-naad mag in de print nauwelijks zichtbaar zijn, maar is nog wel zichtbaar in de laagweergave). Houd er rekening mee dat fijne oppervlaktedetails worden vervaagd door het effenen." +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relatieve Extrusie" +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "De temperatuur waarmee wordt geprint." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Gebruik relatieve extrusie in plaats van absolute extrusie. Bij het gebruik van relatieve E-steps wordt het nabewerken van G-code gemakkelijker. Deze optie wordt echter niet door alle printers ondersteund en kan lichte afwijkingen veroorzaken in de hoeveelheid afgezet materiaal ten opzichte van absolute E-steps. Ongeacht deze instelling wordt de extrusiemodus altijd ingesteld op absoluut voordat er een G-code-script wordt uitgevoerd." +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "De temperatuur van het verwarmde platform voor de eerste laag. Als de temperatuur 0 is, wordt het platform bij de eerste laag niet verwarmd." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimenteel" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "De temperatuur van het verwarmde platform. Als de temperatuur is ingesteld op 0, wordt het platform niet verwarmd." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Functies die nog niet volledig zijn uitgewerkt." +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "De temperatuur die wordt gebruikt om materiaal te zuiveren, moet ongeveer gelijk zijn aan de hoogst mogelijke printtemperatuur." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicetolerantie" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "De dikte van de onderlagen in de print. Het aantal onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Verticale tolerantie in de gesneden lagen. De contouren van een laag kunnen worden normaal gesproken gegenereerd door dwarsdoorsneden te nemen door het midden van de dikte van de laag (Midden). Daarnaast kan elke laag gebieden hebben die over de gehele dikte van de laag binnen het volume vallen (Exclusief), of kan een laag gebieden hebben die overal binnen de laag vallen (Inclusief). Met Inclusief worden de meeste details behouden, met Exclusief verkrijgt u de beste pasvorm en met Midden behoudt u het originele oppervlak het meest." +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "De dikte van de extra vulling die skinranden ondersteunt." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Midden" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "De dikte van de verbindingsstructuur waar dit het model aan de onder- of bovenkant raakt." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusief" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "De dikte van de supportvloeren. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusief" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "De dikte van de supportdaken. Hiermee wordt het aantal dichte lagen bepaald aan de bovenkant van de supportstructuur waarop het model rust." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegingsoptimalisatie vulling" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "De dikte van de bovenlagen in de print. Het aantal bovenlagen wordt bepaald door het delen van deze waarde door de laaghoogte." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Wanneer deze optie is ingeschakeld, wordt de volgorde geoptimaliseerd waarin de vullijnen worden geprint om de afgelegde beweging te reduceren. De reductie in bewegingstijd die wordt bereikt, is in hoge mate afhankelijk van het model dat wordt geslicet, het vulpatroon, de dichtheid enz. Houd er rekening mee dat de slicetijd voor modellen met veel kleine vulgebieden aanzienlijk kan worden verlengd." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "De dikte van de boven-/onderlagen in de print. Het aantal boven-/onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafiek Doorvoertemperatuur" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "De dikte van de wanden in horizontale richting. Het aantal wanden wordt bepaald door het delen van deze waarde door de breedte van de wandlijn." -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Grafiek om de materiaaldoorvoer (in mm3 per seconde) te koppelen aan de temperatuur (graden Celsius)." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "De dikte per laag vulmateriaal. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimale Polygoonomtrek" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "De dikte per laag materiaal supportvulling. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polygonen in geslicete lagen, die een kleinere omtrek hebben dan deze waarde, worden eruit gefilterd. Bij lagere waarden krijgt het raster een hogere resolutie, waardoor het slicen langer duurt. Dit is voornamelijk bedoeld voor SLA-printers met een hoge resolutie en zeer kleine 3D-modellen die veel details bevatten." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "De G-code-versie die moet worden gegenereerd." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Genereer in elkaar grijpende structuur" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Hiermee stelt u volume in dat anders zou worden afgevoerd. Deze waarde dient zo dicht mogelijk bij de berekende waarde van de nozzlediameter te liggen." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Genereer op de plaatsen waar modellen elkaar raken een in elkaar grijpende balkstructuur. Dit verbetert de hechting tussen modellen, vooral modellen die in verschillende materialen zijn geprint." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "De breedte (X-richting) van het printbare gebied." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Breedte in elkaar grijpende balk" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "De breedte van de brim die onder de support wordt geprint. Een bredere brim kost meer materiaal, maar hecht beter aan het platform." msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "De breedte van de in elkaar grijpende structuurbalken." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "In elkaar grijpende structuuroriëntatie" - -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Aantal in elkaar grijpende balklagen" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "De breedte van de primepijler." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "De breedte van de trilling. Het wordt aangeraden hiervoor een waarde in te stellen die lager is dan de breedte van de buitenwand, omdat de binnenwand niet verandert." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "In elkaar grijpende diepte" +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." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "De afstand vanaf de grens tussen modellen om een in elkaar grijpende structuur te genereren, gemeten in cellen. Te weinig cellen leiden tot slechte hechting." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "De X-coördinaat van de positie van de primepijler." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "In elkaar grijpende grensvermijding" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "De Y-coördinaat van de positie van de primepijler." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "De afstand van de buitenkant van een model waarbij in elkaar grijpende structuren niet worden gegenereerd, gemeten in cellen." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Er zijn supportrasters aanwezig in de scène. Deze instelling wordt beheerd door Cura." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Supportstructuur in Stukken Breken" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voordat een brugwand begint. Met coasting voordat de brug begint, vermindert u de druk in de nozzle en krijgt u mogelijk een vlakkere brug." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Sla enkele verbindingen tussen lijnen van de supportstructuur over zodat deze gemakkelijker kan worden weggebroken. Deze instelling is van toepassing op het zigzag-vulpatroon van de supportstructuur." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Grootte Supportstuk" +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." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Sla elke N millimeter een verbinding tussen de lijnen van de supportstructuur over, zodat deze gemakkelijker kan worden weggebroken." +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Maak een wand rond het model. Deze vangt (warme) lucht en biedt bescherming tegen externe luchtbewegingen. De optie is met name geschikt voor materialen die snel kromtrekken." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Aantal Lijnen Supportstuk" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Puntdiameter" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Sla elke N verbindingslijnen één lijn over zodat de supportstructuur gemakkelijker kan worden weggebroken." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in de richting XY (horizontaal)." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Tochtscherm Inschakelen" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in Z-richting (verticaal)." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Maak een wand rond het model. Deze vangt (warme) lucht en biedt bescherming tegen externe luchtbewegingen. De optie is met name geschikt voor materialen die snel kromtrekken." +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Het model wordt met deze factor geschaald ter compensatie van het krimpen van het materiaal tijdens het afkoelen." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Tochtscherm X-/Y-afstand" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Bovenlagen" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "De afstand tussen het tochtscherm en de print, in de X- en Y-richting." +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Uitbreidingsafstand van bovenste skinlaag" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Beperking Tochtscherm" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Verwijderingsbreedte bovenste skinlaag" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Stel de hoogte van het tochtscherm in. U kunt ervoor kiezen een tochtscherm met dezelfde hoogte als het model of lager te printen." +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Versnelling van de binnenwand op bovenlaag" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Volledig" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Schok van de buitenste muur van het bovenoppervlak" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Beperkt" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Snelheid van de binnenste wand van het bovenoppervlak" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hoogte Tochtscherm" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Stel een hoogtebeperking in voor het tochtscherm. Boven deze hoogte wordt er geen tochtscherm geprint." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Versnelling van de buitenste wand op bovenlaag" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Overhang Printbaar Maken" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Stroom van de buitenste wand van het bovenoppervlak" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Verander de geometrie van het geprinte model dusdanig dat minimale support is vereist. Een steile overhang wordt een vlakke overhang. Overhangende gedeelten worden verlaagd zodat deze meer verticaal komen te staan." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Schok van de binnenste muur van het bovenoppervlak" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximale Modelhoek" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Snelheid van de buitenste wand van het bovenoppervlak" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "De maximale hoek van een overhang nadat deze printbaar is gemaakt. Bij een hoek van 0° worden alle overhangende gedeelten vervangen door een deel van het model dat is verbonden met het platform; bij een hoek van 90° wordt het model niet gewijzigd." +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Acceleratie bovenskin" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximale overhang oppervlak gat" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extruder bovenskin" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Het maximale oppervlak van een gat in de basis van het model voordat het wordt verwijderd om de overhang printbaar te maken. Gaten die kleiner zijn dan dit oppervlak worden behouden. Bij een waarde van 0 mm² worden alle gaten in de basis van het model gevuld." +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Bovenste oppervlak skindoorvoer" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting Inschakelen" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Schok bovenskin" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Met coasting wordt het laatste gedeelte van een doorvoerpad vervangen door een beweging. Het doorgevoerde materiaal wordt gebruikt om het laatste gedeelte van het doorvoerpad te printen, om draadvorming te verminderen." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Bovenste skinlagen" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-volume" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Lijnrichting bovenskin" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Hiermee stelt u volume in dat anders zou worden afgevoerd. Deze waarde dient zo dicht mogelijk bij de berekende waarde van de nozzlediameter te liggen." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Lijnbreedte bovenskin" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Minimaal Volume vóór Coasting" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patroon bovenskin" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Het kleinste volume dat een doorvoerpad moet hebben, voordat coasting mogelijk is. Voor een kort doorvoerpad wordt in de Bowden-buis minder druk opgebouwd en wordt het uitgespreide volume daarom lineair geschaald. Deze waarde moet altijd groter zijn dan de waarde voor het coasting-volume." +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Snelheid bovenskin" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-snelheid" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Dikte Bovenkant" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "De snelheid waarmee de printkop tijdens coasting beweegt ten opzichte van de snelheid voor het doorvoerpad. Hiervoor wordt een waarde van iets minder dan 100% aangeraden, omdat de druk in de bowden-buis zakt tijdens een coasting-beweging." +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Van boven- en/of onderoppervlakken van het object met een hoek die groter is dan deze instelling, wordt de boven-/onderskin niet uitgebreid. Hiermee wordt uitbreiding voorkomen van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft. Bij een hoek van 0° (horizontaal) wordt er geen skin uitgebreid; bij een hoek van 90° (verticaal) wordt alle skin uitgebreid." -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Luchtbelgrootte bij Kruis 3D" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "De grootte van luchtbellen op kruispunten in het kruis 3D-patroon op punten waar het patroon zichzelf raakt." +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Dichtheid kruisvulling afbeelding" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Acceleratie Boven-/Onderkant" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de vulling van de print bepalen." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Boven-/Onderkant" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Doorvoer boven/onder" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de supportstructuur bepalen." +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Schok Boven-/Onderkant" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Conische supportstructuur inschakelen" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Lijnrichtingen boven-/onderkant" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Maak draagvlakken aan de onderkant kleiner dan bij de overhang." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Lijnbreedte Boven-/onderkant" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Hoek Conische Supportstructuur" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patroon Boven-/Onderkant" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "De hoek van de schuine kant van de conische supportstructuur, waarbij 0 graden verticaal en 90 horizontaal is. Met een kleinere hoek is de supportstructuur steviger, maar bestaat deze uit meer materiaal. Met een negatieve hoek is het grondvlak van de supportstructuur breder dan de top." +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Snelheid Boven-/Onderkant" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Minimale Breedte Conische Supportstructuur" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Dikte Boven-/Onderkant" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Minimale breedte waarmee het grondvlak van het kegelvormige supportgebied wordt verkleind. Een geringe breedte kan leiden tot een instabiele supportstructuur." +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Platform Aanraken" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rafelig Oppervlak" +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pijlerdiameter" -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." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Hoek van Pijlerdak" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Alleen rafelig oppervlak buitenkant" +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 "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Trillen alleen voor de contouren van de onderdelen en niet voor de gaten van de onderdelen." +msgctxt "travel label" +msgid "Travel" +msgstr "Beweging" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dikte Rafelig Oppervlak" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Bewegingsacceleratie" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "De breedte van de trilling. Het wordt aangeraden hiervoor een waarde in te stellen die lager is dan de breedte van de buitenwand, omdat de binnenwand niet verandert." +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Mijdafstand Tijdens Bewegingen" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichtheid Rafelig Oppervlak" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Bewegingsschok" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "De gemiddelde dichtheid van de punten die op elke polygoon in een laag worden geplaatst. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een lage dichtheid leidt dus tot een verlaging van de resolutie." +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegingssnelheid" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Puntafstand Rafelig Oppervlak" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Behandel het model alleen als oppervlak, volume of volumen met losse oppervlakken. In de normale printmodus worden alleen omsloten volumen geprint. Met de optie 'Oppervlak' wordt een enkele wand geprint waarbij het rasteroppervlak wordt gevolgd zonder vulling en zonder boven-/onderskin. Met de optie 'Beide' worden omsloten volumen normaal geprint en eventuele resterende polygonen als oppervlakken." -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "De gemiddelde afstand tussen de willekeurig geplaatste punten op elk lijnsegment. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een hoge effenheid leidt dus tot een verlaging van de resolutie. Deze waarde moet hoger zijn dan de helft van de Dikte rafelig oppervlak." +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Boom" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Maximale extrusieoffset voor doorvoercompensatie" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-hexagonaal" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "De maximale afstand in mm om het filament te verplaatsen om veranderingen in de stroomsnelheid te compenseren." +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Doorvoercompensatiefactor" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -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." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Adaptieve lagen gebruiken" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Met adaptieve lagen berekent u de laaghoogte afhankelijk van de vorm van het model." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale variatie adaptieve lagen" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Stamdiameter" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "De maximaal toegestane hoogte ten opzichte van de grondlaaghoogte." +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Stapgrootte variatie adaptieve lagen" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Overlappende Volumes Samenvoegen" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Het hoogteverschil tussen de hoogte van de volgende laag ten opzichte van de vorige laag." +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Niet-ondersteunde wanden die korter zijn dan deze waarde, worden geprint met de normale wandinstellingen. Langere niet-ondersteunde wanden worden geprint met de instellingen voor brugwanden." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topografieformaat aanpasbare lagen" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Adaptieve lagen gebruiken" -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." +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Pijlers Gebruiken" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Hoek Overhangende Wand" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Gebruik een aparte acceleratiesnelheid voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de acceleratiewaarde van de geprinte lijn op de bestemming." -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." +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Gebruik een apart schokpercentage voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de schokwaarde van de geprinte lijn op de bestemming." -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Snelheid Overhangende Wand" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Gebruik relatieve extrusie in plaats van absolute extrusie. Bij het gebruik van relatieve E-steps wordt het nabewerken van G-code gemakkelijker. Deze optie wordt echter niet door alle printers ondersteund en kan lichte afwijkingen veroorzaken in de hoeveelheid afgezet materiaal ten opzichte van absolute E-steps. Ongeacht deze instelling wordt de extrusiemodus altijd ingesteld op absoluut voordat er een G-code-script wordt uitgevoerd." -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Overhangende wanden worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid." +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Gebruik speciale pijlers om delen met minimale overhang te ondersteunen. Deze pijlers hebben een grotere diameter dan het deel dat ze ondersteunen. Bij de overhang neemt de diameter van de pijlers af en vormen ze een dak." -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Bruginstellingen inschakelen" +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Gebruik dit raster om de vulling aan te passen van andere rasters waarmee dit raster overlapt. Met deze optie vervangt u vulgebieden van andere rasters met gebieden van dit raster. Het wordt aangeraden voor dit raster slechts één wand en geen boven-/onderskin te printen." -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Hiermee detecteert u bruggen en past u de instellingen voor de printsnelheid, doorvoer en ventilator aan tijdens het printen van bruggen." +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Gebruik dit raster om steunvlakken op te geven. Deze functie kan worden gebruikt om supportstructuur te genereren." -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimale brugwandlengte" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Gebruik dit raster om op te geven waar geen enkel deel van het model mag worden gedetecteerd als overhang. Deze functie kan worden gebruikt om ongewenste supportstructuur te verwijderen." -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Niet-ondersteunde wanden die korter zijn dan deze waarde, worden geprint met de normale wandinstellingen. Langere niet-ondersteunde wanden worden geprint met de instellingen voor brugwanden." +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Door de gebruiker opgegeven" -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Drempelwaarde voor brugskinsupport" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Verticale schaalfactor krimpcompensatie" -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." +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Verticale tolerantie in de gesneden lagen. De contouren van een laag kunnen worden normaal gesproken gegenereerd door dwarsdoorsneden te nemen door het midden van de dikte van de laag (Midden). Daarnaast kan elke laag gebieden hebben die over de gehele dikte van de laag binnen het volume vallen (Exclusief), of kan een laag gebieden hebben die overal binnen de laag vallen (Inclusief). Met Inclusief worden de meeste details behouden, met Exclusief verkrijgt u de beste pasvorm en met Midden behoudt u het originele oppervlak het meest." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale dichtheid van dunne vulling brugskin" +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Wachten op verwarmen van platform" -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 "Maximale dichtheid van de vulling die als dun wordt beschouwd. Skin boven dunne vulling wordt als niet-ondersteund beschouwd en kan dus als een brugskin worden behandeld." +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Wachten op verwarmen van nozzle" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting brugwand" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Wandacceleratie" -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voordat een brugwand begint. Met coasting voordat de brug begint, vermindert u de druk in de nozzle en krijgt u mogelijk een vlakkere brug." +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Aantal wanden voor distributie" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Snelheid brugwand" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Wandextruder" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "De snelheid waarmee brugwanden worden geprint." +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wanddoorvoer" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Doorvoer brugwand" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Wandschok" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van brugwanden wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Aantal Wandlijnen" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Snelheid brugskin" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Lijnbreedte Wand" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "De snelheid waarmee brugskinregio's worden geprint." +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandvolgorde" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Doorvoer brugskin" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandsnelheid" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van brugskinregio's wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddikte" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichtheid brugskin" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lengte wandovergang" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Filterafstand wandovergang" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Ventilatorsnelheid brug" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Filtermarge wandovergang" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Percentage ventilatorsnelheid tijdens het printen van brugwanden en -skin." +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Drempelhoek wandovergang" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brug heeft meerdere lagen" +msgctxt "shell label" +msgid "Walls" +msgstr "Wanden" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Als deze optie ingeschakeld is, worden de tweede en derde laag boven de vrije ruimte geprint met de volgende instellingen. Anders worden de lagen geprint met de normale instellingen." +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." -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Snelheid tweede brugskin" +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Maak treden van de opgegeven hoogte tijdens het controleren waar zich boven en onder de supportstructuur delen van het model bevinden. Lagere waarden slicen lager, terwijl door hogere waarden mogelijk normale supportstructuur wordt geprint op plekken waar een verbindingsstructuur had moeten zijn." -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Printsnelheid tijdens het printen van de tweede brugskinlaag." +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Indien ingeschakeld, worden gereedschapsbanen gecorrigeerd voor printers met vloeiende bewegingsplanners. Kleine bewegingen die afwijken van de algemene richting van het gereedschapspad worden afgevlakt om vloeiende bewegingen te verbeteren." -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Doorvoer tweede brugskin" +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Wanneer deze optie is ingeschakeld, wordt de volgorde geoptimaliseerd waarin de vullijnen worden geprint om de afgelegde beweging te reduceren. De reductie in bewegingstijd die wordt bereikt, is in hoge mate afhankelijk van het model dat wordt geslicet, het vulpatroon, de dichtheid enz. Houd er rekening mee dat de slicetijd voor modellen met veel kleine vulgebieden aanzienlijk kan worden verlengd." -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van de tweede brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Wanneer deze optie ingeschakeld is, wordt de ventilatorsnelheid voor het koelen van de print gewijzigd voor de skinregio's direct boven de supportstructuur." -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichtheid tweede brugskin" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Als deze optie ingeschakeld is, zijn de Z-naadcoördinaten relatief ten opzichte van het midden van elk deel. Als de optie uitgeschakeld is, staan de coördinaten voor een absolute positie op het platform." -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de tweede brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats." -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Ventilatorsnelheid tweede brugskin" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Als dit groter is dan nul, wordt de horizontale gatexpansie geleidelijk toegepast op kleine gaten (kleine gaten worden meer uitgebreid). Indien ingesteld op nul, wordt de horizontale gatexpansie toegepast op alle gaten. Gaten groter dan de maximale diameter van de horizontale gatexpansie worden niet vergroot." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Percentage ventilatorsnelheid tijdens het printen van de tweede brugskinlaag." +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Als de horizontale uitzetting van het gat groter is dan nul, is dit de hoeveelheid offset die op alle gaten in elke laag wordt toegepast. Positieve waarden vergroten de grootte van de gaten, negatieve waarden verkleinen de grootte van de gaten. Wanneer deze instelling is ingeschakeld, kan deze verder worden afgesteld met Maximum diameter horizontale uitzetting gaten." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Snelheid derde brugskin" +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van brugskinregio's wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Printsnelheid tijdens het printen van de derde brugskinlaag." +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van brugwanden wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Doorvoer derde brugskin" +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van de tweede brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." msgctxt "bridge_skin_material_flow_3 description" msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "Tijdens het printen van de derde brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichtheid derde brugskin" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de derde brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Ventilatorsnelheid derde brugskin" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Percentage ventilatorsnelheid tijdens het printen van de derde brugskinlaag." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Nozzle afvegen tussen lagen" - -msgctxt "clean_between_layers description" -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 "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze optie kan het gedrag van het intrekken bij de laagwissel beïnvloeden. Gebruik de instellingen voor Intrekken voor afvegen om het intrekken te regelen bij lagen waarbij het afveegscript actief is." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Wanneer de minimale snelheid wordt bereikt vanwege de minimale laagtijd, wordt de printkop van de print verwijderd totdat de minimale laagtijd bereikt is." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materiaalvolume tussen afvegen" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Als het model kleine verticale gaten van slechts een paar lagen heeft, bevindt er zich doorgaans een skin rond die lagen in de kleine ruimte. Schakel deze instelling in om geen skin te genereren als de verticale tussenruimte erg klein is. Zo verloopt printen en slicen sneller, maar technisch nadeel is dat de vulling aan de lucht wordt blootgesteld." -msgctxt "max_extrusion_before_wipe description" -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 "Maximale materiaalhoeveelheid die kan worden geëxtrudeerd voordat de nozzle opnieuw wordt afgeveegd. Als deze waarde kleiner is dan het benodigde materiaalvolume in een laag, heeft de instelling geen effect op deze laag. Er wordt dan maar een keer per laag afgeveegd." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Wanneer u overgangen moet maken tussen even en oneven aantallen wanden. Een wigvorm met een hoek die groter is dan deze instelling, heeft geen overgangen. Er worden geen wanden geprint in het midden om de overblijvende ruimte te vullen. Door deze instelling kleiner te maken, reduceert u het aantal en de lengte van deze centrumwanden. Dit kan echter leiden tot openingen of een te hoge doorvoer." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Intrekken voor afvegen inschakelen" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Bij de overgang tussen verschillende aantallen wanden naarmate het onderdeel dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen voor het splitsen of samenvoegen van wandlijnen." -msgctxt "wipe_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." +msgctxt "wipe_hop_enable description" +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 "Tijdens het afvegen 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 "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Intrekafstand voor afvegen" +msgctxt "retraction_hop_enabled 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 "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Volume filament dat moet worden ingetrokken om te voorkomen dat filament verloren gaat tijdens het afvegen." +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Hiermee bepaalt u of de optie X-/Y-afstand supportstructuur voorrang krijgt boven de optie Z-afstand supportstructuur of vice versa. Wanneer X/Y voorrang krijgt boven Z, kan de X-/Y-afstand de supportstructuur wegduwen van het model, waardoor de daadwerkelijke Z-afstand tot de overhang wordt beïnvloed. Dit kan worden uitgeschakeld door de X-/Y-afstand niet toe te passen rond een overhang." -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Extra primehoeveelheid na intrekken voor afvegen" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Hiermee geeft u aan of de X/Y-coördinaten van de nul-positie van de printer zich in het midden van het printbare gebied bevinden." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Tijdens veegbewegingen kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Of de eindstop op de X-as zich in positieve (hoog X-coördinaat) of negatieve richting (laag X-coördinaat) bevindt." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Intreksnelheid voor afvegen" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Of de eindstop op de Y-as zich in positieve (hoog Y-coördinaat) of negatieve richting (laag Y-coördinaat) bevindt." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken en geprimed." +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Of de eindstop op de Z-as zich in positieve (hoog Z-coördinaat) of negatieve richting (laag Z-coördinaat) bevindt." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Intreksnelheid voor afvegen (intrekken)" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Hiermee bepaalt u of de extruders één verwarming delen in plaats van dat elke extruder zijn eigen verwarming heeft." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken." +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Hiermee bepaalt u of de extruders één nozzle delen in plaats van dat elke extruder zijn eigen nozzle heeft. Wanneer dit wordt ingesteld op 'true', wordt verwacht dat het G-code-script voor het opstarten van de printer alle extruders correct instelt in een initiële intrekstatus die bekend is en onderling compatibel is (nul of één filament niet ingetrokken). In dat geval wordt de initiële intrekstatus per extruder beschreven door de parameter 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Primesnelheid Intrekken voor afvegen" +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Hiermee geeft u aan of een verwarmd platform aanwezig is." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt geprimed." +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Of de machine in staat is de temperatuur van het werkvolume te stabiliseren." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Afvegen pauzeren" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Hiermee bepaalt u of het object in het midden van het platform moet worden gecentreerd (0,0) of dat het coördinatensysteem moet worden gebruikt waarin het object opgeslagen is." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pauzeren na het ongedaan maken van intrekken." +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Hiermee geeft u aan of u de temperatuur wilt reguleren vanuit Cura. Schakel deze optie uit als u de nozzletemperatuur buiten Cura om wilt reguleren." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Z-sprong afvegen" +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de platformtemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de platformtemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." -msgctxt "wipe_hop_enable description" -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 "Tijdens het afvegen 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 "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de nozzletemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de nozzletemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Hoogte Z-sprong voor afvegen" +msgctxt "clean_between_layers description" +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 "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze optie kan het gedrag van het intrekken bij de laagwissel beïnvloeden. Gebruik de instellingen voor Intrekken voor afvegen om het intrekken te regelen bij lagen waarbij het afveegscript actief is." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Hiermee bepaalt u of de opdracht moet worden ingevoegd dat bij aanvang moet worden gewacht totdat het platform op temperatuur is." -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprongsnelheid voor afvegen" +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Hiermee bepaalt u of het filament voor het printen met een blob wordt geprimed. Met het inschakelen van deze instelling wordt verzekerd dat er vanuit de extruder materiaal bij de nozzle beschikbaar is voordat het printen start. Het printen van een brim of skirt kan tevens fungeren als primen. In dat geval kan door het uitschakelen van deze instelling tijd worden bespaard." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Snelheid waarmee de Z-as wordt verplaatst tijdens de sprong." +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 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 "Hiermee bepaalt u of alle modellen laag voor laag moeten worden geprint of dat eerst het ene model helemaal klaar moet zijn voordat aan het volgende wordt begonnen. Eén voor één printen is mogelijk als a) slechts één extruder is ingeschakeld en b) alle modellen zodanig zijn gescheiden dat de hele printkop ertussen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X/Y-assen." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-positie afveegborstel" +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Hiermee bepaalt u of verschillende varianten van deze machine worden getoond. Deze worden beschreven in afzonderlijke json-bestanden." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "X-positie waar afveegscript start." +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." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Aantal afveegbewegingen" +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Hiermee bepaalt u of bij aanvang moet worden gewacht totdat de nozzle op temperatuur is." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Aantal keren dat de nozzle over de borstel beweegt." +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Breedte van een enkele vullijn." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Verplaatsingsafstand voor afvegen" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Breedte van een enkele lijn van het supportdak of de supportvloer." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "De afstand die de kop heen en weer wordt bewogen over de borstel." +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Breedte van een enkele lijn aan de bovenkant van de print." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maximale grootte kleine gaten" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "De breedte van een enkele lijn. Over het algemeen dient de breedte van elke lijn overeen te komen met de breedte van de nozzle. Wanneer deze waarde echter iets wordt verlaagd, resulteert dit in betere prints." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Gaten en contouren van onderdelen met een kleinere diameter dan deze worden afgedrukt met behulp van Klein kenmerksnelheid." +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Breedte van een enkele lijn van de primepijler." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maximale lengte klein kenmerk" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Breedte van een enkele skirt- of brimlijn." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Kenmerkcontouren die korter zijn dan deze lengte, worden afgedrukt met behulp van Klein kenmerksnelheid." +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Breedte van een enkele lijn van de supportvloer." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Klein kenmerksnelheid" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Breedte van een enkele lijn van het supportdak." -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." +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Breedte van een enkele lijn van de supportstructuur." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Kleine kenmerken eerste laagsnelheid" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Breedte van een enkele lijn aan de boven-/onderkant." -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." +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Breedte van een enkele wandlijn voor alle wandlijnen, behalve de buitenste." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Alternerende wandrichtingen" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Breedte van een enkele wandlijn." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alternerende wandrichtingen na elke laag en instroming. Nuttig voor materialen die spanning op kunnen bouwen, bijvoorbeeld voor het printen van metaal." +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Binnenhoeken raft verwijderen" +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Breedte van de lijnen in de middelste laag van de raft. Als u voor de tweede laag meer materiaal gebruikt, hechten de lijnen beter aan het platform." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Aantal wanden grondvlak raft" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "De breedte van de buitenste lijn van de wand. Wanneer deze waarde wordt verlaagd, kan nauwkeuriger worden geprint." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Breedte van de wand die dunne elementen van het model vervangt (volgens de minimum elementgrootte). Als de Minimumbreedte wandlijn dunner is dan de dikte van het element, wordt de wand even dik als het element zelf." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Instellingen opdrachtregel" +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-positie afveegborstel" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Instellingen die alleen worden gebruikt als CuraEngine niet wordt aangeroepen door de Cura-frontend." +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprongsnelheid voor afvegen" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Object centreren" +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Inactieve nozzle vegen op primepijler" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Verplaatsingsafstand voor afvegen" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Hiermee bepaalt u of het object in het midden van het platform moet worden gecentreerd (0,0) of dat het coördinatensysteem moet worden gebruikt waarin het object opgeslagen is." +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Nozzle afvegen tussen lagen" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Rasterpositie X" +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Afvegen pauzeren" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "De offset die in de X-richting wordt toegepast op het object." +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Aantal afveegbewegingen" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Rasterpositie Y" +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Intrekafstand voor afvegen" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "De offset die in de Y-richting wordt toegepast op het object." +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Intrekken voor afvegen inschakelen" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Rasterpositie Z" +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Extra primehoeveelheid na intrekken voor afvegen" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "De offset die wordt toegepast op het object in de z-richting. Hiermee kunt u de taak uitvoeren die voorheen 'Object Sink' werd genoemd." +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Primesnelheid Intrekken voor afvegen" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matrix rasterrotatie" +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Intreksnelheid voor afvegen (intrekken)" -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 "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Intreksnelheid voor afvegen" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Geleidelijke flow ingeschakeld" +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Z-sprong afvegen" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Hoogte Z-sprong voor afvegen" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Max. versnelling geleidelijke flow" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Binnen Vulling" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale versnelling voor geleidelijke flowveranderingen" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Tool voor actief schrijven na het verzenden van tijdelijke opdrachten naar inactieve tool. Vereist voor afdrukken met dubbele extruder met Smoothie of andere firmware met modale toolopdrachten." -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale flowversnelling in de beginlaag" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-eindstop in positieve richting" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "X-positie waar afveegscript start." -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Stapgrootte geleidelijke flowdiscretisatie" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y krijgt voorrang boven Z" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duur van elke stap in de geleidelijke flowverandering" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-eindstop in positieve richting" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Flowduur resetten" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-eindstop in positieve richting" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-sprong na Wisselen Extruder" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Hoogte Z-sprong na wisselen extruder" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hoogte Z-sprong" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-sprong Alleen over Geprinte Delen" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Snelheid Z-sprong" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-sprong wanneer ingetrokken" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Uitlijning Z-naad" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z-naadpositie" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatieve Z-naad" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-naad X" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-naad Y" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z krijgt voorrang boven X/Y" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "material label" -msgid "Material" -msgstr "Materiaal" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Groepeer de buitenwanden" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Stroom van de buitenste wand van het bovenoppervlak" +msgctxt "travel description" +msgid "travel" +msgstr "beweging" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "De afstand van de print tot de onderkant van de supportstructuur." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "De afstand tussen de boven-/onderkant van de supportstructuur en de print. Deze afstand zorgt ervoor dat de supportstructuren na het printen van het model kunnen worden verwijderd. De waarde wordt naar boven afgerond op een veelvoud van de laaghoogte." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duur van elke stap in de geleidelijke flowverandering" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Snelheid van de buitenste wand van het bovenoppervlak" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Geleidelijke veranderingen in flow inschakelen. Indien ingeschakeld, wordt de flow geleidelijk verhoogd/verlaagd tot de doelflow. Dit is handig voor printers met een bowdenbuis waarbij de flow niet onmiddellijk verandert wanneer de extrudermotor start/stopt." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Voor elke verplaatsing die langer is dan deze waarde, wordt de materiaalflow teruggezet op de doelflow van de paden." -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Snelheid van de binnenste wand van het bovenoppervlak" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Stapgrootte geleidelijke flowdiscretisatie" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Geleidelijke flow ingeschakeld" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Versnelling van de buitenste wand op bovenlaag" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Max. versnelling geleidelijke flow" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Maximale flowversnelling in de beginlaag" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Versnelling van de binnenwand op bovenlaag" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Maximale versnelling voor geleidelijke flowveranderingen" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Minimumsnelheid voor geleidelijke flowveranderingen voor de eerste laag" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Schok van de binnenste muur van het bovenoppervlak" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Brim primepijler" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Primepijlers hebben mogelijk de extra hechting van een brim nodig, ook als het model dit niet nodig heeft. Kan momenteel niet worden gebruikt met het hechtingstype 'Raft'." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Schok van de buitenste muur van het bovenoppervlak" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Flowduur resetten" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "De temperatuur waarmee de eerste laag wordt geprint. Stel deze optie in op 0 om speciale bewerkingen voor de eerste laag uit te schakelen." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 0cbb145fc02..ed823e183c5 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -561,6 +561,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Wybór ułożenia" + msgctxt "@label:button" msgid "Ask a question" msgstr "" @@ -625,6 +629,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Kopie zapasowe" +msgctxt "@label" +msgid "Balanced" +msgstr "Zrównoważony" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Baza (mm)" @@ -1009,6 +1017,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1253,10 +1265,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Domyślne" -msgctxt "@label" -msgid "Default" -msgstr "Domyślne" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Domyślne zachowanie dla zmienionych ustawień podczas zmiany profilu na inny: " @@ -2344,6 +2352,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Przed wysłaniem pliku upewnij się, że G-code jest odpowiedni do konfiguracji drukarki. Przedstawienie G-kodu może nie być dokładne." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Zarządzaj materiałami..." @@ -3425,6 +3449,10 @@ msgctxt "description" msgid "Provides support for writing 3MF files." msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." msgstr "" @@ -4308,6 +4336,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Zrównoważony profil został zaprojektowany w celu znalezienia równowagi między wydajnością, jakością powierzchni, właściwościami mechanicznymi i precyzją wymiarową." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Wysokość podstawy od stołu w milimetrach." @@ -5520,17 +5552,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" -msgctxt "@label" -msgid "Balanced" -msgstr "Zrównoważony" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Zrównoważony profil został zaprojektowany w celu znalezienia równowagi między wydajnością, jakością powierzchni, właściwościami mechanicznymi i precyzją wymiarową." - -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Wybór ułożenia" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Domyślne" #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 0d81dc6909f..8ad84481755 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -745,16 +745,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Odległość między drukowanymi liniami struktury podpory. To ustawienie jest obliczane przez gęstość podpory." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Odległość od wydruku do dolnej części podpory." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Odległość od wierzchołka podpory do wydruku." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Odległość od góry/dołu podpory do wydruku. Ta luka zapewnia luz, aby usunąć wsporniki po wydrukowaniu modelu. Ta wartość jest zaokrąglana do wielokrotności wysokości warstwy." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1096,6 +1096,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Ustawienie przepływu na liniach ścianek zewnętrznych." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Kompensacja przepływu na najbardziej zewnętrznej linii górnej powierzchni." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Kompensacja przepływu na liniach ściany na powierzchni górnej dla wszystkich linii ściany, z wyjątkiem najbardziej zewnętrznej." + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Ustawienie przepływu na warstwie górnej i dolnej." @@ -1284,6 +1292,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Grupuj ściany zewnętrzne" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Gyroid" @@ -2448,6 +2460,10 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Długość Czyszczenia Zew. Ściana" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Zewnętrzne ściany różnych wysp w tej samej warstwie są drukowane sekwencyjnie. Gdy jest włączone, ilość zmian przepływu jest ograniczona, ponieważ ściany są drukowane po jednym rodzaju na raz. Gdy jest wyłączone, liczba podróży między wyspami jest zmniejszana, ponieważ ściany na tych samych wyspach są grupowane." + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2501,8 +2517,20 @@ msgid "Prime Tower Acceleration" msgstr "Przyspieszenie Wieży Czyszczącej" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Obrys wieży czyszczącej" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2520,6 +2548,10 @@ msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Min. Objętość Wieży Czyszczącej" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Rozmiar Wieży Czyszczącej" @@ -2537,8 +2569,8 @@ msgid "Prime Tower Y Position" msgstr "Pozycja Wieży Czyszcz. Y" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Wieże czyszczące mogą potrzebować dodatkowej adhezji zapewnionej przez obrys, nawet jeśli model nie potrzebuje. Nie można używać z typem przyczepności „tratwa”." +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3608,6 +3640,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "Przyspieszenie, z jakim drukowane są górne warstwy tratwy." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Przyspieszenie, z jakim są drukowane wewnętrzne ścianki górnej powierzchni." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Przyspieszenie, z jakim są drukowane najbardziej zewnętrzne ściany górnej powierzchni." + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Przyspieszenie, z jakim drukowane są ściany." @@ -3748,6 +3788,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Odległość między liniami na górnej warstwie tratwy. Rozstaw powinien być równy szerokości linii, tak że powierzchnia jest pełna." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3944,6 +3988,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "Wysokość początkowej warstwy w mm. Grubsza początkowa warstwa powoduje lepszą przyczepność do stołu." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "Wysokość stopni w schodkowym dole podpory spoczywającej na modelu. Niska wartość utrudnia usunięcie podpory, ale zbyt duża wartość może prowadzić do niestabilnej podpory. Ustaw na zero, aby wyłączyć zachowanie schodkowe." @@ -4016,6 +4064,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "Długość materiału wycofanego podczas retrakcji." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "Materiał platformy roboczej zainstalowanej w drukarce." @@ -4108,6 +4160,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podpory." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są najbardziej zewnętrzne ściany górnej powierzchni." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są wewnętrzne ściany górnej powierzchni." + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są ściany." @@ -4492,6 +4552,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "Prędkość, w jaką są drukowane górne warstwy tratwy. Powinny być drukowane nieco wolniej, dzięki czemu dysza może powoli wypolerować sąsiednie linie powierzchni." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Prędkość drukowania wewnętrznych ścian górnej powierzchni." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Prędkość drukowania najbardziej zewnętrznych ścian górnej powierzchni." + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "Szybkość, z jaką wykonuje się pionowy ruch skoku Z. Jest to zwykle mniej niż prędkość drukowania, ponieważ trudniej się porusza stołem drukarki." @@ -4553,8 +4621,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "Temperatura, od której zaczyna się chłodzenie tuż przed końcem drukowania." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4632,6 +4700,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "Szerokość wieży czyszczącej." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "Szerokość wieży czyszczącej." @@ -4700,6 +4772,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Szer. Usuwania Górnej Skóry" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Przyspieszenie wewnętrznej powierzchni górnej ściany" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Szarpnięcie na najbardziej zewnętrznych ścianach górnej powierzchni" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Prędkość wewnętrznej powierzchni górnej ściany" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Przepływ wewnętrznej ściany(ach) górnej powierzchni" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Przyspieszenie zewnętrznej powierzchni górnej ściany" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Przepływ na najbardziej zewnętrznej linii górnej powierzchni" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Szarpnięcie na wewnętrznych ścianach górnej powierzchni" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Prędkość najbardziej zewnętrznych ścian górnej powierzchni" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Przysp. Górnej Pow. Skóry" @@ -5388,124 +5492,6 @@ msgctxt "travel description" msgid "travel" msgstr "ruch jałowy" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Grupuj ściany zewnętrzne" - -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Zewnętrzne ściany różnych wysp w tej samej warstwie są drukowane sekwencyjnie. Gdy jest włączone, ilość zmian przepływu jest ograniczona, ponieważ ściany są drukowane po jednym rodzaju na raz. Gdy jest wyłączone, liczba podróży między wyspami jest zmniejszana, ponieważ ściany na tych samych wyspach są grupowane." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Przepływ na najbardziej zewnętrznej linii górnej powierzchni" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Kompensacja przepływu na najbardziej zewnętrznej linii górnej powierzchni." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Przepływ wewnętrznej ściany(ach) górnej powierzchni" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Kompensacja przepływu na liniach ściany na powierzchni górnej dla wszystkich linii ściany, z wyjątkiem najbardziej zewnętrznej." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Prędkość najbardziej zewnętrznych ścian górnej powierzchni" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Prędkość drukowania najbardziej zewnętrznych ścian górnej powierzchni." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Prędkość wewnętrznej powierzchni górnej ściany" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Prędkość drukowania wewnętrznych ścian górnej powierzchni." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Przyspieszenie zewnętrznej powierzchni górnej ściany" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Przyspieszenie, z jakim są drukowane najbardziej zewnętrzne ściany górnej powierzchni." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Przyspieszenie wewnętrznej powierzchni górnej ściany" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Przyspieszenie, z jakim są drukowane wewnętrzne ścianki górnej powierzchni." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Szarpnięcie na wewnętrznych ścianach górnej powierzchni" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są wewnętrzne ściany górnej powierzchni." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Szarpnięcie na najbardziej zewnętrznych ścianach górnej powierzchni" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Maksymalna chwilowa zmiana prędkości, z jaką drukowane są najbardziej zewnętrzne ściany górnej powierzchni." - - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - - #~ 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)." @@ -5686,6 +5672,14 @@ msgstr "" #~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." #~ msgstr "Odległość między dyszą a liniami skierowanymi w dół. Większe prześwity powodują ukośne linie skierowanie w dół o mniej stromym kącie, co z kolei skutkuje mniejszymi połączeniami z następną warstwą. Dotyczy tylko Drukowania Drutu." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Odległość od wydruku do dolnej części podpory." + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Odległość od góry/dołu podpory do wydruku. Ta luka zapewnia luz, aby usunąć wsporniki po wydrukowaniu modelu. Ta wartość jest zaokrąglana do wielokrotności wysokości warstwy." + #~ msgctxt "wireframe_up_half_speed description" #~ msgid "" #~ "Distance of an upward move which is extruded with half speed.\n" @@ -6062,6 +6056,10 @@ msgstr "" #~ msgid "Prefer Retract" #~ msgstr "Preferuj Retrakcję" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Obrys wieży czyszczącej" + #~ msgctxt "prime_tower_purge_volume label" #~ msgid "Prime Tower Purge Volume" #~ msgstr "Pole Czyszczące Wieży Czyszcz." @@ -6070,6 +6068,10 @@ msgstr "" #~ msgid "Prime Tower Thickness" #~ msgstr "Grubość Wieży Czyszcz." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Wieże czyszczące mogą potrzebować dodatkowej adhezji zapewnionej przez obrys, nawet jeśli model nie potrzebuje. Nie można używać z typem przyczepności „tratwa”." + #~ msgctxt "wireframe_enabled description" #~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." #~ msgstr "Wydrukuj tylko zewnętrzną powierzchnię o słabej strukturze tkaniny, drukując \"w cienkim powietrzu\". Jest to realizowane poprzez poziomy wydruk konturów modelu w określonych przedziałach Z, które są połączone przez linie skierowane w górę i w dół po porzekątnej." @@ -6362,6 +6364,10 @@ msgstr "" #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." #~ msgstr "Temperatura stosowana dla obszaru roboczego. Jeżeli jest ustawione 0, temperatura nie będzie ustawiona." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Temperatura stosowana do drukowania pierwszej warstwy. Ustaw wartość 0, aby wyłączyć szczególną obsługę początkowej warstwy." + #~ msgctxt "material_bed_temperature_layer_0 description" #~ msgid "The temperature used for the heated build plate at the first layer." #~ msgstr "Temperatura stosowana przy podgrzewanym stole na pierwszej warstwie." diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 0179ae338b5..4bd6ccad15b 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: 2023-10-23 05:56+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -563,6 +563,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organizar Todos os Modelos em Grade" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "Posicionar Seleção" + msgctxt "@label:button" msgid "Ask a question" msgstr "Fazer uma pergunta" @@ -627,6 +631,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Backups" +msgctxt "@label" +msgid "Balanced" +msgstr "" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -1016,6 +1024,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Não foi possível interpretar a resposta de servidor." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Não foi possível conectar ao Marketplace." @@ -1266,10 +1278,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Default" -msgctxt "@label" -msgid "Default" -msgstr "Default" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: " @@ -2357,6 +2365,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Administrar Materiais..." @@ -3442,6 +3466,10 @@ msgctxt "description" msgid "Provides support for writing 3MF files." msgstr "Provê suporte à escrita de arquivos 3MF." +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." msgstr "Provê suporte à escrita de Formatos de Pacote Ultimaker." @@ -4325,6 +4353,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "O backup excede o tamanho máximo de arquivo." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "A altura-base da mesa de impressão em milímetros." @@ -5561,10 +5593,6 @@ msgstr "{} complementos falharam em baixar" #~ msgstr[0] "... e {0} outra" #~ msgstr[1] "... e {0} outras" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "Posicionar Seleção" - #~ msgctxt "@tooltip:button" #~ msgid "Become a 3D printing expert with UltiMaker e-learning." #~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." @@ -5573,6 +5601,10 @@ msgstr "{} complementos falharam em baixar" #~ msgid "Cura does not accurately display layers when Wire Printing is enabled." #~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Default" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 74a22e725be..54a979caf49 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: 2023-10-23 06:17+0200\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -746,16 +746,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte." msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Distância da parte inferior do suporte até a impressão." +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "Distância do topo do suporte à impressão." msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1097,6 +1097,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "Compensação de fluxo no filete de parede mais externo." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "Compensação de fluxo em filetes do topo e base." @@ -1285,6 +1293,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "Giróide" @@ -2449,6 +2461,10 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Distância de Varredura da Parede Externa" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "De Fora Pra Dentro" @@ -2502,8 +2518,20 @@ msgid "Prime Tower Acceleration" msgstr "Aceleração da Torre de Purga" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Brim da Torre de Purga" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2521,6 +2549,10 @@ msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volume Mínimo da Torre de Purga" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "Tamanho da Torre de Purga" @@ -2538,8 +2570,8 @@ msgid "Prime Tower Y Position" msgstr "Posição Y da Torre de Purga" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3613,6 +3645,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "A aceleração com que as camadas superiores do raft são impressas." +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "Aceleração com que se imprimem as paredes." @@ -3753,6 +3793,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência." @@ -3950,6 +3994,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada." @@ -4022,6 +4070,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "O comprimento de filamento retornado durante uma retração." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "O material da plataforma de impressão presente na impressora." @@ -4114,6 +4166,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas." +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "" + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas." @@ -4501,6 +4561,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes." +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "" + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil." @@ -4562,8 +4630,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão." msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4642,6 +4710,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "A largura da torre de purga." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "A largura da torre de purga." @@ -4710,6 +4782,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "Largura de Remoção do Contorno Superior" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "Aceleração da Superfície Superior" @@ -5398,47 +5502,6 @@ msgctxt "travel description" msgid "travel" msgstr "percurso" -# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual habilitado" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações de fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração máxima de fluxo da camada inicial" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho de passo da discretização de fluxo gradual" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada passo na alteração de fluxo gradual" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Duração de reset do fluxo" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - #~ 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)." @@ -5663,10 +5726,18 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately." #~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Distância da parte inferior do suporte até a impressão." + #~ msgctxt "support_z_distance description" #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height." #~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada." +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada." + #~ msgctxt "wireframe_up_half_speed description" #~ msgid "" #~ "Distance of an upward move which is extruded with half speed.\n" @@ -5691,10 +5762,18 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Dual Extrusion Overlap" #~ msgstr "Sobreposição de Extrusão Dual" +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duração de cada passo na alteração de fluxo gradual" + #~ msgctxt "support_enable label" #~ msgid "Enable Support" #~ msgstr "Habilitar Suportes" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." + #~ msgctxt "support_enable description" #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs." #~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes." @@ -5811,6 +5890,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Flow rate compensation max extrusion offset" #~ msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo" +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." + #~ msgctxt "machine_gcode_flavor label" #~ msgid "G-code Flavour" #~ msgstr "Sabor de G-Code" @@ -5855,6 +5938,19 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface." #~ msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa." +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamanho de passo da discretização de fluxo gradual" + +# ## Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Fluxo gradual habilitado" + +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleração máxima do fluxo gradual" + #~ msgctxt "machine_heated_bed label" #~ msgid "Has heated build plate" #~ msgstr "Tem mesa de impressão aquecida" @@ -5911,6 +6007,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Initial Layer Z Offset" #~ msgstr "Deslocamento em Z da Camada Inicial" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleração máxima de fluxo da camada inicial" + #~ msgctxt "wall_x_extruder_nr label" #~ msgid "Inner Walls Extruder" #~ msgstr "Extrusor das Paredes Internas" @@ -5991,6 +6091,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Maximum Z Speed" #~ msgstr "Velocidade Máxima em Z" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleração máxima para alterações de fluxo gradual" + #~ 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." @@ -6039,6 +6143,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." #~ msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" + #~ msgctxt "retraction_combing option noskin" #~ msgid "No Skin" #~ msgstr "Evita Contornos" @@ -6103,6 +6211,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Prefer Retract" #~ msgstr "Preferir Retração" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Brim da Torre de Purga" + #~ msgctxt "prime_tower_purge_volume label" #~ msgid "Prime Tower Purge Volume" #~ msgstr "Volume de Purga da Torre de Purga" @@ -6111,6 +6223,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "Prime Tower Thickness" #~ msgstr "Espessura da Torre de Purga" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Torres de Prime podem precisar de aderência extra dada por um brim mesmo se o modelo não precisar. No momento não pode ser usado com o tipo de aderência 'Raft'." + #~ msgctxt "wireframe_enabled description" #~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." #~ msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo." @@ -6143,6 +6259,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "RepRap (Volumetric)" #~ msgstr "RepRap (Volumétrico)" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Duração de reset do fluxo" + #~ 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." @@ -6463,6 +6583,10 @@ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é r #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." #~ msgstr "A temperatura usada para o volume de construção. Se o valor for zero, a temperatura de volume de impressão não será ajustada." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial." + #~ msgctxt "material_print_temperature description" #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually." #~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 48c598458e2..c6e09d05e9c 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -137,8 +138,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Terá de reiniciar a aplicação para ativar estas alterações." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Adicione definições de materiais e plug-ins do Marketplace\n- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Adicione definições de materiais e plug-ins do Marketplace\n" +"- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins\n" +"- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -164,6 +171,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Ficheiro 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Gravador 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "O plug-in Gravador 3MF está danificado." @@ -184,29 +199,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Só as definições alteradas pelo utilizador é que serão guardadas no perfil personalizado.
    Para materiais que oferecem suporte, o novo perfil personalizado herdará propriedades de %1." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Processador do OpenGL: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Vendedor do OpenGL: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versão do OpenGL: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

    \n

    Por favor utilize o botão "Enviar relatório" para publicar um relatório de erros automaticamente nos nossos servidores

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

    \n" +"

    Por favor utilize o botão "Enviar relatório" para publicar um relatório de erros automaticamente nos nossos servidores

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Ups, o UltiMaker Cura encontrou um possível problema.

    \n

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    \n

    Os backups estão localizados na pasta de configuração.

    \n

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Ups, o UltiMaker Cura encontrou um possível problema.

    \n" +"

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    \n" +"

    Os backups estão localizados na pasta de configuração.

    \n" +"

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

    \n

    {model_names}

    \n

    Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

    \n

    Ver o guia de qualidade da impressão

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Um, ou mais, dos modelos 3D podem ter menos qualidade de impressão devido à dimensão do modelo 3D e definição de material:

    \n" +"

    {model_names}

    \n" +"

    Descubra como assegurar a melhor qualidade e fiabilidade possível da impressão.

    \n" +"

    Ver o guia de qualidade da impressão

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -226,6 +269,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Ficheiro AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor de AMF" + msgctxt "@label" msgid "Abort" msgstr "Cancelar" @@ -262,6 +309,10 @@ msgctxt "@button" msgid "Accept" msgstr "Aceitar" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." + msgctxt "@label" msgid "Account synced" msgstr "Conta sincronizada" @@ -354,6 +405,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Adicionar impressora {name} ({model}) a partir da sua conta" @@ -390,10 +442,23 @@ msgctxt "@button" msgid "Agree" msgstr "Concordar" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Todos os Ficheiros (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Todos os Formatos Suportados ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir o envio de dados anónimos" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite abrir e visualizar ficheiros G-code." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Perguntar sempre isto" @@ -466,6 +531,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Tem a certeza de que pretende mover %1 para o topo da fila?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?" @@ -474,6 +540,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Tem a certeza de que deseja iniciar um novo projeto? Isto irá apagar tudo na base de construção assim como quaisquer definições que não tenham sido guardadas." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!" @@ -486,6 +557,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Organizar todos os modelos numa grelha" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Faça uma pergunta" @@ -534,6 +609,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e Repor a Configuração" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Efetua uma cópia de segurança e repõe a sua configuração." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" @@ -546,6 +625,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Cópias de segurança" +msgctxt "@label" +msgid "Balanced" +msgstr "Equilibrado" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Base (mm)" @@ -622,10 +705,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Não se consegue ligar a uma impressora UltiMaker?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Não é possível importar o perfil de {0} antes de ser adicionada uma impressora." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Não é possível abrir outro ficheiro enquanto o G-code estiver a carregar. Importação {0} ignorada" @@ -634,6 +719,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Não é possível escrever no ficheiro UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Cancelar" + msgctxt "@button" msgid "Cancel" msgstr "Cancelar" @@ -694,9 +783,25 @@ msgctxt "@label" msgid "Checking..." msgstr "A verificar..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Procura e verifica se existem atualizações de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. \n\nA estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "" +"Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. \n" +"\n" +"A estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" @@ -774,6 +879,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Ficheiro G-code comprimido" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-code comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gravador de G-code comprimido" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Alterações na configuração" @@ -810,6 +923,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Confirmar Alteração de Diâmetro" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Confirmar Remoção" + msgctxt "@action:button" msgid "Connect" msgstr "Ligar" @@ -842,6 +959,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Ligada através da cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulte a Comunidade UltiMaker." @@ -882,6 +1003,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Não é possível criar um arquivo a partir do directório de dados do utilizador: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}." @@ -894,6 +1016,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Não foi possível interpretar a resposta do servidor." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Não foi possível ligar ao Marketplace." @@ -906,6 +1032,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Não foi possível guardar o arquivo de material em {}:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Não foi possível guardar em {0}: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Não foi possível guardar no Disco Externo {0}: {1}" @@ -914,17 +1046,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Não foi possível carregar os dados para a impressora." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}\nSem permissão para executar o processo." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Não foi possível iniciar o EnginePlugin: {self._plugin_id}\n" +"Sem permissão para executar o processo." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}\nO sistema operativo está a bloquear (antivírus)?" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Não foi possível iniciar o EnginePlugin: {self._plugin_id}\n" +"O sistema operativo está a bloquear (antivírus)?" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}\nO recurso está temporariamente indisponível" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Não foi possível iniciar o EnginePlugin: {self._plugin_id}\n" +"O recurso está temporariamente indisponível" msgctxt "@title:window" msgid "Crash Report" @@ -966,6 +1113,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crie projetos de impressão na Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "A criar a cópia de segurança..." @@ -978,10 +1129,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cópias de segurança do Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil Cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de perfis Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Ficheiro 3MF de Projeto Cura" @@ -994,13 +1157,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Não é possível iniciar o Cura" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade.\nO Cura tem o prazer de utilizar os seguintes projetos open source:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade.\n" +"O Cura tem o prazer de utilizar os seguintes projetos open source:" msgctxt "@label" msgid "Cura language" @@ -1010,6 +1178,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end do CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Moeda:" @@ -1090,10 +1270,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Predefinição" -msgctxt "@label" -msgid "Default" -msgstr "Predefinição" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Comportamento predefinido para valores de definição alterados ao mudar para um perfil diferente: " @@ -1266,10 +1442,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Ejetar" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejetar Disco Externo {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura." @@ -1294,6 +1472,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Ativado" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "G-code final" @@ -1322,6 +1504,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Introduza o endereço IP da sua impressora." +msgctxt "@info:title" +msgid "Error" +msgstr "Erro" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Determinação da origem do erro" @@ -1366,6 +1552,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação bem-sucedida" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado para {0}" @@ -1374,6 +1561,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Tire mais partido do UltiMaker Cura com plug-ins e perfis de materiais." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" + msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -1410,6 +1601,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Não foi possível criar o ficheiro de materiais para sincronizar com as impressoras." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco." @@ -1418,22 +1610,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Falha ao exportar material para %1: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Falha ao exportar perfil para {0}: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Falha ao exportar perfil para {0}: O plug-in de gravação comunicou uma falha." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Falha ao importar perfil de {0}: {1}" @@ -1466,6 +1663,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Peso do Filamento" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "O Ficheiro Já Existe" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Ficheiro Guardado" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "O ficheiro {0} não contém qualquer perfil válido." @@ -1498,6 +1704,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Atualização de firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador Atualizações Firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "O firmware não pode ser atualizado porque a ligação com a impressora não suporta a atualização de firmware." @@ -1594,6 +1808,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Ficheiro G-code" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de perfis G-code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Gravador de G-code" + msgctxt "@label" msgid "G-code flavor" msgstr "Variante do G-code" @@ -1626,6 +1852,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Altura do pórtico" +msgctxt "@title:tab" +msgid "General" +msgstr "Geral" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." @@ -1658,6 +1888,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Posicionamento da grelha" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grupo #{group_nr}" @@ -1730,6 +1961,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Se a sua impressora não estiver na lista, por favor, consulte o guia de resolução de problemas de impressão em rede" +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de imagens" + msgctxt "@action:button" msgid "Import" msgstr "Importar" @@ -1978,6 +2213,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Saber mais" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Saber mais" + msgctxt "@button" msgid "Learn more" msgstr "Saber mais" @@ -2006,6 +2245,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista esquerda" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de perfis antigos do Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe os programadores quando houver algum problema." @@ -2086,6 +2329,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Relatórios" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Perdeu-se a ligação com a impressora" @@ -2094,6 +2341,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Definições da Máquina" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Função Definições da Máquina" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Máquinas" @@ -2106,6 +2357,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Certifique-se de que este g-code é apropriado para a sua impressora e respetiva configuração, antes de enviar o ficheiro para a impressora. A representação do g-code poderá não ser exata." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Gerir Materiais..." @@ -2154,6 +2421,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Faça aqui a gestão dos plug-ins e perfis de materiais do Ultimaker Cura. Certifique-se de que mantém os plug-ins atualizados e que efetua regularmente uma cópia de segurança da sua configuração." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gere as ligações de rede com as impressoras em rede UltiMaker." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" @@ -2166,6 +2441,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mercado" +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2182,6 +2461,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Cor do Material" +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Materiais" + msgctxt "@label" msgid "Material Type" msgstr "Tipo de Material" @@ -2226,6 +2509,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modo" +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelos" + msgctxt "@info:title" msgid "Model Errors" msgstr "Erros no modelo" @@ -2242,6 +2529,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitorizar" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de monitorização" + msgctxt "@action:button" msgid "Monitor print" msgstr "Monitorizar a impressão" @@ -2316,6 +2607,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Erro de rede" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "A nova versão de firmware %s estável está disponível" @@ -2328,6 +2620,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "As novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para a sua {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." @@ -2374,6 +2667,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Nenhuma estimativa de custos disponível" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nenhum perfil personalizado para importar no ficheiro {0}" @@ -2482,6 +2776,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Número de Extrusores" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Idioma do Sistema Operativo" @@ -2502,6 +2800,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Só Camadas Superiores" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Apenas pode ser carregado um ficheiro G-code de cada vez. Importação {0} ignorada" @@ -2635,7 +2934,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Colar da área de transferência" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Colocar em pausa" @@ -2660,6 +2958,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Definições Por-Modelo" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de definições Por-Modelo" + msgid "Perspective" msgstr "Perspetiva" @@ -2696,8 +2998,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Forneça as permissões necessárias ao autorizar esta aplicação." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Certifique-se de que é possível estabelecer ligação com a impressora:\n- Verifique se a impressora está ligada.\n- Verifique se a impressora está ligada à rede.\n- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Certifique-se de que é possível estabelecer ligação com a impressora:\n" +"- Verifique se a impressora está ligada.\n" +"- Verifique se a impressora está ligada à rede.\n" +"- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +3021,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Forneça um nome para este perfil." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Leia e aceite a licença de utilização do plug-in." @@ -2720,8 +3034,16 @@ msgid "Please remove the print" msgstr "Remova a impressão" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Reveja as definições e verifique se os seus modelos:\n- Cabem dentro do volume de construção\n- Estão atribuídos a uma extrusora ativada\n- Não estão todos definidos como objetos modificadores" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Reveja as definições e verifique se os seus modelos:\n" +"- Cabem dentro do volume de construção\n" +"- Estão atribuídos a uma extrusora ativada\n" +"- Não estão todos definidos como objetos modificadores" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2771,6 +3093,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-Processamento" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in de pós-processamento" @@ -2787,6 +3113,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparação" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "A preparar..." @@ -2807,6 +3137,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Pré-visualizar" +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de pré-visualização" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre de preparação" @@ -2935,6 +3269,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "As definições da impressora serão atualizadas para corresponder às definições guardadas com o projeto." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Impressoras" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Impressoras adicionadas a partir da Digital Factory:" @@ -2995,6 +3333,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Definições do perfil" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "O perfil {0} é de um formato de ficheiro desconhecido ou está corrompido." @@ -3019,18 +3358,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Linguagem de programação" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "O ficheiro de projeto {0} contém um tipo de máquina desconhecido {1}. Não é possível importar a máquina. Em vez disso, serão importados os modelos." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "O ficheiro de projeto {0} está corrompido: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "O ficheiro de projeto {0} foi criado utilizando perfis que são desconhecidos para esta versão do UltiMaker Cura." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "O projeto de ficheiro {0} ficou subitamente inacessível: {1}." @@ -3039,6 +3382,106 @@ msgctxt "@label" msgid "Properties" msgstr "Propriedades" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Disponibiliza as ações da máquina para atualizar o firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornece uma fase de monitorização no Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Permite a visualização (simples) dos objetos como sólidos." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornece uma fase de preparação no Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornece uma fase de pré-visualização no Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Possibilita a exportação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornece suporte para importar perfis Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Permite importar perfis a partir de ficheiros g-code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Permite importar perfis de versões antigas do Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornece suporte para ler ficheiros 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornece suporte para ler ficheiros AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornece suporte para ler pacotes de formato Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornece suporte para ler ficheiros X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornece suporte para a leitura de ficheiros modelo." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Possiblita a gravação de ficheiros 3MF." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite a gravação de arquivos Ultimaker Format." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornece as definições por-modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permite a visualização em Raio-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Permite pré-visualizar os dados das camadas seccionadas." + msgctxt "@label" msgid "PyQt version" msgstr "Versão PyQt" @@ -3059,6 +3502,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Versão Qt" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'." @@ -3075,6 +3519,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Sair %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê o g-code a partir de um arquivo comprimido." + msgctxt "@button" msgid "Recommended" msgstr "Recomendado" @@ -3127,6 +3575,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Disco Externo" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in de dispositivo de saída da unidade amovível" + msgctxt "@action:button" msgid "Remove" msgstr "Remover" @@ -3143,6 +3595,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Mudar Nome" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Mudar Nome do Perfil" @@ -3279,14 +3735,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar no Disco Externo" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar no Disco Externo {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado no Disco Externo {0} como {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "A Guardar" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "A Guardar no Disco Externo {0}" @@ -3379,6 +3842,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviar materiais para a impressora" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry Logger" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicação em série" @@ -3411,6 +3878,10 @@ msgctxt "@label" msgid "Settings" msgstr "Definições" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Definições" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "As definições foram alteradas de forma a corresponder aos extrusores disponíveis de momento:" @@ -3571,6 +4042,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Inicie a sessão na plataforma UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Visualização por camadas" + msgctxt "@tooltip" msgid "Skin" msgstr "Revestimento" @@ -3599,6 +4074,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seccionar automaticamente ao alterar as definições." +msgctxt "name" +msgid "Slice info" +msgstr "Informações do seccionamento" + msgctxt "@message:title" msgid "Slicing failed" msgstr "O seccionamento falhou" @@ -3615,13 +4094,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Suavização" +msgctxt "name" +msgid "Solid View" +msgstr "Vista Sólidos" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista Sólidos" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n\nClique para tornar estas definições visíveis." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.\n" +"\n" +"Clique para tornar estas definições visíveis." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3636,8 +4125,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Alguns valores de definição definidos em %1 foram substituídos." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n\nClique para abrir o gestor de perfis." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.\n" +"\n" +"Clique para abrir o gestor de perfis." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +4158,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Patrocinar o Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Patrocinar o Cura" @@ -3709,6 +4202,10 @@ msgctxt "@label" msgid "Strength" msgstr "Força" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material exportado com êxito para %1" @@ -3717,6 +4214,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material %1 importado com êxito" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." @@ -3737,6 +4235,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Remover Suportes" +msgctxt "name" +msgid "Support Eraser" +msgstr "Eliminador de suportes" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Enchimento dos Suportes" @@ -3843,6 +4345,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "A cópia de segurança excede o tamanho de ficheiro máximo." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "O perfil equilibrado é projetado para encontrar um equilíbrio entre a produtividade, a qualidade da superfície, as propriedades mecânicas e a precisão dimensional." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "A altura da \"Base\" desde a base de construção em milímetros." @@ -3899,6 +4405,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "O extrusor a utilizar para imprimir os suportes. Definição usada com múltiplos extrusores." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "O firmware que é expedido com as novas impressoras funciona corretamente, mas as novas versões costumam ter mais funcionalidades e melhorias." @@ -3958,8 +4469,20 @@ msgid "The nozzle inserted in this extruder." msgstr "O nozzle inserido neste extrusor." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "O padrão do material de enchimento da impressão:\n\nPara impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono.\n\nPara impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"O padrão do material de enchimento da impressão:\n" +"\n" +"Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono.\n" +"\n" +"Para impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4111,6 +4634,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Esta impressora aloja um grupo de %1 impressoras." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "O perfil {0} contém dados incorretos, não foi possível importá-lo." @@ -4124,8 +4648,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "O projeto contém materiais ou plug-ins que não estão atualmente instalados no Cura.
    Instale os pacotes em falta e abra novamente o projeto." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Esta definição tem um valor que é diferente do perfil.\n\nClique para restaurar o valor do perfil." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Esta definição tem um valor que é diferente do perfil.\n" +"\n" +"Clique para restaurar o valor do perfil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4142,8 +4672,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n\nClique para restaurar o valor calculado." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.\n" +"\n" +"Clique para restaurar o valor calculado." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4169,6 +4705,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Para sincronizar automaticamente os perfis de materiais com todas as impressoras ligadas à Digital Factory, tem de ter uma sessão iniciada no Cura." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para estabelecer uma ligação, visite {website_link}" @@ -4181,6 +4718,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}" @@ -4229,6 +4767,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Tentou restaurar um Cura backup sem existirem dados ou metadados correctos." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor de Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Resolução de problemas" @@ -4245,10 +4787,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Tipo" +msgctxt "@label" +msgid "Type" +msgstr "Tipo" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor de UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Gravador de UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impressão USB" +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Conta UltiMaker" @@ -4265,6 +4823,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Arquivo UltiMaker Format" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ligação de rede UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Pacote Aprovado pela UltiMaker" @@ -4273,6 +4835,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plug-in Aprovado pela UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Funções para impressoras Ultimaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Impressora da UltiMaker" @@ -4285,6 +4851,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Biblioteca Digital UltiMaker" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não é possível adicionar o perfil." @@ -4293,13 +4863,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Não é possível posicionar todos os objetos dentro do volume de construção" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Não é possível encontrar o servidor EnginePlugin local executável para: {self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Não é possível interromper o EnginePlugin em execução.{self._plugin_id}\nAcesso negado." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Não é possível interromper o EnginePlugin em execução.{self._plugin_id}\n" +"Acesso negado." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4321,10 +4897,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Não é possível seccionar porque a torre de preparação ou a(s) posição(ões) de preparação é(são) inválidas." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Não é possível seccionar devido a algumas definições por modelo. As seguintes definições apresentam erros num ou mais modelos: {error_labels}" @@ -4333,6 +4911,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Não é possível seccionar com o material atual, uma vez que é incompatível com a impressora ou configuração selecionada." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Não é possível seccionar com as definições atuais. As seguintes definições apresentam erros: {0}" @@ -4381,6 +4960,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Pacote desconhecido" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de erro desconhecido ao carregar trabalho de impressão: {0}" @@ -4445,13 +5025,117 @@ msgctxt "@button" msgid "Updating..." msgstr "A actualizar..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Carregar firmware personalizado" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Carregar um trabalho de impressão na impressora." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Carregar firmware personalizado" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Carregar um trabalho de impressão na impressora." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4477,6 +5161,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Biblioteca de utilidades, incluindo a geração em Voronoi" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização da versão 2.1 para 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização da versão 2.2 para 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização da versão 2.5 para 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização da versão 2.6 para 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização da versão 2.7 para 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização da versão 3.0 para 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização da versão 3.2 para 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização da versão 3.3 para 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização da versão 3.4 para 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização da versão 3.5 para 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização da versão 4.0 para 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização da versão 4.1 para 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização da versão 4.11 para a versão 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização do Cura versão 4.13 para 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização da versão 4.2 para 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização da versão 4.3 para 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização da versão 4.4 para a versão 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização da versão 4.5 para a versão 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização da versão 4.6.2 para a versão 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização da versão 4.7 para 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização da versão 4.8 para 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização da versão 4.9 para 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização da versão 5.2 para 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização da versão 5.3 para 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização da versão 5.4 para 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualize as impressoras na fábrica digital" @@ -4525,6 +5313,11 @@ msgctxt "@button" msgid "Want more?" msgstr "Deseja mais?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Aviso" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Aviso: o perfil não é visível porque o respetivo tipo de qualidade '{0}' não está disponível para a configuração atual. Mude para uma combinação de material/bocal que possa utilizar este tipo de qualidade." @@ -4585,6 +5378,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Largura (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Grava o g-code num arquivo comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Grava o g-code num ficheiro." + msgctxt "@label" msgid "X (Width)" msgstr "X (Largura)" @@ -4597,6 +5398,10 @@ msgctxt "@label" msgid "X min" msgstr "X mín" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista Raio-X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista Raio-X" @@ -4609,6 +5414,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Ficheiro X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profundidade)" @@ -4626,19 +5435,31 @@ msgid "Yes" msgstr "Sim" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" msgstr "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada.Tem a certeza de que pretende continuar?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?" -msgstr[1] "Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\n" +"Tem a certeza de que pretende continuar?" +msgstr[1] "" +"Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\n" +"Tem a certeza de que pretende continuar?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Está a tentar ligar a uma impressora que não tem o UltiMaker Connect. Atualize a impressora para o firmware mais recente." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Está a tentar ligar a {0}, mas esta não é Host de um grupo. Pode visitar a página Web para a configurar como Host do grupo." @@ -4649,7 +5470,10 @@ msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botã msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Alterou algumas definições do perfil.\nPretende manter estas alterações depois de trocar de perfis?\nComo alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." +msgstr "" +"Alterou algumas definições do perfil.\n" +"Pretende manter estas alterações depois de trocar de perfis?\n" +"Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4679,9 +5503,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "A sua nova impressora aparecerá automaticamente no Cura" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "A sua impressora {printer_name} pode ser ligada através da cloud.\n Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"A sua impressora {printer_name} pode ser ligada através da cloud.\n" +" Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" msgctxt "@label" msgid "Z" @@ -4739,6 +5568,7 @@ msgctxt "@label" msgid "version: %1" msgstr "versão: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "A impressora {printer_name} vai ser removida até à próxima sincronização de conta." @@ -4747,630 +5577,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Falhou a transferência de {} plug-ins" -msgid "Provides support for exporting Cura profiles." -msgstr "Oferece apoio para a exportação de perfis Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de perfis Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." - -msgctxt "name" -msgid "Slice info" -msgstr "Informações do seccionamento" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Predefinição" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Permite importar perfis de versões antigas do Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de perfis antigos do Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornece suporte para ler ficheiros X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite a gravação de arquivos Ultimaker Format." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gravador de UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização da versão 3.5 para 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização da versão 4.1 para 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização da versão 4.7 para 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização da versão 4.9 para 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização da versão 3.2 para 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização da versão 2.7 para 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização da versão 4.11 para a versão 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização da versão 2.6 para 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização da versão 4.8 para 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização da versão 4.3 para 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização da versão 3.3 para 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização da versão 4.4 para a versão 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização da versão 2.5 para 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização da versão 2.1 para 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização da versão 4.2 para 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização da versão 5.2 para 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização da versão 4.0 para 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização da versão 2.2 para 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização da versão 3.4 para 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização do Cura versão 4.13 para 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Atualização da versão 5.4 para 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização da versão 4.5 para a versão 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização da versão 3.0 para 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização da versão 4.6.2 para a versão 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Atualização da versão 5.3 para 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" - -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-Processamento" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Permite pré-visualizar os dados das camadas seccionadas." - -msgctxt "name" -msgid "Simulation View" -msgstr "Visualização por camadas" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornece suporte para importar perfis Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornece as definições por-modelo." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de definições Por-Modelo" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornece uma fase de pré-visualização no Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de pré-visualização" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Eliminador de suportes" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite abrir e visualizar ficheiros G-code." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-code" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Efetua uma cópia de segurança e repõe a sua configuração." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in de dispositivo de saída da unidade amovível" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Materiais" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Funções para impressoras Ultimaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permite a visualização em Raio-X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista Raio-X" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gere as ligações de rede com as impressoras em rede UltiMaker." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ligação de rede UltiMaker" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Função Definições da Máquina" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornece suporte para a leitura de ficheiros modelo." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor de Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornece uma fase de monitorização no Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de monitorização" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de imagens" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Disponibiliza as ações da máquina para atualizar o firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de firmware" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end do CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornece uma fase de preparação no Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparação" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Biblioteca Digital UltiMaker" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Procura e verifica se existem atualizações de firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador Atualizações Firmware" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Grava o g-code num ficheiro." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gravador de G-code" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." - -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelos" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornece suporte para ler ficheiros 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornece suporte para ler ficheiros AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor de AMF" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Permite importar perfis a partir de ficheiros g-code." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de perfis G-code" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Permite a visualização (simples) dos objetos como sólidos." - -msgctxt "name" -msgid "Solid View" -msgstr "Vista Sólidos" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry Logger" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê o g-code a partir de um arquivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-code comprimido" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornece suporte para ler pacotes de formato Ultimaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor de UFP" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Possiblita a gravação de ficheiros 3MF." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Gravador 3MF" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Grava o g-code num arquivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gravador de G-code comprimido" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Possibilita a exportação de perfis do Cura." - -msgctxt "@info:title" -msgid "Error" -msgstr "Erro" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Cancelar" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Definições" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Saber mais" - -msgctxt "@title:tab" -msgid "General" -msgstr "Geral" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Tem a certeza de que deseja remover o perfil %1? Não é possível desfazer esta ação!" - -msgctxt "@label" -msgid "Type" -msgstr "Tipo" - -msgctxt "@info:title" -msgid "Saving" -msgstr "A Guardar" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "O Ficheiro Já Existe" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Todos os Formatos Suportados ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Não foi possível guardar em {0}: {1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Aviso" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Impressoras" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Ficheiro Guardado" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Confirmar Remoção" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Todos os Ficheiros (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Equilibrado" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "O perfil equilibrado é projetado para encontrar um equilíbrio entre a produtividade, a qualidade da superfície, as propriedades mecânicas e a precisão dimensional." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Oferece apoio para a exportação de perfis Cura." diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index edd642b9cad..2c0a17fafa5 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Extrusor" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação do Extrusor" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência à Base Construção" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventoinha de arrefecimento de impressão do Extrusor" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "G-code final para executar ao mudar deste extrusor." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Extrusor" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Final do Extrusor" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "G-code final para executar ao mudar deste extrusor." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posição Final Absoluta do Extrusor" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posição X Final do Extrusor" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "A coordenada X da posição final ao desligar o extrusor." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posição Y Final do Extrusor" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "A coordenada Y da posição final ao desligar o extrusor." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação do Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação do Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação do Extrusor" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventoinha de arrefecimento de impressão do Extrusor" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Inicial do Extrusor" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "G-code inicial para executar ao mudar para este extrusor." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posição Inicial Absoluta do Extrusor" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Posição X Inicial do Extrusor" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "A coordenada X da posição inicial ao ligar o extrusor." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Posição Y Inicial do Extrusor" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "A coordenada Y da posição inicial ao ligar o extrusor." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão." + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID do Nozzle" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desvio X do Nozzle" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "A coordenada X do desvio do nozzle." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Desvio Y do Nozzle" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "A coordenada Y do desvio do nozzle." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "G-code inicial para executar ao mudar para este extrusor." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Base Construção" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "A coordenada X da posição final ao desligar o extrusor." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "A coordenada X do desvio do nozzle." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação do Extrusor" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "A coordenada X da posição inicial ao ligar o extrusor." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "A coordenada Y da posição final ao desligar o extrusor." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação do Extrusor" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "A coordenada Y do desvio do nozzle." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "A coordenada Y da posição inicial ao ligar o extrusor." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 54c107e3f6e..6ab3ea25da8 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5470 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "A distância a manter em relação às extremidades do modelo. \"Engomar\" até à extremidade da superfície pode resultar em arestas irregulares na impressão." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "O nome do seu modelo de impressora 3D." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Um factor que indica a dimensão da compressão dos filamentos entre o alimentador e a câmara do bocal, utilizado para determinar a distância a que se deve mover o material para efetuar uma substituição de filamentos." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar Variantes da Máquina" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas de revestimento da superfície superior utilizarem o padrão de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas da superfície superiores/inferiores utilizarem os padrões de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code Inicial" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos de 0 graus." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Comandos G-code a serem executados no início – separados por \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code Final" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Comandos G-code a serem executados no fim – separados por \n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do material" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus para os padrões de Linhas ou Ziguezague e 45 graus para todos os outros padrões)." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. Este é definido automaticamente." +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." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar pelo Aquecimento da Base de Construção" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar pelo aquecimento do nozzle" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta Preparação Extrusor" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas do Material" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variação máxima das camadas adaptáveis" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Incluir ou não os comandos de temperatura do nozzle no início do G-code. Se o gcode_inicial já incluir os comandos de temperatura do nozzle, o front-end do Cura desativará automaticamente esta definição." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Dimensão da topografia das camadas adaptáveis" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Base de Construção" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho da fase de variação das camadas adaptáveis" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Incluir ou não os comandos de temperatura da base de construção no início do gcode. Se o gcode_inicial já incluir os comandos de temperatura da base de construção, o front-end do Cura desativará automaticamente esta definição." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Máquina" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional.\n" +"Esta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área de impressão." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência à Base de Construção" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Máquina" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Tendência de aderência" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área de impressão." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento, como percentagem das larguras de linha das linhas de revestimento e da parede mais interna. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer percentagem acima de 50% pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede neste ponto." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura da Máquina" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer valor acima da metade da largura da parede pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) da área de impressão." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do enchimento da impressão." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Base de Construção" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade dos tectos e pisos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos ramos. Um valor mais alto resulta em melhor saliências, mas os suportes são mais difíceis de remover. Use um Teto de Suporte se os valores forem muito altos ou certificar-se de que a densidade dos suportes é igualmente elevada no topo." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Base de Construção" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da base de construção instalada na impressora." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Após a máquina mudar de um extrusor para outro, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle deixe, na parte exterior de uma impressão, algum material que possa escorrer quando acaba de imprimir." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Base de Construção Aquecida" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Simultaneamente" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Se a máquina tem ou não uma base de construção aquecida." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)." -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem estabilização da temperatura do volume de construção" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar remoção de malha" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Direções de parede alternadas" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Alterne as inserções e as direções das parede em camadas em cada camada. Útil para materiais que podem acumular tensão, como para a impressão de metal." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Ferramenta ativa escrever sempre" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escreva a ferramenta ativa depois de enviar comandos temporários para a ferramenta inativa. Necessário para Extrusora Dupla com Smoothie ou outro firmware com comandos de ferramentas modais." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Retrair sempre quando se vai começar uma parede exterior." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "O Centro é a Origem" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Quantidade de desvio aplicado a todos os polígonos em cada camada. Valores positivos podem compensar buracos demasiado grandes; os valores negativos podem compensar buracos demasiado pequenos." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Quantidade de desvio aplicado a todos os polígonos na primeira camada. Um valor negativo pode compensar o \"esmagamento\" da camada inicial, conhecido como \"pé de elefante\"." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Quantidade de desvio aplicado a todos os polígonos de suporte em cada camada. Os valores positivos podem uniformizar as áreas de suporte e produzir suportes mais robustos." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de núcleos de extrusão. Um núcleo de extrusão é o conjunto de um alimentador (feeder), tubo bowden e nozzle." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade do desvio aplicado aos pisos de suporte." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores ativos" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade do desvio aplicado aos tetos de suporte." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro externo do nozzle" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "O diâmetro externo da ponta do nozzle." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Um acréscimo ao raio a partir do centro de cada cubo para encontrar os limites do modelo, de forma a decidir se este cubo deve ser subdividido. Valores mais elevados resultam num invólucro mais espesso com cubos pequenos perto do limite do modelo." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do nozzle" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha antissaliências" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Antiescorrimento" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do nozzle" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Antiescorrimento" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da zona de aquecimento" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nos locais onde os modelos tocam, gere uma estrutura de vigas interligadas. Isto melhora a adesão entre os modelos, especialmente os modelos impressos em materiais diferentes." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Áreas Impressas Durante Movimento" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Ativar controlo de temperatura do nozzle" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes na Deslocação" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Controlar ou não a temperatura a partir do Cura. Desative esta opção para controlar a temperatura do nozzle a partir de fora do Cura." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Anterior" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de aquecimento" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior esquerda" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "A velocidade média (°C/s) a que o nozzle é aquecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior direita" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de arrefecimento" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "A velocidade média (°C/s) a que o nozzle é arrefecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínimo da Temperatura em Modo de Espera" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambas se sobrepõem" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "O tempo mínimo durante o qual um extrusor tem de estar inativo antes de o nozzle ser arrefecido. Apenas é permitido começar a arrefecer até à temperatura de Modo de Espera quando um extrusor não for utilizado por um período de tempo superior a este." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Variante do G-code" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Padrão da Base na Camada Inicial" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-code a ser gerado." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansão Revestimento Inferior" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura Remoção Revestimento Inferior" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidade dos Ramos" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diâmetro do Ramo" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ângulo dos Ramos" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação da Separação" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação da Separação" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparação da separação" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Separação" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração em Firmware" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Separação" -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." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Separação" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusoras Partilham Aquecedor" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Separar Suportes em Blocos" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade da ventoinha de Bridge" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusoras partilham bocal" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Bridge com múltiplas camadas" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Se as extrusoras partilham um único bocal, em vez de cada extrusora ter um bocal próprio. Quando definido como verdadeiro, espera-se que o script gcode de arranque da impressora configure corretamente todas as extrusoras num estado de retração inicial conhecido e mutuamente compatível (seja zero ou um filamento não retraído); nesse caso, o estado de retração inicial é descrito, por extrusora, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade do segundo revestimento de Bridge" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração inicial do bocal partilhado" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Até que ponto se assume que o filamento de cada extrusora foi retraído a partir da ponta do bocal partilhado após a conclusão do script gcode de arranque da impressora; o valor deverá ser igual ou superior ao comprimento da parte comum das condutas do bocal." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo do segundo revestimento de Bridge" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas não permitidas" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade do segundo revestimento de Bridge" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do revestimento de Bridge" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas não permitidas ao nozzle" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do revestimento de Bridge" -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." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do revestimento de Bridge" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da cabeça e do ventilador da máquina" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar do suporte do revestimento de Bridge" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Estas coordenadas são relativas à posição da cabeça de impressão, que normalmente é a posição do primeiro extrusor. As coordenadas à esquerda e à frente da cabeça de impressão têm de ser valores negativos." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máx. Enchimento Disperso de Bridge" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do pórtico" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desviar com extrusor" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta Preparação Extrusor" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade X Máxima" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima do motor da direção X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Y Máxima" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima do motor da direção Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Z Máxima" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima do motor da direção Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima do filamento." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração X Máxima" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "A aceleração máxima do motor da direção X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Y Máxima" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima do motor da direção Y." +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade do terceiro revestimento de Bridge" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Z Máxima" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima do motor da direção Z." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo do terceiro revestimento de Bridge" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade do terceiro revestimento de Bridge" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "A aceleração máxima do motor do filamento." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desaceleração da parede de Bridge" -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Predefinida" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da parede de Bridge" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração predefinida do movimento da cabeça de impressão." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da parede de Bridge" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y Predefinido" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Aba" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O jerk predefinido do movimento no plano horizontal." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância da Aba" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z Predefinido" +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Borda interna evitar margem" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O jerk predefinido do motor da direção Z." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Número Linhas da Aba" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Predefinido do Filamento" +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Aba Apenas no Exterior" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O jerk predefinido do motor do filamento." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "A aba substitui o suporte" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura da Aba" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção X." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor para Aderência" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Y." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Modos de Aderência" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Base de Construção" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Z." +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Base de Construção" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura Base de Construção" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência." +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da base de construção da camada inicial" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X no Sentido Positivo" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do volume de construção" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)." +msgctxt "center_object label" +msgid "Center Object" +msgstr "Centrar Objeto" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y no Sentido Positivo" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Altera a geometria do modelo impresso de forma que seja necessário suporte mínimo. Saliências acentuadas tornar-se-ão saliências rasas. As áreas de saliências irão baixar para se tornarem mais verticais." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)." +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Escolhe entre as técnicas disponíveis para gerar suporte. O suporte \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e leva estas áreas para baixo. O suporte \"Árvore\" cria ramos nas áreas salientes que suportam o modelo nas pontas destes ramos e permite que os ramos rastejem à volta do modelo de modo a suportá-lo o máximo possível a partir da base de construção." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z no Sentido Positivo" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de desaceleração" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de desaceleração" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "\"Coasting\" substitui a última parte de um percurso de extrusão por um percurso de deslocamento. O material que escorreu é utilizado para imprimir a última parte do percurso de extrusão de forma a reduzir o surgimento de fios." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "A velocidade mínima de movimento da cabeça de impressão." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro Roda do Alimentador" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Combing mantém o nozzle em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores ou apenas efetuar o combing no enchimento." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da roda que conduz o material pelo alimentador." +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Definições de linha de comando" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Ajustar a velocidade do ventilador entre 0-1" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256." +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)." +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Espessura das Camadas" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "A espessura (altura) de cada camada em milímetros. Espessuras maiores produzem impressões rápidas com baixa resolução, e, espessuras pequenas, produzem impressões mais lentas mas com uma maior resolução/qualidade." +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Espessura da Camada Inicial" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção." +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Diâmetro da Linha" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "O diâmetro (largura) de uma única linha. Normalmente, o diâmetro de cada linha deve corresponder ao diâmetro do nozzle. No entanto, reduzir ligeiramente este valor pode produzir melhores impressões." +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo do suporte cónico" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Diâmetro Linha Parede" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura mínima do suporte cónico" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "O diâmetro de uma única linha de parede." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Ligar Linhas Enchimento" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Diâmetro Linha Parede Exterior" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Ligar polígonos de enchimento" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe." +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Ligar Linhas de Suporte" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Diâmetro Linha Parede(s) Interior" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Ligar ziguezagues de suporte" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior." +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Ligar polígonos superiores/inferiores" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Diâmetro Linha Superior / Inferior" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Ligar caminhos de enchimento quando as trajetórias são paralelas. Para padrões de enchimento que consistem em vários polígonos fechados, ativar esta definição reduz consideravelmente o tempo de deslocação." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "O diâmetro de uma única linha das superfícies superior/inferior." +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Diâmetro Linha Enchimento" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Ligar as extremidades das linhas de suporte. Ativar esta definição permite que os suportes sejam mais robustos e também diminuir o risco de \"under-extrusion\", mas tem um gasto maior de material." -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "O diâmetro de uma única linha de enchimento." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Diâmetro Linha Contorno/Aba" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "O diâmetro de uma única linha do contorno ou da aba." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior. Ocultação Inteligente permite os cantos interiores e exteriores, mas opta pelos cantos interiores com mais frequência, se apropriado." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Diâmetro Linha Suportes" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converter cada linha de enchimento em determinado número de linhas. As linhas adicionais não se cruzam, mas sim evitam-se. Isto torna o enchimento mais duro, mas também aumenta o tempo de impressão e o gasto de material." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "O diâmetro de uma única linha da estrutura de suporte." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de arrefecimento" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Diâmetro Linha Interface Suporte" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Arrefecimento" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "O diâmetro de uma única linha do chão ou tecto de suporte." +msgctxt "cooling label" +msgid "Cooling" +msgstr "Arrefecimento" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Diâmetro Linha Tecto Suporte" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "O diâmetro de uma única linha do tecto de suporte." +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Diâmetro Linha Piso Suporte" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "O diâmetro de uma única linha do piso de suporte." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho da bolsa de cruz 3D" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Diâmetro Linha Torre Preparação" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem Densidade Suporte em Cruz" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "O diâmetro de uma única linha da torre de preparação." +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem Densidade Enchimento Cruz" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Diâmetro Linha Camada Inicial" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção." +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" -msgctxt "shell description" -msgid "Shell" -msgstr "Invólucro" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Invólucro Subdivisão Cúbica" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor Paredes" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de corte" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor Parede Exterior" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Predefinida" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores." +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Predefinida Base Construção" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor Paredes Interiores" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Predefinido do Filamento" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores." +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Impressão Predefinida" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura das Paredes" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y Predefinido" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "A espessura das paredes na direção horizontal. Este valor, dividido pelo diâmetro da linha de parede, define o número de paredes." +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z Predefinido" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número Linhas Paredes" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O jerk predefinido do movimento no plano horizontal." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro." +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O jerk predefinido do motor da direção Z." -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de transição de paredes" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O jerk predefinido do motor do filamento." -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Quando uma peça fica mais fina e seja necessário haver uma transição entre um numero diferente de paredes, é reservado um espaço para se puder separar ou unir as linhas das paredes." +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de impressão, do fluxo e da ventoinha durante a impressão de vãos ou saliências." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Número de paredes distribuídas" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina a ordem pela qual as paredes são impressas. Imprimir paredes externas antecipadamente ajuda em termos de precisão dimensional, uma vez que as falhas de paredes internas não se podem propagar para o exterior. No entanto, imprimi-las mais tarde permite empilhá-las melhor quando são impressas saliências. Quando há uma quantidade desigual de paredes internas totais, a \"última linha central\" é sempre impressa em último lugar." -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação tem de ser distribuída. Valores mais baixos significam que as paredes exteriores não mudam de diâmetro." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina a prioridade desta malha para resolver a sobreposição de várias malhas de enchimento. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a prioridade mais alta. Uma malha de enchimento com uma prioridade superior irá modificar o enchimento das malhas de enchimento com uma prioridade inferior e também as malhas normais." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo do limiar de transição de paredes" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Quando devem ser criadas transições entre números pares e ímpares de paredes. Uma forma em cunha com um ângulo superior a esta definição não terá transições e nenhuma parede será impressa no centro para preencher o espaço restante. Reduzir esta definição reduz o número e o comprimento destas paredes centrais, mas pode deixar lacunas ou provocar um excesso de extrusão." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância do filtro de transição de paredes" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento do Diâmetro Apoio no Modelo" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem do filtro de transição de paredes" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diâmetro que cada ramo tenta atingir quando chega à placa de construção. Melhora a adesão à base." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Evite a transição para trás e para a frente entre uma parede extra e uma a menos. Esta margem alarga o alcance dos diâmetros de linha que seguem [Diâmetro mínimo da linha da parede - Margem, 2 * Diâmetro mínimo de linha da parede + Margem]. O aumento desta margem reduz o número de transições, o que reduz o número de inícios/paragens de extrusão e o tempo de viagem. No entanto, a variação do diâmetro de linha grande pode levar a problemas de excesso ou defeito de extrusão." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Diferentes modos que ajudam a melhorar a aderência à base de construção, assim como a preparação inicial da extrusão. \"Aba\" acrescenta uma única camada em torno da base do modelo para prevenir empenos ou deformações na parte inferior dos modelos. \"Raft\" adiciona uma plataforma, composta por uma grelha espessa e um teto, entre o modelo e a base de construção. \"Contorno\" é uma linha impressa à volta do modelo, mas que não está ligada ao modelo." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância Limpeza Parede Exterior" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas não permitidas" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z." +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "A distância entre as linhas de enchimento impressas. O valor desta definição é calculada através da densidade de enchimento e do diâmetro da linha de enchimento." -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Desvio Parede Exterior" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "A distância entre as linhas do piso de suporte impressas. Esta definição é calculada através da Densidade do piso de suporte, mas pode ser ajustada em separado." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem Paredes" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "A distância entre as linhas do tecto de suporte impressas. Esta definição é calculada através da Densidade do tecto de suporte, mas pode ser ajustada em separado." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem a otimização." +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordenação de paredes" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina a ordem pela qual as paredes são impressas. Imprimir paredes externas antecipadamente ajuda em termos de precisão dimensional, uma vez que as falhas de paredes internas não se podem propagar para o exterior. No entanto, imprimi-las mais tarde permite empilhá-las melhor quando são impressas saliências. Quando há uma quantidade desigual de paredes internas totais, a \"última linha central\" é sempre impressa em último lugar." +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "A distância entre a parte superior do suporte e a impressão." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De dentro para fora" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De fora para dentro" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "A distância de um movimento de deslocação inserido depois de cada linha de enchimento, para melhorar a união do enchimento às paredes. Esta opção é semelhante à sobreposição de enchimento, mas sem extrusão e apenas numa das extremidades da linha de enchimento." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas." +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede" +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." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Par" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "O diâmetro mínimo da linha para as paredes poligonais normais. Esta definição determina a espessura do modelo em que passamos da impressão de uma única linha fina de parede para a impressão de duas linhas de parede. Um maior diâmetro mínimo de linha da parede Par causa um maior diâmetro máximo de linha da parede Ímpar. O diâmetro máximo de linha da parede Par é calculado como o diâmetro da linha da parede externa + 0,5 * diâmetro mínimo da linha da parede Ímpar." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Os pontos de distância são alterados para suavizar o percurso" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Ímpar" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Os pontos de distância são alterados para suavizar o percurso" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Diâmetro mínimo da linha para as paredes poligonais de enchimento de folgas das linhas do meio. Esta definição determina a espessura do modelo em que passamos da impressão de duas linhas da parede para a impressão de duas paredes exteriores e de uma única parede central no meio. Um diâmetro mínimo da parede ímpar maior provoca um maior diâmetro máximo de linha da parede par. O diâmetro máximo de linha da parede ímpar é calculado como 2 * diâmetro mínimo de linha da parede par." +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da proteção contra correntes de ar" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle." +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite de proteção contra correntes de ar" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamanho mínimo da característica" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da proteção contra correntes de ar" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Espessura mínima dos elementos finos. Os elementos do modelo mais finos do que este valor não serão impressos, enquanto que os elementos mais espessos do que o Tamanho mínimo do elemento serão alargados para o Diâmetro mínimo de linha da parede." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de suporte pendente" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede fina" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dupla Extrusão" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Diâmetro da parede que substituirá elementos finos (de acordo com o Tamanho mínimo do elemento) do modelo. Se o Diâmetro mínimo de linha da parede for mais fino do que a espessura do elemento, a parede tornar-se-á tão espessa como o próprio elemento." +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Ativar controlo da aceleração" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Quantidade de desvio aplicado a todos os polígonos em cada camada. Valores positivos podem compensar buracos demasiado grandes; os valores negativos podem compensar buracos demasiado pequenos." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Ativar Definições de Bridge" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal Camada Inicial" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Ativar desaceleração" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Quantidade de desvio aplicado a todos os polígonos na primeira camada. Um valor negativo pode compensar o \"esmagamento\" da camada inicial, conhecido como \"pé de elefante\"." +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Ativar suporte cónico" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão horizontal de buraco" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Barreira contra correntes de ar" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Quando superior a zero, a expansão horizontal de orifícios é o valor do desvio aplicado a todos os orifícios em cada camada. Os valores positivos aumentam a dimensão dos orifícios e os valores negativos reduzem a dimensão dos orifícios. Quando esta definição está ativa pode ser otimizada adicionalmente com o diâmetro máximo da expansão horizontal de orifícios." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Ativar o movimento fluido" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diâmetro máximo da Expansão Horizontal de Buraco" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ativar Engomar (Ironing)" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando este valor for superior a zero, a Expansão Horizontal de Buraco é aplicada de forma progressiva nos buracos pequenos (os buracos pequenos serão mais expandidos). Com um valor de zero, a Expansão Horizontal de Buraco será aplicada a todos os buracos. Os buracos maiores que o Diâmetro Máximo de Expansão Horizontal de Buraco não serão expandidos." +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Ativar Controlo do Jerk" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Junta-Z" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Ativar controlo de temperatura do nozzle" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Ponto inicial de cada trajetória de uma camada. Quando as trajetórias em camadas consecutivas começam no mesmo ponto, pode aparecer uma junta vertical na impressão. Ao alinhar o inicio das trajectórias próximo a uma posição definida pelo utilizador, é mais fácil remover a linha de junta. Quando dispostas aleatoriamente, as imprecisões no início das trajetórias serão menos perceptíveis. Ao adoptar a trajetória mais curta, a impressão será mais rápida." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ativar proteção contra escorrimento" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Definido pelo utilizador" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "\"Blob\" de Preparação" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais curto" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Ativar torre de preparação" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Ativar Arrefecimento Impressão" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto mais Acentuado" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Ativar Retração" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Junta-Z" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Ativar aba de suporte" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada." +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Ativar piso de suporte" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior esquerda" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Ativar interface de suporte" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Anterior" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Ativar tecto de suporte" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior direita" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Ativar a aceleração da viagem" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ativar Jerk de Viagem" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frontal direita" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frontal" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Ative as regiões pequenas (até à \"Largura superior/interior pequena\") na camada mais superior (exposta ao ar) para que sejam preenchidas com paredes em vez do padrão predefinido." -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frontal esquerda" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão em detrimento da qualidade de impressão." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite o ajuste da aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir o tempo de impressão em detrimento da qualidade de impressão." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X da Junta-Z" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Ativa os ventiladores de arrefecimento durante a impressão. Os ventiladores melhoram a qualidade de impressão, nas camadas que têm uma curta duração de impressão e / ou nas partes do modelo que contêm vãos / saliências." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code Final" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y da Junta-Z" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento da purga do fim do filamento" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade da purga do fim do filamento" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência Canto Junta" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior. Ocultação Inteligente permite os cantos interiores e exteriores, mas opta pelos cantos interiores com mais frequência, se apropriado." +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em todo o lado" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Junta" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" msgstr "Expor Junta" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Junta" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relativo à Junta-Z" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Quando ativado, as coordenadas da junta-Z são relativas ao centro de cada peça. Quando desativado, as coordenadas definem uma posição absoluta na base de construção." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior / Inferior" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensiva" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior / Inferior" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los com os polígonos adjacentes. Esta opção pode acrescentar bastante tempo de processamento." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor Revestimento Superior" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de paredes de enchimento adicionais" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a(s) camada(s) de revestimento das superfícies mais superiores. Definição usada com múltiplos extrusores." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Paredes Revestimento Extra" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas Revestimento Superior" +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." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "O número de camadas de revestimento da superfície superior. Por norma, uma só camada superior é suficiente para gerar superfícies superiores de maior qualidade." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação Extrusor" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Diâmetro Linha Revestimento Superior" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação Extrusor" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação Extrusor" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão Revestimento Superior" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusoras Partilham Aquecedor" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão geométrico das camadas de revestimento da superfície superior." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusoras partilham bocal" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador da velocidade de arrefecimento da extrusão" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fator de correção baseado no diâmetro de extrusão sobre a velocidade. A 0% a velocidade de movimento mantém-se constante à Velocidade de impressão. A 100% a velocidade de movimento é ajustada de modo a que o fluxo (em mm³/s) seja mantido constante, ou seja, linhas metade do Diâmetro da linha normal são impressas duas vezes mais depressa e as linhas duas vezes mais largas são impressas a metade da rapidez. Um valor superior a 100% pode ajudar a compensar a pressão mais elevada necessária para efetuar a extrusão de linhas largas." -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade Ventiladores" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da superfície superior em \"Monotonic\"" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Substituir velocidade da ventoinha" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções Linha Revestimento Superior" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funcionalidades que ainda não foram totalmente lançadas." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas de revestimento da superfície superior utilizarem o padrão de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro Roda do Alimentador" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior / Inferior" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impressão final" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as camadas superiores e inferiores da impressão. Definição usada com múltiplos extrusores." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração em Firmware" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior / Inferior" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de suporte da primeira camada" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "A espessura total das camadas superiores e inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores / inferiores." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporção de equalização do fluxo" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de compensação da taxa de fluxo" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de temperatura de fluxo" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" +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." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensação de fluxo nos resultados da primeira camada" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo nas linhas de enchimento." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas inferiores iniciais" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora." -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." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo nas linhas da torre de preparação." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior / Inferior" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de fluxo nas linhas de contorno ou abas." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "O padrão geométrico das camadas superiores / inferiores." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nas linhas do chão do suporte." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo nas linhas do teto do suporte." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo nas linhas das estruturas de suporte." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensação de fluxo na linha de parede mais externa da primeira camada." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Padrão da Base na Camada Inicial" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo na linha de parede exterior." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão geométrico da base da peça na camada inicial." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo nas linhas superiores/inferiores." -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensação de fluxo em linhas de parede para todas as linhas de parede, exceto a mais externa, mas somente para a primeira camada" -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Ligar polígonos superiores/inferiores" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo nas linhas de parede." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Superior/Inferior em \"Monotonic\"" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ângulo do movimento fluido" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distância da alteração do movimento fluido" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções Linha Superior / Inferior" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Distância pequena do movimento fluido" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas da superfície superiores/inferiores utilizarem os padrões de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da purga da descarga" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Largura Mínima Superior/Inferior" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade da purga da descarga" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "As regiões superiores/inferiores pequenas são preenchidas com paredes em vez do padrão superior/inferior padrão. Isto ajuda a evitar movimentos bruscos. Desativado para as camadas mais superiores (expostas ao ar) por predefinição (consulte \"Superfície superior/inferior pequena\")." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Superfície superior/inferior pequena" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frontal" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Ative as regiões pequenas (até à \"Largura superior/interior pequena\") na camada mais superior (exposta ao ar) para que sejam preenchidas com paredes em vez do padrão predefinido." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frontal esquerda" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Revestimento nos Espaços Z" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frontal direita" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando o modelo tem pequenos espaços verticais de apenas algumas camadas, deverá normalmente existir revestimento à volta dessas camadas no espaço estreito. Ative esta definição para não gerar revestimento se o espaço vertical for muito pequeno. Isto melhora o tempo de impressão e o tempo de seccionamento, mas deixa tecnicamente o enchimento exposto ao ar." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Máximo" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Paredes Revestimento Extra" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Revestimento Difuso" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade Revestimento Difuso" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ativar Engomar (Ironing)" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Revestimento difuso apenas no exterior" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Passar novamente sobre o revestimento superior, mas desta vez extrudindo muito pouco material. O objetivo é derreter mais o plástico da camada superior, criando uma superfície mais suave. A pressão na câmara do nozzle é mantida elevada de modo que os vincos existentes na superfície sejam preenchidos com material." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância do ponto de revestimento difuso" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Engomar Só Última Camada" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura Revestimento Difuso" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave." +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Variante do G-code" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Engomar" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Comandos G-code a serem executados no fim – separados por \n" +"." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Comandos G-code a serem executados no início – separados por \n" +"." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. Este é definido automaticamente." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do pórtico" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Engomar em \"Monotonic\"" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar estrutura de interligação" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Criar Suportes" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Distância Linhas de Engomar" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Gera uma aba dentro das regiões de enchimento do suporte da primeira camada. Esta aba é impressa na parte por baixo do suporte e não em torno do mesmo. Ativar esta definição aumenta a aderência do suporte à base de construção." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as linhas de engomar." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Gera uma interface densa entre o modelo e o suporte. Isto irá criar um revestimento na parte superior do suporte, onde o modelo é impresso, e na parte inferior do suporte, onde este é apoiado sobre o modelo." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Engomar" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Gera uma base densa de material entre a parte inferior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "A quantidade de material, em relação a uma linha de revestimento normal, a ser extrudido durante o processo de engomar. Manter o nozzle cheio ajuda a preencher algumas das fissuras da superfície superior, mas cheio de mais, provoca sobre-extrusão e pequenos pontos ou \"bolhas\" na parte lateral da superfície." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Gera uma base densa de material entre a parte superior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Desvio Interior de Engomar" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "A distância a manter em relação às extremidades do modelo. \"Engomar\" até à extremidade da superfície pode resultar em arestas irregulares na impressão." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Engomar" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Passar novamente sobre o revestimento superior, mas desta vez extrudindo muito pouco material. O objetivo é derreter mais o plástico da camada superior, criando uma superfície mais suave. A pressão na câmara do nozzle é mantida elevada de modo que os vincos existentes na superfície sejam preenchidos com material." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura Degraus Enchimento Gradual" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Engomar" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Degraus Enchimento Gradual" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com a qual se realiza o processo de engomar." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura do degrau de enchimento gradual de suporte" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Engomar" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Enchimento Gradual Suporte" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A mudança de velocidade instantânea máxima ao engomar." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Sobreposição Revestimento (%)" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento, como percentagem das larguras de linha das linhas de revestimento e da parede mais interna. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer percentagem acima de 50% pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede neste ponto." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição Revestimento (mm)" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer valor acima da metade da largura da parede pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura Remoção Revestimento" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grelha" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior/inferior nas superfícies inclinadas do modelo." +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura Remoção Revestimento Superior" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar as paredes externas" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento superior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior nas superfícies inclinadas do modelo." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura Remoção Revestimento Inferior" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem estabilização da temperatura do volume de construção" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento inferior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento inferior nas superfícies inclinadas do modelo." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Base de Construção Aquecida" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância Expansão Revestimento" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de aquecimento" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos para dentro do enchimento. Valores mais elevados melhoram tanto a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência ao revestimento das paredes de camadas adjacentes. Valores mais baixos reduzem a quantidade de material utilizado." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da zona de aquecimento" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância Expansão Revestimento Superior" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limite de altura da proteção contra correntes de ar. Não será impressa qualquer proteção contra correntes de ar acima desta altura." -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos superiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico do enchimento, assim como a aderência ao revestimento das paredes da camada seguinte. Valores mais baixos reduzem a quantidade de material utilizado." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Junta" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansão Revestimento Inferior" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Junta" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos inferiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência do revestimento às paredes da camada anterior. Valores mais baixos reduzem a quantidade de material utilizado." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão horizontal de buraco" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Revestimento para Expansão" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diâmetro máximo da Expansão Horizontal de Buraco" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e fará com que nenhum revestimento seja expandido, enquanto um ângulo de 90° é vertical e fará com que todo o revestimento seja expandido." +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima Revestimento para Expansão" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" -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." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento horizontal" -msgctxt "infill label" -msgid "Infill" -msgstr "Enchimento" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido." -msgctxt "infill description" -msgid "Infill" -msgstr "Enchimento" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor Enchimento" +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." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "A distância de retração do filamento para separá-lo de forma regular." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Enchimento" +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." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do enchimento da impressão." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância Linhas Enchimento" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "A distância entre as linhas de enchimento impressas. O valor desta definição é calculada através da densidade de enchimento e do diâmetro da linha de enchimento." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "A velocidade com que deve preparar o material após mudar para um material diferente." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Enchimento" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto." +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção X." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Y." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Z." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao substituir uma bobina vazia por uma bobina nova do mesmo material." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao mudar para um material diferente." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Até que ponto se assume que o filamento de cada extrusora foi retraído a partir da ponta do bocal partilhado após a conclusão do script gcode de arranque da impressora; o valor deverá ser igual ou superior ao comprimento da parte comum das condutas do bocal." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Como a interface de suporte e a estrutura de suporte interagem quando se sobrepõem. Atualmente implementado apenas para o teto de suporte." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "A altura mínima que um ramo deve ter quando apoiado no modelo. Evita pequenas bolhas de suporte. Esta definição é ignorada quando um ramo está a suportar um teto do suporte." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +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." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se o segmento de um percurso de ferramenta se desviar mais do que este ângulo em relação ao movimento geral, o mesmo é suavizado." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se ativada, a segunda e a terceira camada sobre o ar são impressas utilizando as seguintes definições. Caso contrário, essas camadas são impressas utilizando as definições normais." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Ligar Linhas Enchimento" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Base de Construção" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas do Material" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Ligar polígonos de enchimento" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Ligar caminhos de enchimento quando as trajetórias são paralelas. Para padrões de enchimento que consistem em vários polígonos fechados, ativar esta definição reduz consideravelmente o tempo de deslocação." +msgctxt "infill description" +msgid "Infill" +msgstr "Enchimento" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções Linhas Enchimento" +msgctxt "infill label" +msgid "Infill" +msgstr "Enchimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração de enchimento" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus para os padrões de Linhas ou Ziguezague e 45 graus para todos os outros padrões)." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Enchimento antes das paredes" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocar Enchimento em X" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Enchimento" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor Enchimento" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocar Enchimento em Y" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Enchimento" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Enchimento" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Início aleatório do enchimento" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura Camada Enchimento" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "A linha de enchimento que é impressa primeiro é aleatória. Isso impede que um segmento se torne o mais forte, mas exige um movimento adicional." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções Linhas Enchimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância Linhas Enchimento" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Multiplicador de linhas de enchimento" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converter cada linha de enchimento em determinado número de linhas. As linhas adicionais não se cruzam, mas sim evitam-se. Isto torna o enchimento mais duro, mas também aumenta o tempo de impressão e o gasto de material." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de paredes de enchimento adicionais" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Diâmetro Linha Enchimento" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional.\nEsta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Objecto de Enchimento" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Invólucro Subdivisão Cúbica" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo Saliência Enchimento" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Um acréscimo ao raio a partir do centro de cada cubo para encontrar os limites do modelo, de forma a decidir se este cubo deve ser subdividido. Valores mais elevados resultam num invólucro mais espesso com cubos pequenos perto do limite do modelo." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição Enchimento (mm)" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Sobreposição Enchimento (%)" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A percentagem de sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes sejam ligadas firmemente ao enchimento." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Enchimento" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição Enchimento (mm)" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade Enchimento" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A distância em milímetros da sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes se unam firmemente ao enchimento." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Enchimento como Suporte" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimização Deslocação Enchimento" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Distância Limpeza Enchimento" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "A distância de um movimento de deslocação inserido depois de cada linha de enchimento, para melhorar a união do enchimento às paredes. Esta opção é semelhante à sobreposição de enchimento, mas sem extrusão e apenas numa das extremidades da linha de enchimento." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocar Enchimento em X" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura Camada Enchimento" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocar Enchimento em Y" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas inferiores iniciais" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Degraus Enchimento Gradual" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial do ventilador" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "O número de vezes que a densidade de enchimento deve ser reduzida para metade consoante a distância às superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores têm uma maior densidade, até ao definido na Densidade de Enchimento." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da camada inicial" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura Degraus Enchimento Gradual" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo inferior da camada inicial" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diâmetro da Camada Inicial" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Enchimento antes das paredes" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Camada Inicial" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Espessura da Camada Inicial" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de enchimento mínimo" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal Camada Inicial" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo da parede interna da camada inicial" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Enchimento como Suporte" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimir as estruturas de enchimento só onde os revestimentos superiores necessitam de suporte. Activar esta definição reduz o tempo de impressão e material usado, mas faz com que a peça não tenha uma resistência uniforme." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Diâmetro Linha Camada Inicial" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo Saliência Enchimento" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo da parede externa da camada inicial" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "O ângulo mínimo das saliências internas ao qual é adicionado enchimento. Com um valor de 0° os objetos são totalmente preenchidos com enchimento, e com um valor de 90° não é produzido qualquer enchimento." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de impressão da camada inicial" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Revestimento" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk Impressão Camada Inicial" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de impressão da camada inicial" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Revestimento" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade Camada Inicial" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância da linha de suporte da camada inicial" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de suporte de enchimento relâmpago" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de deslocação da camada inicial" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk Deslocação Camada Inicial" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de saliência do enchimento relâmpago" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de deslocação da camada inicial" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição Z Camada Inicial" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de corte do enchimento relâmpago" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impressão inicial" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração da parede interior" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor Paredes Interiores" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Interiores" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade Parede Interior" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de alisamento do enchimento relâmpago" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Parede de Parede(s) Interior(es)" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Diâmetro Linha Parede(s) Interior" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Impressão Predefinida" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "A temperatura predefinida utilizada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem ser baseadas neste valor" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De dentro para fora" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do volume de construção" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linhas de interface preferidas" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "A temperatura do ambiente para a impressão. Se este valor for 0, a temperatura do volume de construção não será ajustada." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interface preferida" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de camada de feixe de interligação" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura utilizada para a impressão." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura do feixe de interligação" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura Impressão Camada Inicial" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Evitar a interligação de fronteiras" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de interligação" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impressão inicial" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da estrutura de interligação" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Engomar Só Última Camada" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impressão final" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Engomar" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Engomar" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador da velocidade de arrefecimento da extrusão" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Desvio Interior de Engomar" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "A velocidade adicional a que o nozzle arrefece durante a extrusão. É utilizado o mesmo valor para indicar a velocidade de aquecimento perdida ao aquecer durante a extrusão." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Engomar" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Predefinida Base Construção" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Distância Linhas de Engomar" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "A temperatura predefinida utilizada para a base de construção aquecida. Esta deve ser a temperatura \"base\" de uma base de construção. Todas as outras temperaturas de impressão devem ser baseadas neste valor" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Engomar" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura Base de Construção" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Engomar" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base de construção não é aquecida." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "O Centro é a Origem" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da base de construção da camada inicial" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "É um material de suporte" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada. Se este valor for 0, a temperatura da base de construção não é aquecida durante a primeira camada." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Tendência de aderência" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Este material é utilizado como material de suporte durante a impressão." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "A tendência de aderência à superfície." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Vibrar apenas os contornos das peças e não os buracos das peças." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia da superfície" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Soltas" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia da superfície." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Espessura das Camadas" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de redução do fator de escala" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Início Camada" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Início Camada" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento horizontal" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "A espessura da camada do meio do raft. (segunda camada)" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento vertical" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "A espessura das camadas superiores do raft." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Elevar Cabeça" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Antiescorrimento" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de saliência do enchimento relâmpago" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Antiescorrimento" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de corte do enchimento relâmpago" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de alisamento do enchimento relâmpago" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação da Separação" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de suporte de enchimento relâmpago" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitar o Alcance dos Ramos" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação da Separação" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" -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." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparação da separação" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Diâmetro da Linha" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Separação" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "A distância de retração do filamento para separá-lo de forma regular." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Separação" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade de retração do filamento para separá-lo de forma regular." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Separação" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" -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." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade da purga da descarga" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "A velocidade com que deve preparar o material após mudar para um material diferente." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da purga da descarga" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao mudar para um material diferente." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade da purga do fim do filamento" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Máquina" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da cabeça e do ventilador da máquina" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento da purga do fim do filamento" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura da Máquina" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao substituir uma bobina vazia por uma bobina nova do mesmo material." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração máxima do parqueamento" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Máquina" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator do movimento sem carregamento" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Tornar Saliência Imprimível" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Um factor que indica a dimensão da compressão dos filamentos entre o alimentador e a câmara do bocal, utilizado para determinar a distância a que se deve mover o material para efetuar uma substituição de filamentos." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo da Parede" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo nas linhas de parede." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo de Parede Exterior" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Torne os objetos mais adequados para impressão 3D." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo na linha de parede exterior." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Parede de Parede(s) Interior(es)" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo Superior/Inferior" +msgctxt "material description" +msgid "Material" +msgstr "Material" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo nas linhas superiores/inferiores." +msgctxt "material label" +msgid "Material" +msgstr "Material" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo de Revestimento da Superfície Superior" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do material" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de material entre limpezas" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Enchimento" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distância Max. de Combing sem Retração" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo nas linhas de enchimento." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração X Máxima" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Contorno/Aba" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Y Máxima" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de fluxo nas linhas de contorno ou abas." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Z Máxima" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ângulo Máximo dos Ramos" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo nas linhas das estruturas de suporte." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio máximo" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo da Interface do Suporte" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio máximo da área de extrusão" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima Ventiladores" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto do Suporte" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo nas linhas do teto do suporte." +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo máximo do modelo" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo do Chão do Suporte" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima do buraco da saliência" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração máxima do parqueamento" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nas linhas do chão do suporte." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da torre de preparação" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Número Máximo Retrações" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo nas linhas da torre de preparação." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Revestimento para Expansão" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Camada Inicial" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de E" -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." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade X Máxima" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Fluxo da parede interna da camada inicial" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Y Máxima" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensação de fluxo em linhas de parede para todas as linhas de parede, exceto a mais externa, mas somente para a primeira camada" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Z Máxima" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Fluxo da parede externa da camada inicial" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado pela Torre" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensação de fluxo na linha de parede mais externa da primeira camada." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolução Máxima Deslocação" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Fluxo inferior da camada inicial" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "A aceleração máxima do motor da direção X" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensação de fluxo nos resultados da primeira camada" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima do motor da direção Y." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura em Espera" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima do motor da direção Z." -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." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "A aceleração máxima do motor do filamento." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "É um material de suporte" +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 "Densidade máxima do enchimento considerado como disperso. O revestimento sobre o enchimento disperso não é considerado como ter suportes, pelo que pode ser tratado como um revestimento de Bridge." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Este material é utilizado como material de suporte durante a impressão." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "O diâmetro máximo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada." -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" +msgctxt "max_extrusion_before_wipe description" +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 "Quantidade máxima de material que pode ser extrudido antes de ser iniciada outra limpeza do nozzle. Se este valor for inferior ao volume do material necessário numa camada, esta definição não tem qualquer influência nessa camada, ou seja, está limitada a uma limpeza por camada." -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição Malhas Combinadas" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correção de Objectos (Mesh)" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "A velocidade a que é efetuada a impressão." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Posição X do Objeto" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade Enchimento" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Posição Y do Objeto" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "A velocidade a que o enchimento é impresso." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Posição Z do Objeto" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade Paredes" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Classificação de processamento de malha" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "A velocidade a que as paredes são impressas." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Matriz Rotação do Objeto" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade Parede Exterior" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Centro" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "A velocidade a que as paredes exteriores são impressas. Imprimir a parede exterior a uma velocidade mais reduzida melhora a qualidade final do revestimento. No entanto, a existência de uma grande diferença entre a velocidade da parede interior e a velocidade de parede exterior afetará a qualidade de uma forma negativa." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura mínima do molde" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade Parede Interior" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínimo da Temperatura em Modo de Espera" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento mínimo da parede de Bridge" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade Revestimento Superior" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Par" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalo Mínimo Distância Extrusão" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamanho mínimo da característica" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "A velocidade a que as camadas superiores/inferiores são impressas." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade Suporte" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura Mínima ao Modelo" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "A velocidade a que a estrutura de suporte é impressa. Imprimir o suporte a velocidades elevadas pode reduzir consideravelmente o tempo de impressão. A qualidade da superfície da estrutura de suporte não é importante, uma vez que esta é removida após a impressão." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de enchimento mínimo" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade de enchimento do suporte" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo mínimo por camada" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Ímpar" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da interface de suporte" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferência Mínima do Polígono" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade a que os tectos e os pisos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima Revestimento para Expansão" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do tecto de suporte" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área de suporte mínimo" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade do piso de suporte" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área mínima do piso de suporte" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "A velocidade a que o piso de suporte é impresso. Imprimi-lo a uma velocidade baixa pode melhorar a aderência do suporte na parte superior do modelo." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área mínima da interface de suporte" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da torre de preparação" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área mínima do teto de suporte" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância X/Y mínima de suporte" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "A velocidade à qual a torre de preparação é impressa. Imprimir a torre de preparação mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é insuficiente." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede fina" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de deslocação" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume mínimo antes da desaceleração" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "A velocidade a que os movimentos de deslocação são efetuados." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade Camada Inicial" +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 "Tamanho mínimo da área para polígonos da interface do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "A velocidade da camada inicial. Recomenda-se um valor baixo para melhorar a aderência à base de construção. Não afeta as estruturas de aderência da base de construção propriamente ditas, como aba e raft." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Tamanho mínimo da área para polígonos de suporte. Os polígonos com uma área inferior a este valor não serão gerados." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de impressão da camada inicial" +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 "Tamanho mínimo da área para os pisos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção." +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 "Tamanho mínimo da área para os tetos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de deslocação da camada inicial" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Espessura mínima dos elementos finos. Os elementos do modelo mais finos do que este valor não serão impressos, enquanto que os elementos mais espessos do que o Tamanho mínimo do elemento serão alargados para o Diâmetro mínimo de linha da parede." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "A velocidade dos movimentos de deslocação na camada inicial. É recomendado um valor inferior para evitar que as peças anteriormente impressas sejam separadas da base de construção. O valor desta definição pode ser automaticamente calculado a partir da proporção entre a Velocidade de deslocação e a Velocidade de impressão." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "O diâmetro mínima para a qual a base da área do suporte cónico é reduzida. Larguras reduzidas podem originar estruturas de suporte instáveis." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade Contorno/Aba" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "A velocidade a que o contorno e a aba são impressos. Geralmente, isto é efetuado à velocidade de camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba a uma velocidade diferente." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do molde" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura do tecto do molde" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "A velocidade a que o movimento Z vertical é efetuado para Saltos Z. Este valor é geralmente inferior à velocidade de impressão, uma vez que é mais difícil mover a base de construção ou o pórtico da máquina." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Engomar em \"Monotonic\"" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de camadas mais lentas" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da superfície superior em \"Monotonic\"" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "As primeiras camadas são impressas mais lentamente do que o resto do modelo para obter uma melhor aderência à base de construção e melhorar a taxa de sucesso geral das impressões. A velocidade é aumentada gradualmente nessas camadas." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Superior/Inferior em \"Monotonic\"" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporção de equalização do fluxo" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fator de correção baseado no diâmetro de extrusão sobre a velocidade. A 0% a velocidade de movimento mantém-se constante à Velocidade de impressão. A 100% a velocidade de movimento é ajustada de modo a que o fluxo (em mm³/s) seja mantido constante, ou seja, linhas metade do Diâmetro da linha normal são impressas duas vezes mais depressa e as linhas duas vezes mais largas são impressas a metade da rapidez. Um valor superior a 100% pode ajudar a compensar a pressão mais elevada necessária para efetuar a extrusão de linhas largas." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Ativar controlo da aceleração" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator do movimento sem carregamento" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite o ajuste da aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir o tempo de impressão em detrimento da qualidade de impressão." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Revestimento nos Espaços Z" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Ativar a aceleração da viagem" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas não tradicionais de imprimir os seus modelos." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilizar uma taxa de aceleração separada para movimentos de viagem. Se desativados, os movimentos de viagem utilizarão o valor da aceleração da linha impressa no seu destino." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhum" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração de impressão" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "A aceleração com que é efetuada a impressão." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração de enchimento" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o enchimento é impresso." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Geralmente, o Cura tenta remendar pequenos buracos na malha e remover partes de uma camada com buracos grandes. Ativar esta opção conserva as peças que não podem ser remendadas. Esta opção deve ser utilizada como último recurso quando tudo o resto não produz um G-code adequado." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração de parede" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Revestimento" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "A aceleração com que as paredes são impressas." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Exterior" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da parede exterior" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do nozzle" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "A aceleração com que as paredes exteriores são impressas." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração da parede interior" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas não permitidas ao nozzle" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "A aceleração com que todas as paredes interiores são impressas." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração Revestimento Superior" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do nozzle" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração superior/inferior" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de preparação de substituição do nozzle" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "A aceleração com que as camadas superiores/inferiores são impressas." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de recolha de substituição do nozzle" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração de suporte" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de retração de substituição do nozzle" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "A aceleração com que a estrutura de suporte é impressa." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de retração de substituição do nozzle" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração de enchimento do suporte" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "A aceleração com que o enchimento do suporte é impresso." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores ativos" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da interface de suporte" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de camadas mais lentas" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tectos e pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do tecto de suporte" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de núcleos de extrusão. Um núcleo de extrusão é o conjunto de um alimentador (feeder), tubo bowden e nozzle." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tectos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes que o nozzle deve ser passado pela escova." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração do piso de suporte" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "O número de vezes que a densidade de enchimento deve ser reduzida para metade consoante a distância às superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores têm uma maior densidade, até ao definido na Densidade de Enchimento." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "A aceleração com que os pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a aderência do suporte na parte superior do modelo." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "O número de vezes que a densidade de enchimento do suporte deve ser reduzida para metade, quanto maior for o afastamento das superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores obtêm uma maior densidade, até ao limite do valor da Densidade do Suporte." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da torre de preparação" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "A aceleração com que a torre de preparação é impressa." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de deslocação" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Desvio aplicado ao objeto na direção X." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "A aceleração com que os movimentos de deslocação são efetuados." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Desvio aplicado ao objeto na direção Y." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da camada inicial" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Desvio aplicado ao objeto na direção Z. Com esta opção, é possível realizar o que se costumava designar como \"Afundamento de objetos\"." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "A aceleração da camada inicial." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desviar com extrusor" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de impressão da camada inicial" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Na placa de construção quando possível" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "A aceleração durante a impressão da camada inicial." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "No modelo, se necessário" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de deslocação da camada inicial" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Individualmente" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A aceleração dos movimentos de deslocação na camada inicial." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Efetua um salto Z apenas ao deslocar-se sobre as peças impressas que não podem ser evitadas pelo movimento horizontal através da opção Evitar Peças impressas durante a deslocação." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração Contorno/Aba" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "A aceleração com que o contorno e a aba são impressos. Normalmente, isto é efetuado com a aceleração da camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba com uma aceleração diferente." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Imprimir a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Ativar Controlo do Jerk" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da proteção contra escorrimentos" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão em detrimento da qualidade de impressão." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da proteção contra escorrimentos" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Ativar Jerk de Viagem" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Alcance dos Ramos Ideal" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilizar uma taxa de jerk separada para movimentos de viagem. Se for desativado, os movimentos de viagem utilizarão o valor do jerk da linha impressa no seu destino." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem Paredes" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem a otimização." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro externo do nozzle" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Enchimento" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da parede exterior" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor Parede Exterior" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk das Paredes" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo de Parede Exterior" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Desvio Parede Exterior" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Jerk da Parede Exterior" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Diâmetro Linha Parede Exterior" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Interiores" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade Parede Exterior" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância Limpeza Parede Exterior" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk Revestimento Superior" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De fora para dentro" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo da parede de saliências" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade da parede de saliências" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Coloca a limpeza em pausa após anular a retração." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk do Enchimento do Suporte" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface do Suporte" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Velocidade percentual da ventoinha a utilizar ao imprimir as regiões de revestimento imediatamente acima do suporte. A utilização de uma velocidade de ventoinha elevada facilita a remoção do suporte." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Tecto do Suporte" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Os polígonos em camadas seccionadas que apresentem uma circunferência mais pequena do que este valor serão filtrados. Valores mais reduzidos originam malhas de resolução superior à custa do tempo de seccionamento. Destina-se principalmente a impressoras SLA de alta resolução e a modelos 3D muito pequenos com muitos detalhes." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos." +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ângulo dos Ramos preferido" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk do Piso do Suporte" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Evite a transição para trás e para a frente entre uma parede extra e uma a menos. Esta margem alarga o alcance dos diâmetros de linha que seguem [Diâmetro mínimo da linha da parede - Margem, 2 * Diâmetro mínimo de linha da parede + Margem]. O aumento desta margem reduz o número de transições, o que reduz o número de inícios/paragens de extrusão e o tempo de viagem. No entanto, a variação do diâmetro de linha grande pode levar a problemas de excesso ou defeito de extrusão." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da torre de preparação" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da torre de preparação" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "Jerk da Torre de Preparação" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Deslocação" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Diâmetro Linha Torre Preparação" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume mínimo da torre de preparação" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho Torre de Preparação" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk Impressão Camada Inicial" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da torre de preparação" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da torre de preparação" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk Deslocação Camada Inicial" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da torre de preparação" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A aceleração dos movimentos de deslocação na camada inicial." +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Contorno/Aba" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração de impressão" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos." +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" -msgctxt "travel label" -msgid "Travel" -msgstr "Deslocação" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de impressão" -msgctxt "travel description" -msgid "travel" -msgstr "deslocação" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Ativar Retração" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" -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." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrair na Mudança Camada" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimir as estruturas de enchimento só onde os revestimentos superiores necessitam de suporte. Activar esta definição reduz o tempo de impressão e material usado, mas faz com que a peça não tenha uma resistência uniforme." -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." +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância de Retração" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprime modelos como moldes, os quais podem ser fundidos de forma a obter um modelo que se assemelhe aos modelos da base de construção." -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." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." -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." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade Retrair na Retração" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície." -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." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de preparação na retração" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." -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." +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Preparação Adicional de Retração" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura Impressão Camada Inicial" -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." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Imprimir a linha do contorno mais interior com múltiplas camadas facilita a remoção do contorno." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Deslocação Mínima da Retração" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas." -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." +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Número Máximo Retrações" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" -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." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalo Mínimo Distância Extrusão" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Caixa de Ar do Raft" -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." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da base do raft" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade do ventilador inferior do raft" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Combing mantém o nozzle em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores ou apenas efetuar o combing no enchimento." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento da Linha Base do Raft" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Diâmetro Linha Base do Raft" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração da Base do Raft" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Exterior" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de impressão inferior do raft" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Revestimento" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade da Base do Raft" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "No Enchimento" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distância Max. de Combing sem Retração" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Número de paredes da base do raft" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional Raft" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes Parede Exterior" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade do ventilador do raft" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Retrair sempre quando se vai começar uma parede exterior." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do meio do raft" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Áreas Impressas Durante Movimento" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade do ventilador do meio do raft" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas do meio do raft" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes na Deslocação" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Diâmetro Linha do Meio do Raft" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado." +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração do Meio do Raft" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância para evitar peças durante a deslocação" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de impressão do meio do raft" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade do Meio do Raft" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Início Camada" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada X da posição próxima do local onde se situa a peça pela qual iniciar a impressão de cada camada." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Início Camada" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração Impressão do Raft" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de impressão do raft" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z ao retrair" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade Impressão do Raft" -msgctxt "retraction_hop_enabled 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 é rebaixada 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 "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavização Raft" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z apenas sobre as peças impressas" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusora superior do raft" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Efetua um salto Z apenas ao deslocar-se sobre as peças impressas que não podem ser evitadas pelo movimento horizontal através da opção Evitar Peças impressas durante a deslocação." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade do ventilador superior do raft" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do salto Z" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura Camada Superior Raft" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao efetuar um salto Z." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z após mudança extrusor" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Diâmetro Linha Superior do Raft" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Após a máquina mudar de um extrusor para outro, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle deixe, na parte exterior de uma impressão, algum material que possa escorrer quando acaba de imprimir." +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração do Topo do Raft" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Altura do salto Z após mudança do extrusor" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de impressão superior do raft" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade do Topo do Raft" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Arrefecimento" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Arrefecimento" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Ativar Arrefecimento Impressão" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Início aleatório do enchimento" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Ativa os ventiladores de arrefecimento durante a impressão. Os ventiladores melhoram a qualidade de impressão, nas camadas que têm uma curta duração de impressão e / ou nas partes do modelo que contêm vãos / saliências." +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "A linha de enchimento que é impressa primeiro é aleatória. Isso impede que um segmento se torne o mais forte, mas exige um movimento adicional." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade Ventiladores" +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." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão." +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Velocidade Normal Ventiladores" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "A velocidade a que os ventiladores giram antes de atingir o limiar. Quando uma camada é impressa mais rapidamente do que o limiar, a velocidade do ventilador tende gradualmente a aproximar-se da velocidade máxima." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima Ventiladores" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Altura Velocidade Normal Ventilador" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "A velocidade a que os ventiladores giram no tempo mínimo de camada. A velocidade do ventilador aumenta gradualmente entre a velocidade normal do ventilador e a velocidade máxima do ventilador quando o limiar é alcançado." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Camada Velocidade Normal Ventilador" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Limiar Normal / Máximo Velocidade Ventilador" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "O tempo de camada que define o limiar entre a velocidade normal e a velocidade máxima do ventilador. As camadas que são impressas mais lentamente utilizam a velocidade normal do ventilador. Para camadas mais rápidas, a velocidade do ventilador aumenta gradualmente até à velocidade máxima." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão relativa" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial do ventilador" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos Buracos" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "A velocidade a que os ventiladores giram ao iniciar a impressão. Nas camadas subsequentes, a velocidade do ventilador aumenta gradualmente até à camada correspondente à Velocidade normal do ventilador em altura." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Altura Velocidade Normal Ventilador" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover interceção de malhas" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "A altura em que os ventiladores giram à velocidade normal. Nas camadas anteriores, a velocidade do ventilador aumenta gradualmente da Velocidade Inicial até à Velocidade Normal do ventilador." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover cantos interiores do raft" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Camada Velocidade Normal Ventilador" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "A camada na qual os ventiladores giram à velocidade normal do ventilador. Se a Altura para Velocidade Normal do ventilador estiver definida , este valor é calculado e arredondado para um número inteiro." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo mínimo por camada" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Remove os buracos em cada camada e mantém apenas a forma exterior. Isto irá ignorar qualquer geometria interna invisível. No entanto, também ignora buracos de camadas que podem ser vistos por cima ou por baixo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferência de Apoio" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes Parede Exterior" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrair na Mudança Camada" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "O tempo mínimo gasto numa camada. Isto força a impressora a abrandar para que, no mínimo, o tempo aqui definido seja gasto numa camada. Isto permite que o material impresso arrefeça devidamente antes de imprimir a camada seguinte. Ainda assim, as camadas podem demorar menos do que o tempo mínimo por camada se a opção Elevar Cabeça estiver desativada e se a Velocidade Mínima for desrespeitada." +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." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" +msgctxt "wipe_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." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "A velocidade mínima de impressão, apesar do abrandamento devido ao tempo mínimo por camada. Se a impressora abrandar demasiado, a pressão no nozzle será demasiado baixa, o que resultará numa má qualidade de impressão." +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." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Elevar Cabeça" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância de Retração" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando a velocidade mínima for alcançada devido ao tempo mínimo por camada, elevar e afastar a cabeça da impressão e aguardar o tempo adicional até atingir o tempo mínimo por camada." +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Preparação Adicional de Retração" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de impressão de camada pequena" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Deslocação Mínima da Retração" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada." +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de preparação na retração" -msgctxt "support label" -msgid "Support" -msgstr "Suportes" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade Retrair na Retração" -msgctxt "support description" -msgid "Support" -msgstr "Suportes" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Criar Suportes" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Ajustar a velocidade do ventilador entre 0-1" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor dos Suportes" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores." +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de redução do fator de escala" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor de enchimento do suporte" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "O cenário tem malhas de suporte" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência Canto Junta" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de suporte da primeira camada" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Definições utilizadas para imprimir com vários extrusores." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de interface de suporte" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura." -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores." +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração inicial do bocal partilhado" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor de tecto de suporte" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto mais Acentuado" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores." +msgctxt "shell description" +msgid "Shell" +msgstr "Invólucro" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor de piso de suporte" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais curto" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar Variantes da Máquina" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de suporte" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Revestimento" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Escolhe entre as técnicas disponíveis para gerar suporte. O suporte \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e leva estas áreas para baixo. O suporte \"Árvore\" cria ramos nas áreas salientes que suportam o modelo nas pontas destes ramos e permite que os ramos rastejem à volta do modelo de modo a suportá-lo o máximo possível a partir da base de construção." +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Revestimento" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância Expansão Revestimento" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição Revestimento (mm)" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ângulo Máximo dos Ramos" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Sobreposição Revestimento (%)" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "O ângulo máximo dos ramos enquanto estes crescem ao redor do modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Use um ângulo maior para poderem ter um maior alcance." +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura Remoção Revestimento" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diâmetro do Ramo" +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." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "O diâmetro dos ramos mais finos dos suportes tipo árvore. Ramos mais grossos são mais robustos. Os ramos serão progressivamente mais grossos do que este diâmetro quanto mais perto estiverem da base." +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diâmetro do Tronco" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Ignorar algumas ligações das linhas de suporte para facilitar a separação da estrutura de suporte. Esta definição é aplicável ao padrão em Ziguezague do enchimento de suporte." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "O diâmetro dos ramos mais amplos do suporte de árvores. Um ramo mais grosso é mais resistente; um ramo mais fino ocupa menos espaço na base de construção." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Contorno" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ângulo dos Ramos" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância Contorno" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "O ângulo do diâmetro dos ramos conforme estes ficam progressivamente mais grossos quanto mais perto estiverem da base. Um ângulo de 0º faz com que os ramos tenham um espessura constante em todo o seu comprimento. Um pequeno ângulo pode aumentar a estabilidade dos suporte tipo árvore." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura do contorno" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação do suporte" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Número Linhas Contorno" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "A Tocar na base de construção" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração Contorno/Aba" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em todo o lado" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do contorno/aba" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ângulo dos Ramos preferido" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Contorno/Aba" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "O ângulo preferido dos ramos, quando estes não têm de evitar o modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Utilize um ângulo maior para que os ramos se unam mais rapidamente." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Contorno/Aba" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento do Diâmetro Apoio no Modelo" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Diâmetro Linha Contorno/Aba" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "O diâmetro máximo que um ramo, que tem de se apoiar no modelo, pode ter ao unir-se com os ramos que podem alcançar a placa de construção. Aumentar este valor reduz o tempo de impressão, mas aumenta a área de suporte que assenta no modelo" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Comprimento Mínimo Contorno/Aba" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade Contorno/Aba" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura Mínima ao Modelo" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância do Seccionamento" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "A altura mínima que um ramo deve ter quando apoiado no modelo. Evita pequenas bolhas de suporte. Esta definição é ignorada quando um ramo está a suportar um teto do suporte." +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade da camada inicial de partes pequenas" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diâmetro da Camada Inicial" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento máximo do elemento pequeno" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diâmetro que cada ramo tenta atingir quando chega à placa de construção. Melhora a adesão à base." +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de elemento pequeno" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidade dos Ramos" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho máximo do buraco pequeno" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos ramos. Um valor mais alto resulta em melhor saliências, mas os suportes são mais difíceis de remover. Use um Teto de Suporte se os valores forem muito altos ou certificar-se de que a densidade dos suportes é igualmente elevada no topo." +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de impressão de camada pequena" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diâmetro da Ponta do Ramo" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Superfície superior/inferior pequena" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "O diâmetro do topo da ponta dos ramos do suporte de árvore." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Largura Mínima Superior/Inferior" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitar o Alcance dos Ramos" +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." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" +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." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Alcance dos Ramos Ideal" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "As regiões superiores/inferiores pequenas são preenchidas com paredes em vez do padrão superior/inferior padrão. Isto ajuda a evitar movimentos bruscos. Desativado para as camadas mais superiores (expostas ao ar) por predefinição (consulte \"Superfície superior/inferior pequena\")." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Aba Inteligente" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferência de Apoio" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "O posicionamento preferencial das estruturas de suporte. Se as estruturas não puderem ser posicionadas no local preferido, serão posicionadas noutro local, mesmo que isso signifique assentá-las sobre parte do modelo." +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "\"Spiralize\" Suavizar Contornos" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Na placa de construção quando possível" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente impercetível na impressão, mas continuará a ser visível na visualização por camadas). Tenha em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "No modelo, se necessário" +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." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo Saliência para Suportes" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "O ângulo mínimo das saliências ao qual é adicionado suportes. Com um valor de 0°, todas as saliências são suportadas e um valor de 90° não irá gerar qualquer suporte." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão de Suportes" +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "O padrão geométrico das estruturas de suporte da impressão. As diferentes opções disponíveis resultam num suporte robusto ou de fácil remoção." +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade para mover o eixo Z durante o salto." -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "\"Spiralize\" Contorno Exterior" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "\"Spiralize\" é uma opção que uniformiza o movimento em Z do contorno exterior. Isto irá criar uma elevação em Z, constante, em toda a peça. Esta funcionalidade transforma um modelo sólido numa impressão com uma única parede e com uma base sólida. Esta funcionalidade só deve ser ativada quando cada camada contiver apenas uma única peça." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura em Espera" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code Inicial" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Ponto inicial de cada trajetória de uma camada. Quando as trajetórias em camadas consecutivas começam no mesmo ponto, pode aparecer uma junta vertical na impressão. Ao alinhar o inicio das trajectórias próximo a uma posição definida pelo utilizador, é mais fácil remover a linha de junta. Quando dispostas aleatoriamente, as imprecisões no início das trajetórias serão menos perceptíveis. Ao adoptar a trajetória mais curta, a impressão será mais rápida." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Número Linhas Paredes Suporte" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado." +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Contagem das linhas de parede da interface de suporte" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais envolver a interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." +msgctxt "support description" +msgid "Support" +msgstr "Suportes" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Contagem das linhas de parede do telhado de suporte" +msgctxt "support label" +msgid "Support" +msgstr "Suportes" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais envolver o telhado da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração de suporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância inferior do suporte" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Contagem das linhas da parede inferior de suporte" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais cercar o piso da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Ligar Linhas de Suporte" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Contagem de linhas da aba do suporte" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Ligar as extremidades das linhas de suporte. Ativar esta definição permite que os suportes sejam mais robustos e também diminuir o risco de \"under-extrusion\", mas tem um gasto maior de material." +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura da aba do suporte" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Ligar ziguezagues de suporte" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Número de linhas do bloco de suporte" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague." +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do bloco de suporte" msgctxt "support_infill_rate label" msgid "Support Density" msgstr "Densidade do Suporte" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade da distância de suporte" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância da linha de suporte" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor dos Suportes" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração do piso de suporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade do piso de suporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor de piso de suporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo do Chão do Suporte" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão horizontal do piso de suporte" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância da linha de suporte da camada inicial" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk do Piso do Suporte" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções da linha do piso do suporte" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção da linha de enchimento do suporte" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância da linha do piso de suporte" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos de 0 graus." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Diâmetro Linha Piso Suporte" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Ativar aba de suporte" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão Piso Suporte" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Gera uma aba dentro das regiões de enchimento do suporte da primeira camada. Esta aba é impressa na parte por baixo do suporte e não em torno do mesmo. Ativar esta definição aumenta a aderência do suporte à base de construção." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade do piso de suporte" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura da aba do suporte" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura do piso de suporte" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Contagem de linhas da aba do suporte" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão horizontal de suporte" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais linhas melhora a aderência à base de construção à custa de algum material adicional." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração de enchimento do suporte" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância Z de suporte" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor de enchimento do suporte" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "A distância entre a parte superior/inferior da estrutura de suporte e a impressão. Esta folga permite retirar os suportes depois de o modelo ser impresso. Este valor é arredondado para um múltiplo da espessura da camada." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk do Enchimento do Suporte" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância superior do suporte" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura da camada de enchimento de suporte" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "A distância entre a parte superior do suporte e a impressão." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção da linha de enchimento do suporte" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância inferior do suporte" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade de enchimento do suporte" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "A distância entre a impressão e a parte inferior do suporte." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da interface de suporte" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do suporte" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da interface de suporte" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de interface de suporte" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade da distância de suporte" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo da Interface do Suporte" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Se a Distância X/Y de suporte substitui a Distância Z de suporte ou vice-versa. Quando X/Y substitui Z, a distância X/Y pode afastar o suporte do modelo, influenciando a distância Z real relativamente às saliências. É possível desativar esta opção não aplicando a distância X/Y em torno das saliências." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão horizontal da interface de suporte" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface do Suporte" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções da linha da interface do suporte" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância X/Y mínima de suporte" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Diâmetro Linha Interface Suporte" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da interface de suporte" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura Degraus Suporte" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridade da Interface e Suporte" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "A altura dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis. Definir como zero para desativar o comportamento semelhante a uma escada." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Resolução Interface Suporte" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima Degraus Suporte" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da interface de suporte" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "A largura máxima dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura Interface Suporte" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ângulo de declive mínimo do degrau da escada de suporte" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem das linhas de parede da interface de suporte" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "O declive mínimo da área para o efeito de degrau de escada. Valores baixos fazem com que seja mais fácil remover o suporte em declives com pouca profundidade, mas valores muito baixos podem proporcionar resultados verdadeiramente contraintuitivos noutras partes do modelo." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Distância da junção do suporte" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão horizontal de suporte" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Quantidade de desvio aplicado a todos os polígonos de suporte em cada camada. Os valores positivos podem uniformizar as áreas de suporte e produzir suportes mais robustos." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura da camada de enchimento de suporte" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância da linha de suporte" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de enchimento de suporte. Este valor deve ser sempre um múltiplo do valor da espessura das camadas. Caso contrário, será arredondado." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Diâmetro Linha Suportes" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Enchimento Gradual Suporte" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de suporte" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "O número de vezes que a densidade de enchimento do suporte deve ser reduzida para metade, quanto maior for o afastamento das superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores obtêm uma maior densidade, até ao limite do valor da Densidade do Suporte." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo Saliência para Suportes" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura do degrau de enchimento gradual de suporte" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão de Suportes" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação do suporte" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área de suporte mínimo" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do tecto de suporte" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Tamanho mínimo da área para polígonos de suporte. Os polígonos com uma área inferior a este valor não serão gerados." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do tecto de suporte" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Ativar interface de suporte" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor de tecto de suporte" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Gera uma interface densa entre o modelo e o suporte. Isto irá criar um revestimento na parte superior do suporte, onde o modelo é impresso, e na parte inferior do suporte, onde este é apoiado sobre o modelo." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto do Suporte" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Ativar tecto de suporte" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão horizontal do teto de suporte" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Gera uma base densa de material entre a parte superior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Tecto do Suporte" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Ativar piso de suporte" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções da linha do teto do suporte" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Gera uma base densa de material entre a parte inferior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância da linha do tecto de suporte" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura Interface Suporte" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Diâmetro Linha Tecto Suporte" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão do tecto de suporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do tecto de suporte" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Espessura do tecto de suporte" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem das linhas de parede do telhado de suporte" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura do piso de suporte" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade Suporte" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura Degraus Suporte" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Resolução Interface Suporte" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima Degraus Suporte" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ângulo de declive mínimo do degrau da escada de suporte" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidade da interface de suporte" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de suporte" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade dos tectos e pisos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância superior do suporte" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do tecto de suporte" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Número Linhas Paredes Suporte" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "A densidade dos tectos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do suporte" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância da linha do tecto de suporte" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância Z de suporte" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "A distância entre as linhas do tecto de suporte impressas. Esta definição é calculada através da Densidade do tecto de suporte, mas pode ser ajustada em separado." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Tipo de linhas de suporte preferidas" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade do piso de suporte" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Estrutura suporte preferida" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "A densidade dos pisos da estrutura de suporte. Um valor mais elevado resulta numa melhor aderência do suporte na parte superior do modelo." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade da ventoinha de revestimento suportada" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância da linha do piso de suporte" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "A distância entre as linhas do piso de suporte impressas. Esta definição é calculada através da Densidade do piso de suporte, mas pode ser ajustada em separado." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia da superfície" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da interface de suporte" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superfície" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "A tendência de aderência à superfície." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia da superfície." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Trocar a ordem de impressão da linha mais interior e da segunda linha mais interior da aba. Isto permite facilitar a remoção da aba." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Altera para os volumes de interceção de malha que pertencerão a cada camada, para que as malhas sobrepostas fiquem entrelaçadas. Desativar esta definição poderá fazer com que uma das malhas obtenha todo o volume na sobreposição, sendo removido das outras malhas." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +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." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada X da posição próxima do local onde se situa a peça pela qual iniciar a impressão de cada camada." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão do tecto de suporte" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão geométrico com que os tectos do suporte são impressos." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "A aceleração durante a impressão da camada inicial." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão Piso Suporte" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "A aceleração da camada inicial." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão geométrico com que os pisos do suporte são impressos." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A aceleração dos movimentos de deslocação na camada inicial." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A aceleração dos movimentos de deslocação na camada inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "A aceleração com que todas as paredes interiores são impressas." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o enchimento é impresso." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com a qual se realiza o processo de engomar." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "A aceleração com que é efetuada a impressão." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que a camada inferior (base) do raft é impressa." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "A aceleração com que os pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a aderência do suporte na parte superior do modelo." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grelha" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "A aceleração com que o enchimento do suporte é impresso." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada do meio do raft é impressa." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "A aceleração com que as paredes exteriores são impressas." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "A aceleração com que a torre de preparação é impressa." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área mínima da interface de suporte" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." -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 "Tamanho mínimo da área para polígonos da interface do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tectos e pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área mínima do teto de suporte" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tectos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." -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 "Tamanho mínimo da área para os tetos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "A aceleração com que o contorno e a aba são impressos. Normalmente, isto é efetuado com a aceleração da camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba com uma aceleração diferente." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área mínima do piso de suporte" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "A aceleração com que a estrutura de suporte é impressa." -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 "Tamanho mínimo da área para os pisos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão horizontal da interface de suporte" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão horizontal do teto de suporte" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "A aceleração com que as paredes são impressas." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade do desvio aplicado aos tetos de suporte." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão horizontal do piso de suporte" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "A aceleração com que as camadas superiores/inferiores são impressas." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade do desvio aplicado aos pisos de suporte." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "A aceleração com que os movimentos de deslocação são efetuados." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridade da Interface e Suporte" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "A quantidade de material, em relação a uma linha de revestimento normal, a ser extrudido durante o processo de engomar. Manter o nozzle cheio ajuda a preencher algumas das fissuras da superfície superior, mas cheio de mais, provoca sobre-extrusão e pequenos pontos ou \"bolhas\" na parte lateral da superfície." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Como a interface de suporte e a estrutura de suporte interagem quando se sobrepõem. Atualmente implementado apenas para o teto de suporte." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A percentagem de sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes sejam ligadas firmemente ao enchimento." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Estrutura suporte preferida" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A distância em milímetros da sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes se unam firmemente ao enchimento." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interface preferida" +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." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Tipo de linhas de suporte preferidas" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linhas de interface preferidas" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "O ângulo do topo de uma torre. Um valor mais elevado resulta em tectos de torre pontiagudos, enquanto um valor mais reduzido resulta em tectos de torre achatados." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambas se sobrepõem" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "O ângulo da saliência das paredes exteriores criadas para o molde. 0° irá tornar o invólucro exterior do molde vertical, enquanto 90° fará com que o exterior do modelo siga o contorno do mesmo." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções da linha da interface do suporte" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "O ângulo do diâmetro dos ramos conforme estes ficam progressivamente mais grossos quanto mais perto estiverem da base. Um ângulo de 0º faz com que os ramos tenham um espessura constante em todo o seu comprimento. Um pequeno ângulo pode aumentar a estabilidade dos suporte tipo árvore." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "O ângulo da inclinação do suporte cónico. 0 graus é vertical e 90 graus é horizontal. Ângulos mais reduzidos tornam o suporte mais robusto, mas consomem mais material. Ângulos negativos tornam a base do suporte mais larga do que a parte superior." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções da linha do teto do suporte" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "A densidade média dos pontos introduzidos em cada polígono numa camada. Observe que os pontos originais do polígono são eliminados, pelo que uma densidade baixa resulta numa redução da resolução." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções da linha do piso do suporte" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração predefinida do movimento da cabeça de impressão." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "A temperatura predefinida utilizada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem ser baseadas neste valor" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Substituir velocidade da ventoinha" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "A temperatura predefinida utilizada para a base de construção aquecida. Esta deve ser a temperatura \"base\" de uma base de construção. Todas as outras temperaturas de impressão devem ser baseadas neste valor" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade da ventoinha de revestimento suportada" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "A densidade dos pisos da estrutura de suporte. Um valor mais elevado resulta numa melhor aderência do suporte na parte superior do modelo." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Velocidade percentual da ventoinha a utilizar ao imprimir as regiões de revestimento imediatamente acima do suporte. A utilização de uma velocidade de ventoinha elevada facilita a remoção do suporte." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "A densidade dos tectos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizar torres" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilizar torres especializadas para suportar pequenas áreas de saliências. Estas torres têm um diâmetro maior do que a região que suportam. Junto às saliências, o diâmetro das torres diminui, criando um tecto." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da torre" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área de impressão." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "O diâmetro de uma torre especial." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado pela Torre" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "O diâmetro dos ramos mais finos dos suportes tipo árvore. Ramos mais grossos são mais robustos. Os ramos serão progressivamente mais grossos do que este diâmetro quanto mais perto estiverem da base." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "O diâmetro máximo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "O diâmetro do topo da ponta dos ramos do suporte de árvore." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do tecto da torre" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da roda que conduz o material pelo alimentador." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "O ângulo do topo de uma torre. Um valor mais elevado resulta em tectos de torre pontiagudos, enquanto um valor mais reduzido resulta em tectos de torre achatados." +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "O diâmetro dos ramos mais amplos do suporte de árvores. Um ramo mais grosso é mais resistente; um ramo mais fino ocupa menos espaço na base de construção." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de suporte pendente" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "A diferença de espessura da camada seguinte em comparação com a anterior." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte." +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as linhas de engomar." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "O cenário tem malhas de suporte" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "\"Blob\" de Preparação" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Modos de Aderência" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "A distância do limite entre modelos para gerar estrutura de interligação medida em células. Um pequeno número de células resultará numa fraca adesão." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Diferentes modos que ajudam a melhorar a aderência à base de construção, assim como a preparação inicial da extrusão. \"Aba\" acrescenta uma única camada em torno da base do modelo para prevenir empenos ou deformações na parte inferior dos modelos. \"Raft\" adiciona uma plataforma, composta por uma grelha espessa e um teto, entre o modelo e a base de construção. \"Contorno\" é uma linha impressa à volta do modelo, mas que não está ligada ao modelo." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba mais larga melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Contorno" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Aba" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos inferiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência do revestimento às paredes da camada anterior. Valores mais baixos reduzem a quantidade de material utilizado." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhum" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos para dentro do enchimento. Valores mais elevados melhoram tanto a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência ao revestimento das paredes de camadas adjacentes. Valores mais baixos reduzem a quantidade de material utilizado." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor para Aderência" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos superiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico do enchimento, assim como a aderência ao revestimento das paredes da camada seguinte. Valores mais baixos reduzem a quantidade de material utilizado." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o Contorno/Aba/Raft. Definição usada com múltiplos extrusores." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do contorno/aba" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "A velocidade adicional a que o nozzle arrefece durante a extrusão. É utilizado o mesmo valor para indicar a velocidade de aquecimento perdida ao aquecer durante a extrusão." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da base do raft" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "O núcleo de extrusão a utilizar para imprimir a primeira camada do raft. Isto é utilizado em impressoras com extrusores múltiplos." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do meio do raft" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "O núcleo de extrusão a utilizar para imprimir a camada do meio do raft. Isto é utilizado em impressoras com extrusores múltiplos." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusora superior do raft" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Número Linhas Contorno" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura do contorno" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Imprimir a linha do contorno mais interior com múltiplas camadas facilita a remoção do contorno." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância Contorno" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\nEsta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Comprimento Mínimo Contorno/Aba" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "O comprimento mínimo do Contorno ou da Aba. Se este comprimento não for alcançado pelo conjunto de todas as linhas do Contorno ou da Aba, serão acrescentadas mais linhas ao Contorno ou à Aba até o comprimento mínimo ser alcançado. Nota: Se o valor do Número de Linhas for 0, esta definição é ignorada." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura da Aba" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o Contorno/Aba/Raft. Definição usada com múltiplos extrusores." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba mais larga melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Número Linhas da Aba" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos." -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." +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância da Aba" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores." -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 "A distância horizontal entre a primeira linha da aba e o contorno da primeira camada da impressão. Uma pequena folga pode tornar a aba mais fácil de remover, e, ao mesmo tempo, proporcionar as vantagens térmicas." +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "A aba substitui o suporte" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as camadas superiores e inferiores da impressão. Definição usada com múltiplos extrusores." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a(s) camada(s) de revestimento das superfícies mais superiores. Definição usada com múltiplos extrusores." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Aba Apenas no Exterior" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Imprimir a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade do ventilador da camada inferior do raft." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Borda interna evitar margem" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade do ventilador da camada do meio do raft." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Uma peça totalmente fechada dentro de outra peça pode gerar uma aba externa que toca a parte interna da outra peça. Isto remove todas as bordas dentro dessa distância dos orifícios internos." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade do ventilador do raft." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Aba Inteligente" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade do ventilador das camadas superiores do raft." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Trocar a ordem de impressão da linha mais interior e da segunda linha mais interior da aba. Isto permite facilitar a remoção da aba." +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente no enchimento da impressão." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional Raft" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente nos suportes." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "As primeiras camadas são impressas mais lentamente do que o resto do modelo para obter uma melhor aderência à base de construção e melhorar a taxa de sucesso geral das impressões. A velocidade é aumentada gradualmente nessas camadas." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavização Raft" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "A espaço entre a camada final do raft e a primeira camada do modelo. Apenas a primeira camada do modelo é elevada por este valor, para assim reduzir a união entre o raft e o modelo. Isto facilita a remoção do raft." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) da área de impressão." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Caixa de Ar do Raft" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "A espaço entre a camada final do raft e a primeira camada do modelo. Apenas a primeira camada do modelo é elevada por este valor, para assim reduzir a união entre o raft e o modelo. Isto facilita a remoção do raft." +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que os ventiladores giram à velocidade normal. Nas camadas anteriores, a velocidade do ventilador aumenta gradualmente da Velocidade Inicial até à Velocidade Normal do ventilador." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição Z Camada Inicial" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao efetuar um salto Z." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura Camada Superior Raft" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao efetuar um salto Z." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "A espessura das camadas superiores do raft." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "A espessura (altura) de cada camada em milímetros. Espessuras maiores produzem impressões rápidas com baixa resolução, e, espessuras pequenas, produzem impressões mais lentas mas com uma maior resolução/qualidade." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Diâmetro Linha Superior do Raft" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "A altura dos vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas do meio do raft" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "O número de camadas entre a base e a superfície do raft. Estas incluem a espessura principal do raft. Aumentar este valor cria um raft mais espesso e mais resistente." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "A altura dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis. Definir como zero para desativar o comportamento semelhante a uma escada." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "A espessura da camada do meio do raft. (segunda camada)" +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 "A distância horizontal entre a primeira linha da aba e o contorno da primeira camada da impressão. Uma pequena folga pode tornar a aba mais fácil de remover, e, ao mesmo tempo, proporcionar as vantagens térmicas." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Diâmetro Linha do Meio do Raft" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\n" +"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "O diâmetro das linhas na camada do meio do raft. Extrudir mais a segunda camada provoca a aderência das linhas à base de construção." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com que a camada da base do raft é impressa." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Diâmetro Linha Base do Raft" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com que a camada do meio do raft é impressa." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com que o raft é impresso." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento da Linha Base do Raft" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com que as camadas superiores do raft são impressas." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento inferior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento inferior nas superfícies inclinadas do modelo." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade Impressão do Raft" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior/inferior nas superfícies inclinadas do modelo." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade a que o raft é impresso." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento superior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior nas superfícies inclinadas do modelo." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade do Topo do Raft" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "A camada na qual os ventiladores giram à velocidade normal do ventilador. Se a Altura para Velocidade Normal do ventilador estiver definida , este valor é calculado e arredondado para um número inteiro." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "O tempo de camada que define o limiar entre a velocidade normal e a velocidade máxima do ventilador. As camadas que são impressas mais lentamente utilizam a velocidade normal do ventilador. Para camadas mais rápidas, a velocidade do ventilador aumenta gradualmente até à velocidade máxima." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade do Meio do Raft" +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." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade da Base do Raft" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da base de construção instalada na impressora." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração Impressão do Raft" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "O ângulo máximo que uma peça da proteção contra escorrimentos poderá ter. 0 graus é vertical e 90 graus é horizontal. Um ângulo menor resulta em menos falhas na proteção contra escorrimentos, mas mais material." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "O ângulo máximo das saliências após se terem tornado imprimíveis. Com um valor de 0°, todas as saliências são substituídas por um modelo ligado à base de construção e, com um valor de 90°, o modelo não será alterado de forma alguma." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração do Topo do Raft" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "O ângulo máximo dos ramos enquanto estes crescem ao redor do modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Use um ângulo maior para poderem ter um maior alcance." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "A área máxima de um buraco na base do modelo antes que seja removido por Tornar Saliência Imprimível. Buracos mais pequenos do que este valor serão mantidos. Um valor de 0 mm² preencherá todos os buracos na base do modelo." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração do Meio do Raft" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será menor. O Desvio máximo é um limite para a Resolução máxima, pelo que, se estiverem em conflito, o Desvio máximo é sempre considerado verdadeiro." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada do meio do raft é impressa." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração da Base do Raft" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que a camada inferior (base) do raft é impressa." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "O desvio máximo da área de extrusão que é permitido quando se faz a remoção dos pontos intermédios de uma linha recta. Um ponto intermédio pode servir de ponto de alteração do diâmetro numa linha recta longa. Por isso, se for removido, fará com que a linha tenha um diâmetro uniforme e, como resultado, vai perder (ou ganhar) um pouco de área de extrusão. Se aumentar este valor, poderá notar um ligeiro excesso (ou defeito) de extrusão entre paredes paralelas retas, uma vez que os pontos de alteração dos diâmetros mais intermédios poderão ser removidos. A sua impressão será menos precisa, mas o G-code será mais pequeno." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de impressão do raft" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com que o raft é impresso." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A mudança de velocidade instantânea máxima ao engomar." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de impressão superior do raft" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com que as camadas superiores do raft são impressas." +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de impressão do meio do raft" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com que a camada do meio do raft é impressa." +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de impressão inferior do raft" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com que a camada da base do raft é impressa." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade do ventilador do raft" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade do ventilador do raft." +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade do ventilador superior do raft" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade do ventilador das camadas superiores do raft." +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade do ventilador do meio do raft" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade do ventilador da camada do meio do raft." +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade do ventilador inferior do raft" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade do ventilador da camada inferior do raft." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dupla Extrusão" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Definições utilizadas para imprimir com vários extrusores." +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Ativar torre de preparação" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima do motor da direção X." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima do motor da direção Y." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho Torre de Preparação" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima do motor da direção Z." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de preparação." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima do filamento." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume mínimo da torre de preparação" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "A largura máxima dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da torre de preparação" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "A velocidade mínima de movimento da cabeça de impressão." -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "A coordenada X da posição da torre de preparação." +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar." -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da torre de preparação" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "O tempo mínimo durante o qual um extrusor tem de estar inativo antes de o nozzle ser arrefecido. Apenas é permitido começar a arrefecer até à temperatura de Modo de Espera quando um extrusor não for utilizado por um período de tempo superior a este." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "A coordenada Y da posição da torre de preparação." +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "O ângulo mínimo das saliências internas ao qual é adicionado enchimento. Com um valor de 0° os objetos são totalmente preenchidos com enchimento, e com um valor de 90° não é produzido qualquer enchimento." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar nozzle inativo na torre de preparação" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "O ângulo mínimo das saliências ao qual é adicionado suportes. Com um valor de 0°, todas as saliências são suportadas e um valor de 90° não irá gerar qualquer suporte." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação." +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." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Aba da torre de preparação" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "O comprimento mínimo do Contorno ou da Aba. Se este comprimento não for alcançado pelo conjunto de todas as linhas do Contorno ou da Aba, serão acrescentadas mais linhas ao Contorno ou à Aba até o comprimento mínimo ser alcançado. Nota: Se o valor do Número de Linhas for 0, esta definição é ignorada." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"." +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Diâmetro mínimo da linha para as paredes poligonais de enchimento de folgas das linhas do meio. Esta definição determina a espessura do modelo em que passamos da impressão de duas linhas da parede para a impressão de duas paredes exteriores e de uma única parede central no meio. Um diâmetro mínimo da parede ímpar maior provoca um maior diâmetro máximo de linha da parede par. O diâmetro máximo de linha da parede ímpar é calculado como 2 * diâmetro mínimo de linha da parede par." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ativar proteção contra escorrimento" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "O diâmetro mínimo da linha para as paredes poligonais normais. Esta definição determina a espessura do modelo em que passamos da impressão de uma única linha fina de parede para a impressão de duas linhas de parede. Um maior diâmetro mínimo de linha da parede Par causa um maior diâmetro máximo de linha da parede Ímpar. O diâmetro máximo de linha da parede Par é calculado como o diâmetro da linha da parede externa + 0,5 * diâmetro mínimo da linha da parede Ímpar." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle." +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "A velocidade mínima de impressão, apesar do abrandamento devido ao tempo mínimo por camada. Se a impressora abrandar demasiado, a pressão no nozzle será demasiado baixa, o que resultará numa má qualidade de impressão." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da proteção contra escorrimentos" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "O tamanho mínimo de um segmento após o seccionamento. Se aumentar este valor, a malha terá uma resolução menor. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code e irá aumentar a velocidade de seccionamento ao remover os detalhes da malha que não podem ser processados." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "O ângulo máximo que uma peça da proteção contra escorrimentos poderá ter. 0 graus é vertical e 90 graus é horizontal. Um ângulo menor resulta em menos falhas na proteção contra escorrimentos, mas mais material." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "O tamanho mínimo de um segmento de deslocação após o seccionamento. Se aumentar este valor, o movimento de deslocação nos cantos será menos suave. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code, mas pode reduzir a precisão do movimento ao evitar as peças já impressas." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da proteção contra escorrimentos" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "O declive mínimo da área para o efeito de degrau de escada. Valores baixos fazem com que seja mais fácil remover o suporte em declives com pouca profundidade, mas valores muito baixos podem proporcionar resultados verdadeiramente contraintuitivos noutras partes do modelo." -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." +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo gasto numa camada. Isto força a impressora a abrandar para que, no mínimo, o tempo aqui definido seja gasto numa camada. Isto permite que o material impresso arrefeça devidamente antes de imprimir a camada seguinte. Ainda assim, as camadas podem demorar menos do que o tempo mínimo por camada se a opção Elevar Cabeça estiver desativada e se a Velocidade Mínima for desrespeitada." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de retração de substituição do nozzle" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." -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." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "O diâmetro máximo que um ramo, que tem de se apoiar no modelo, pode ter ao unir-se com os ramos que podem alcançar a placa de construção. Aumentar este valor reduz o tempo de impressão, mas aumenta a área de suporte que assenta no modelo" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de retração de substituição do nozzle" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "O nome do seu modelo de impressora 3D." -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." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de recolha de substituição do nozzle" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado." -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." +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de preparação de substituição do nozzle" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro." -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." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." -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." +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." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correção de Objectos (Mesh)" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "O número de camadas entre a base e a superfície do raft. Estas incluem a espessura principal do raft. Aumentar este valor cria um raft mais espesso e mais resistente." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Torne os objetos mais adequados para impressão 3D." +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." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unir Volumes Sobrepostos" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais linhas melhora a aderência à base de construção à custa de algum material adicional." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos Buracos" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Remove os buracos em cada camada e mantém apenas a forma exterior. Isto irá ignorar qualquer geometria interna invisível. No entanto, também ignora buracos de camadas que podem ser vistos por cima ou por baixo." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "O número de camadas de revestimento da superfície superior. Por norma, uma só camada superior é suficiente para gerar superfícies superiores de maior qualidade." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensiva" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los com os polígonos adjacentes. Esta opção pode acrescentar bastante tempo de processamento." +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais cercar o piso da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Soltas" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais envolver o telhado da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Geralmente, o Cura tenta remendar pequenos buracos na malha e remover partes de uma camada com buracos grandes. Ativar esta opção conserva as peças que não podem ser remendadas. Esta opção deve ser utilizada como último recurso quando tudo o resto não produz um G-code adequado." +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais envolver a interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição Malhas Combinadas" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação tem de ser distribuída. Valores mais baixos significam que as paredes exteriores não mudam de diâmetro." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover interceção de malhas" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "O diâmetro externo da ponta do nozzle." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados." +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar remoção de malha" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "O padrão geométrico das estruturas de suporte da impressão. As diferentes opções disponíveis resultam num suporte robusto ou de fácil remoção." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Altera para os volumes de interceção de malha que pertencerão a cada camada, para que as malhas sobrepostas fiquem entrelaçadas. Desativar esta definição poderá fazer com que uma das malhas obtenha todo o volume na sobreposição, sendo removido das outras malhas." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão geométrico das camadas de revestimento da superfície superior." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "O padrão geométrico das camadas superiores / inferiores." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro." +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão geométrico da base da peça na camada inicial." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "O tamanho mínimo de um segmento após o seccionamento. Se aumentar este valor, a malha terá uma resolução menor. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code e irá aumentar a velocidade de seccionamento ao remover os detalhes da malha que não podem ser processados." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão geométrico com que os pisos do suporte são impressos." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolução Máxima Deslocação" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "O tamanho mínimo de um segmento de deslocação após o seccionamento. Se aumentar este valor, o movimento de deslocação nos cantos será menos suave. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code, mas pode reduzir a precisão do movimento ao evitar as peças já impressas." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão geométrico com que os tectos do suporte são impressos." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio máximo" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será menor. O Desvio máximo é um limite para a Resolução máxima, pelo que, se estiverem em conflito, o Desvio máximo é sempre considerado verdadeiro." +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "O ângulo preferido dos ramos, quando estes não têm de evitar o modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Utilize um ângulo maior para que os ramos se unam mais rapidamente." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio máximo da área de extrusão" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "O posicionamento preferencial das estruturas de suporte. Se as estruturas não puderem ser posicionadas no local preferido, serão posicionadas noutro local, mesmo que isso signifique assentá-las sobre parte do modelo." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "O desvio máximo da área de extrusão que é permitido quando se faz a remoção dos pontos intermédios de uma linha recta. Um ponto intermédio pode servir de ponto de alteração do diâmetro numa linha recta longa. Por isso, se for removido, fará com que a linha tenha um diâmetro uniforme e, como resultado, vai perder (ou ganhar) um pouco de área de extrusão. Se aumentar este valor, poderá notar um ligeiro excesso (ou defeito) de extrusão entre paredes paralelas retas, uma vez que os pontos de alteração dos diâmetros mais intermédios poderão ser removidos. A sua impressão será menos precisa, mas o G-code será mais pequeno." +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Ativar o movimento fluido" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Quando ativados, os percursos da ferramenta são corrigidos para impressoras com planeadores de movimento suave. Os pequenos movimentos que se desviam da direção do percurso da ferramenta geral são suavizados para melhorar a fluidez dos movimentos." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "A forma da cabeça de impressão. Estas coordenadas são relativas à posição da cabeça de impressão, que normalmente é a posição do primeiro extrusor. As coordenadas à esquerda e à frente da cabeça de impressão têm de ser valores negativos." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distância da alteração do movimento fluido" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "O tamanho das bolsas em cruzamentos de quatro vias no padrão de cruz 3D em alturas onde o padrão está em contacto consigo próprio." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Os pontos de distância são alterados para suavizar o percurso" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "O menor volume que um caminho de extrusão deve ter antes de permitir a desaceleração. Para caminhos de extrusão mais curtos, é acumulada menos pressão no tubo Bowden e, como tal, o volume de desaceleração adota uma escala linear. Este valor deve sempre ser superior ao Volume de desaceleração." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Distância pequena do movimento fluido" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "A velocidade média (°C/s) a que o nozzle é arrefecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Os pontos de distância são alterados para suavizar o percurso" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "A velocidade média (°C/s) a que o nozzle é aquecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ângulo do movimento fluido" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se o segmento de um percurso de ferramenta se desviar mais do que este ângulo em relação ao movimento geral, o mesmo é suavizado." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "A velocidade a que o enchimento é impresso." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas não tradicionais de imprimir os seus modelos." +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "A velocidade a que é efetuada a impressão." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de impressão" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." -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 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 "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "A velocidade a que as paredes de Bridge são impressas." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Simultaneamente" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "A velocidade a que os ventiladores giram ao iniciar a impressão. Nas camadas subsequentes, a velocidade do ventilador aumenta gradualmente até à camada correspondente à Velocidade normal do ventilador em altura." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "A velocidade a que os ventiladores giram antes de atingir o limiar. Quando uma camada é impressa mais rapidamente do que o limiar, a velocidade do ventilador tende gradualmente a aproximar-se da velocidade máxima." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Individualmente" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "A velocidade a que os ventiladores giram no tempo mínimo de camada. A velocidade do ventilador aumenta gradualmente entre a velocidade normal do ventilador e a velocidade máxima do ventilador quando o limiar é alcançado." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Objecto de Enchimento" +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." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilize este objecto para modificar o enchimento de outros objectos com os quais se sobrepõe. Substitui as regiões de enchimento de outros objectos por regiões deste objecto. É recomendado imprimir este objecto apenas com uma Parede e sem Superfícies Superior/Inferior." +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificação de processamento de malha" +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." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina a prioridade desta malha para resolver a sobreposição de várias malhas de enchimento. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a prioridade mais alta. Uma malha de enchimento com uma prioridade superior irá modificar o enchimento das malhas de enchimento com uma prioridade inferior e também as malhas normais." +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." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de corte" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta." +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." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" +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." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprime modelos como moldes, os quais podem ser fundidos de forma a obter um modelo que se assemelhe aos modelos da base de construção." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura mínima do molde" +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." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "A velocidade a que o piso de suporte é impresso. Imprimi-lo a uma velocidade baixa pode melhorar a aderência do suporte na parte superior do modelo." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura do tecto do molde" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do molde" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "A velocidade a que as paredes exteriores são impressas. Imprimir a parede exterior a uma velocidade mais reduzida melhora a qualidade final do revestimento. No entanto, a existência de uma grande diferença entre a velocidade da parede interior e a velocidade de parede exterior afetará a qualidade de uma forma negativa." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "O ângulo da saliência das paredes exteriores criadas para o molde. 0° irá tornar o invólucro exterior do molde vertical, enquanto 90° fará com que o exterior do modelo siga o contorno do mesmo." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "A velocidade à qual a torre de preparação é impressa. Imprimir a torre de preparação mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é insuficiente." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de suporte" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade a que o raft é impresso." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha antissaliências" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade a que os tectos e os pisos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilize esta malha para especificar a parte do modelo que não deve ser detetada como saliência. Esta opção pode ser utilizada para remover estruturas de suporte indesejadas." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superfície" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "A velocidade a que o contorno e a aba são impressos. Geralmente, isto é efetuado à velocidade de camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba a uma velocidade diferente." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar o modelo como um volume, apenas como uma superfície ou como volumes com superfícies soltas. O modo de impressão \"Normal\" imprime apenas volumes fechados. O modo \"Superfície\" imprime uma única parede que acompanha a superfície do objecto sem enchimento ou revestimento superior/inferior. O modo \"Ambos\" imprime volumes fechados como \"Normal\" e quaisquer polígonos soltos como superfícies." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "A velocidade a que a estrutura de suporte é impressa. Imprimir o suporte a velocidades elevadas pode reduzir consideravelmente o tempo de impressão. A qualidade da superfície da estrutura de suporte não é importante, uma vez que esta é removida após a impressão." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "\"Spiralize\" Contorno Exterior" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "A velocidade a que o movimento Z vertical é efetuado para Saltos Z. Este valor é geralmente inferior à velocidade de impressão, uma vez que é mais difícil mover a base de construção ou o pórtico da máquina." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "\"Spiralize\" é uma opção que uniformiza o movimento em Z do contorno exterior. Isto irá criar uma elevação em Z, constante, em toda a peça. Esta funcionalidade transforma um modelo sólido numa impressão com uma única parede e com uma base sólida. Esta funcionalidade só deve ser ativada quando cada camada contiver apenas uma única peça." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "A velocidade a que as paredes são impressas." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "\"Spiralize\" Suavizar Contornos" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente impercetível na impressão, mas continuará a ser visível na visualização por camadas). Tenha em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície." +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade de retração do filamento para separá-lo de forma regular." -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão relativa" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizar a extrusão relativa em vez da extrusão absoluta. A utilização de passos-E relativos facilita o pós-processamento do G-code. Contudo, isto não é compatível com todas as impressoras e poderá produzir ligeiros desvios na quantidade de material depositado em comparação com os passos-E absolutos. Não considerando esta definição, o modo de extrusão será sempre definido como absoluto antes da exportação de qualquer script g-code." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "A velocidade a que as camadas superiores/inferiores são impressas." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "A velocidade a que os movimentos de deslocação são efetuados." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funcionalidades que ainda não foram totalmente lançadas." +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "A velocidade de movimento durante a desaceleração, relativa à velocidade do caminho de extrusão. É recomendado um valor ligeiramente abaixo de 100%, uma vez que durante o movimento de desaceleração, a pressão no tubo Bowden diminui." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância do Seccionamento" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "A velocidade da camada inicial. Recomenda-se um valor baixo para melhorar a aderência à base de construção. Não afeta as estruturas de aderência da base de construção propriamente ditas, como aba e raft." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerância vertical nas camadas seccionadas. Os contornos de uma camada são geralmente gerados passando as secções cruzadas através do centro de cada espessura da camada (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo de toda a espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram em qualquer sítio do interior da camada (Inclusivo). A opção Inclusivo retém o maior número de detalhes, a opção Exclusivo garante a melhor adaptação ao modelo e a opção Centro permanece próximo da superfície original." +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Centro" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "A velocidade dos movimentos de deslocação na camada inicial. É recomendado um valor inferior para evitar que as peças anteriormente impressas sejam separadas da base de construção. O valor desta definição pode ser automaticamente calculado a partir da proporção entre a Velocidade de deslocação e a Velocidade de impressão." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" +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." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "A temperatura do ambiente para a impressão. Se este valor for 0, a temperatura do volume de construção não será ajustada." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimização Deslocação Enchimento" +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." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando activado, a ordem, pela qual as linhas de enchimento são impressas, é optimizada para poder reduzir a distância percorrida. A redução do tempo total de deslocação depende de muitos factores tais como, o modelo que está a ser seccionado, o padrão de enchimento, a densidade, etc. Ter em atenção que para modelos que tenham muitas áreas pequenas de enchimento, o tempo de seccionamento pode aumentar consideravelmente." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de temperatura de fluxo" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)." +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura utilizada para a impressão." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferência Mínima do Polígono" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada. Se este valor for 0, a temperatura da base de construção não é aquecida durante a primeira camada." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Os polígonos em camadas seccionadas que apresentem uma circunferência mais pequena do que este valor serão filtrados. Valores mais reduzidos originam malhas de resolução superior à custa do tempo de seccionamento. Destina-se principalmente a impressoras SLA de alta resolução e a modelos 3D muito pequenos com muitos detalhes." +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base de construção não é aquecida." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Gerar estrutura de interligação" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nos locais onde os modelos tocam, gere uma estrutura de vigas interligadas. Isto melhora a adesão entre os modelos, especialmente os modelos impressos em materiais diferentes." +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largura do feixe de interligação" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento." -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "A largura das vigas da estrutura de interligação." +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientação da estrutura de interligação" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura dos vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado." -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Contagem de camada de feixe de interligação" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "A espessura total das camadas superiores e inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores / inferiores." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidade de interligação" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "A espessura das paredes na direção horizontal. Este valor, dividido pelo diâmetro da linha de parede, define o número de paredes." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "A distância do limite entre modelos para gerar estrutura de interligação medida em células. Um pequeno número de células resultará numa fraca adesão." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Evitar a interligação de fronteiras" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de enchimento de suporte. Este valor deve ser sempre um múltiplo do valor da espessura das camadas. Caso contrário, será arredondado." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-code a ser gerado." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Separar Suportes em Blocos" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Ignorar algumas ligações das linhas de suporte para facilitar a separação da estrutura de suporte. Esta definição é aplicável ao padrão em Ziguezague do enchimento de suporte." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área de impressão." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do bloco de suporte" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte." +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura das vigas da estrutura de interligação." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Número de linhas do bloco de suporte" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de preparação." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Barreira contra correntes de ar" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "O diâmetro dentro da qual deve ser produzida vibração. É recomendado mantê-la abaixo do diâmetro da parede exterior, uma vez que as paredes interiores não são alteradas." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Isto irá criar uma parede em torno do modelo, que retém o ar (quente) e protege contra correntes de ar externas. Esta opção é especialmente útil para materiais que se deformam com facilidade." +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." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da proteção contra correntes de ar" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "A coordenada X da posição da torre de preparação." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "A coordenada Y da posição da torre de preparação." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite de proteção contra correntes de ar" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Máximo" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" +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." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da proteção contra correntes de ar" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Isto irá criar uma parede em torno do modelo, que retém o ar (quente) e protege contra correntes de ar externas. Esta opção é especialmente útil para materiais que se deformam com facilidade." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limite de altura da proteção contra correntes de ar. Não será impressa qualquer proteção contra correntes de ar acima desta altura." +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diâmetro da Ponta do Ramo" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Tornar Saliência Imprimível" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)." -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Altera a geometria do modelo impresso de forma que seja necessário suporte mínimo. Saliências acentuadas tornar-se-ão saliências rasas. As áreas de saliências irão baixar para se tornarem mais verticais." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo máximo do modelo" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "O ângulo máximo das saliências após se terem tornado imprimíveis. Com um valor de 0°, todas as saliências são substituídas por um modelo ligado à base de construção e, com um valor de 90°, o modelo não será alterado de forma alguma." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima do buraco da saliência" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância Expansão Revestimento Superior" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "A área máxima de um buraco na base do modelo antes que seja removido por Tornar Saliência Imprimível. Buracos mais pequenos do que este valor serão mantidos. Um valor de 0 mm² preencherá todos os buracos na base do modelo." +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura Remoção Revestimento Superior" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Ativar desaceleração" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da parede interna da superfície superior" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "\"Coasting\" substitui a última parte de um percurso de extrusão por um percurso de deslocamento. O material que escorreu é utilizado para imprimir a última parte do percurso de extrusão de forma a reduzir o surgimento de fios." +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Exterior da Superfície Superior" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de desaceleração" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da parede interna da superfície superior" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo da parede interna da superfície superior" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume mínimo antes da desaceleração" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da parede externa da superfície superior" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "O menor volume que um caminho de extrusão deve ter antes de permitir a desaceleração. Para caminhos de extrusão mais curtos, é acumulada menos pressão no tubo Bowden e, como tal, o volume de desaceleração adota uma escala linear. Este valor deve sempre ser superior ao Volume de desaceleração." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da parede mais externa da superfície superior" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de desaceleração" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk das Paredes Interiores da Superfície Superior" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "A velocidade de movimento durante a desaceleração, relativa à velocidade do caminho de extrusão. É recomendado um valor ligeiramente abaixo de 100%, uma vez que durante o movimento de desaceleração, a pressão no tubo Bowden diminui." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da parede mais externa da superfície superior" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho da bolsa de cruz 3D" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração Revestimento Superior" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "O tamanho das bolsas em cruzamentos de quatro vias no padrão de cruz 3D em alturas onde o padrão está em contacto consigo próprio." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor Revestimento Superior" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem Densidade Enchimento Cruz" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo de Revestimento da Superfície Superior" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente no enchimento da impressão." +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk Revestimento Superior" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem Densidade Suporte em Cruz" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas Revestimento Superior" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente nos suportes." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções Linha Revestimento Superior" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Ativar suporte cónico" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Diâmetro Linha Revestimento Superior" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão Revestimento Superior" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo do suporte cónico" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade Revestimento Superior" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "O ângulo da inclinação do suporte cónico. 0 graus é vertical e 90 graus é horizontal. Ângulos mais reduzidos tornam o suporte mais robusto, mas consomem mais material. Ângulos negativos tornam a base do suporte mais larga do que a parte superior." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura mínima do suporte cónico" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e fará com que nenhum revestimento seja expandido, enquanto um ângulo de 90° é vertical e fará com que todo o revestimento seja expandido." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "O diâmetro mínima para a qual a base da área do suporte cónico é reduzida. Larguras reduzidas podem originar estruturas de suporte instáveis." +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior / Inferior" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Revestimento Difuso" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior / Inferior" -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." +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração superior/inferior" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Revestimento difuso apenas no exterior" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior / Inferior" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Vibrar apenas os contornos das peças e não os buracos das peças." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo Superior/Inferior" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura Revestimento Difuso" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "O diâmetro dentro da qual deve ser produzida vibração. É recomendado mantê-la abaixo do diâmetro da parede exterior, uma vez que as paredes interiores não são alteradas." +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções Linha Superior / Inferior" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade Revestimento Difuso" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Diâmetro Linha Superior / Inferior" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "A densidade média dos pontos introduzidos em cada polígono numa camada. Observe que os pontos originais do polígono são eliminados, pelo que uma densidade baixa resulta numa redução da resolução." +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior / Inferior" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância do ponto de revestimento difuso" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior / Inferior" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "A Tocar na base de construção" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da torre" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de compensação da taxa de fluxo" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do tecto da torre" -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." +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 "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar camadas adaptáveis" +msgctxt "travel label" +msgid "Travel" +msgstr "Deslocação" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo." +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de deslocação" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variação máxima das camadas adaptáveis" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância para evitar peças durante a deslocação" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas." +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Deslocação" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho da fase de variação das camadas adaptáveis" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de deslocação" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "A diferença de espessura da camada seguinte em comparação com a anterior." +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar o modelo como um volume, apenas como uma superfície ou como volumes com superfícies soltas. O modo de impressão \"Normal\" imprime apenas volumes fechados. O modo \"Superfície\" imprime uma única parede que acompanha a superfície do objecto sem enchimento ou revestimento superior/inferior. O modo \"Ambos\" imprime volumes fechados como \"Normal\" e quaisquer polígonos soltos como superfícies." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensão da topografia das camadas adaptáveis" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" -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." +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo da parede de saliências" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -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." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade da parede de saliências" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal." +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Ativar Definições de Bridge" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de impressão, do fluxo e da ventoinha durante a impressão de vãos ou saliências." +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diâmetro do Tronco" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento mínimo da parede de Bridge" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unir Volumes Sobrepostos" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." msgstr "Paredes sem suporte com comprimento menor que este valor serão impressas utilizando as definições de parede normais. Paredes sem suporte mais longas serão impressas utilizando as definições da parede de Bridge." -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar do suporte do revestimento de Bridge" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar camadas adaptáveis" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizar torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilizar uma taxa de aceleração separada para movimentos de viagem. Se desativados, os movimentos de viagem utilizarão o valor da aceleração da linha impressa no seu destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilizar uma taxa de jerk separada para movimentos de viagem. Se for desativado, os movimentos de viagem utilizarão o valor do jerk da linha impressa no seu destino." -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." +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizar a extrusão relativa em vez da extrusão absoluta. A utilização de passos-E relativos facilita o pós-processamento do G-code. Contudo, isto não é compatível com todas as impressoras e poderá produzir ligeiros desvios na quantidade de material depositado em comparação com os passos-E absolutos. Não considerando esta definição, o modo de extrusão será sempre definido como absoluto antes da exportação de qualquer script g-code." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máx. Enchimento Disperso de Bridge" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilizar torres especializadas para suportar pequenas áreas de saliências. Estas torres têm um diâmetro maior do que a região que suportam. Junto às saliências, o diâmetro das torres diminui, criando um tecto." -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 "Densidade máxima do enchimento considerado como disperso. O revestimento sobre o enchimento disperso não é considerado como ter suportes, pelo que pode ser tratado como um revestimento de Bridge." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilize este objecto para modificar o enchimento de outros objectos com os quais se sobrepõe. Substitui as regiões de enchimento de outros objectos por regiões deste objecto. É recomendado imprimir este objecto apenas com uma Parede e sem Superfícies Superior/Inferior." -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desaceleração da parede de Bridge" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso." +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilize esta malha para especificar a parte do modelo que não deve ser detetada como saliência. Esta opção pode ser utilizada para remover estruturas de suporte indesejadas." -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da parede de Bridge" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Definido pelo utilizador" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "A velocidade a que as paredes de Bridge são impressas." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento vertical" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da parede de Bridge" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerância vertical nas camadas seccionadas. Os contornos de uma camada são geralmente gerados passando as secções cruzadas através do centro de cada espessura da camada (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo de toda a espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram em qualquer sítio do interior da camada (Inclusivo). A opção Inclusivo retém o maior número de detalhes, a opção Exclusivo garante a melhor adaptação ao modelo e a opção Centro permanece próximo da superfície original." -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar pelo Aquecimento da Base de Construção" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do revestimento de Bridge" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar pelo aquecimento do nozzle" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração de parede" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do revestimento de Bridge" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Número de paredes distribuídas" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor Paredes" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do revestimento de Bridge" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo da Parede" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk das Paredes" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade da ventoinha de Bridge" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número Linhas Paredes" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge." +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Diâmetro Linha Parede" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Bridge com múltiplas camadas" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordenação de paredes" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se ativada, a segunda e a terceira camada sobre o ar são impressas utilizando as seguintes definições. Caso contrário, essas camadas são impressas utilizando as definições normais." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade Paredes" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade do segundo revestimento de Bridge" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura das Paredes" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de transição de paredes" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo do segundo revestimento de Bridge" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância do filtro de transição de paredes" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem do filtro de transição de paredes" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade do segundo revestimento de Bridge" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo do limiar de transição de paredes" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" +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." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade do terceiro revestimento de Bridge" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Quando ativados, os percursos da ferramenta são corrigidos para impressoras com planeadores de movimento suave. Os pequenos movimentos que se desviam da direção do percurso da ferramenta geral são suavizados para melhorar a fluidez dos movimentos." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando activado, a ordem, pela qual as linhas de enchimento são impressas, é optimizada para poder reduzir a distância percorrida. A redução do tempo total de deslocação depende de muitos factores tais como, o modelo que está a ser seccionado, o padrão de enchimento, a densidade, etc. Ter em atenção que para modelos que tenham muitas áreas pequenas de enchimento, o tempo de seccionamento pode aumentar consideravelmente." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo do terceiro revestimento de Bridge" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte." -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Quando ativado, as coordenadas da junta-Z são relativas ao centro de cada peça. Quando desativado, as coordenadas definem uma posição absoluta na base de construção." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade do terceiro revestimento de Bridge" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando este valor for superior a zero, a Expansão Horizontal de Buraco é aplicada de forma progressiva nos buracos pequenos (os buracos pequenos serão mais expandidos). Com um valor de zero, a Expansão Horizontal de Buraco será aplicada a todos os buracos. Os buracos maiores que o Diâmetro Máximo de Expansão Horizontal de Buraco não serão expandidos." -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Quando superior a zero, a expansão horizontal de orifícios é o valor do desvio aplicado a todos os orifícios em cada camada. Os valores positivos aumentam a dimensão dos orifícios e os valores negativos reduzem a dimensão dos orifícios. Quando esta definição está ativa pode ser otimizada adicionalmente com o diâmetro máximo da expansão horizontal de orifícios." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar nozzle entre camadas" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "clean_between_layers description" -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 "Se, se deve incluir o G-Code para a limpeza do nozzle entre camadas (máximo de 1 por camada). Ativar esta definição pode influenciar o comportamento da retração na mudança da camada. Utilize as definições da Retração de Limpeza para controlar a retração em camadas onde o script de limpeza estará a funcionar." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de material entre limpezas" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." -msgctxt "max_extrusion_before_wipe description" -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 "Quantidade máxima de material que pode ser extrudido antes de ser iniciada outra limpeza do nozzle. Se este valor for inferior ao volume do material necessário numa camada, esta definição não tem qualquer influência nessa camada, ou seja, está limitada a uma limpeza por camada." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando a velocidade mínima for alcançada devido ao tempo mínimo por camada, elevar e afastar a cabeça da impressão e aguardar o tempo adicional até atingir o tempo mínimo por camada." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Retração de limpeza ativada" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando o modelo tem pequenos espaços verticais de apenas algumas camadas, deverá normalmente existir revestimento à volta dessas camadas no espaço estreito. Ative esta definição para não gerar revestimento se o espaço vertical for muito pequeno. Isto melhora o tempo de impressão e o tempo de seccionamento, mas deixa tecnicamente o enchimento exposto ao ar." -msgctxt "wipe_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." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Quando devem ser criadas transições entre números pares e ímpares de paredes. Uma forma em cunha com um ângulo superior a esta definição não terá transições e nenhuma parede será impressa no centro para preencher o espaço restante. Reduzir esta definição reduz o número e o comprimento destas paredes centrais, mas pode deixar lacunas ou provocar um excesso de extrusão." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Quando uma peça fica mais fina e seja necessário haver uma transição entre um numero diferente de paredes, é reservado um espaço para se puder separar ou unir as linhas das paredes." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de retração da limpeza" +msgctxt "wipe_hop_enable description" +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 "Quando efetuar a limpeza, a base de construção é descida para criar um espaço entre o nozzle e a impressão. Impede o nozzle de atingir a impressão durante os movimentos de deslocação, reduzindo a possibilidade de derrubar a impressão da base de construção." -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza." +msgctxt "retraction_hop_enabled 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 é rebaixada 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 "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade de preparação adicional de retração de limpeza" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Se a Distância X/Y de suporte substitui a Distância Z de suporte ou vice-versa. Quando X/Y substitui Z, a distância X/Y pode afastar o suporte do modelo, influenciando a distância Z real relativamente às saliências. É possível desativar esta opção não aplicando a distância X/Y em torno das saliências." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade de retração de limpeza" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade de retração na retração de limpeza" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de preparação da retração de limpeza" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Se as extrusoras partilham um único bocal, em vez de cada extrusora ter um bocal próprio. Quando definido como verdadeiro, espera-se que o script gcode de arranque da impressora configure corretamente todas as extrusoras num estado de retração inicial conhecido e mutuamente compatível (seja zero ou um filamento não retraído); nesse caso, o estado de retração inicial é descrito, por extrusora, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza." +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Se a máquina tem ou não uma base de construção aquecida." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa na limpeza" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Coloca a limpeza em pausa após anular a retração." +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Permite centrar o objeto no centro da base de construção (0,0), em vez de utilizar o sistema de coordenadas no qual o objeto foi guardado." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z de limpeza" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Controlar ou não a temperatura a partir do Cura. Desative esta opção para controlar a temperatura do nozzle a partir de fora do Cura." -msgctxt "wipe_hop_enable description" -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 "Quando efetuar a limpeza, a base de construção é descida para criar um espaço entre o nozzle e a impressão. Impede o nozzle de atingir a impressão durante os movimentos de deslocação, reduzindo a possibilidade de derrubar a impressão da base de construção." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Incluir ou não os comandos de temperatura da base de construção no início do gcode. Se o gcode_inicial já incluir os comandos de temperatura da base de construção, o front-end do Cura desativará automaticamente esta definição." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do salto Z de limpeza" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Incluir ou não os comandos de temperatura do nozzle no início do G-code. Se o gcode_inicial já incluir os comandos de temperatura do nozzle, o front-end do Cura desativará automaticamente esta definição." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao efetuar um salto Z." +msgctxt "clean_between_layers description" +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 "Se, se deve incluir o G-Code para a limpeza do nozzle entre camadas (máximo de 1 por camada). Ativar esta definição pode influenciar o comportamento da retração na mudança da camada. Utilize as definições da Retração de Limpeza para controlar a retração em camadas onde o script de limpeza estará a funcionar." -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do salto de limpeza" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade para mover o eixo Z durante o salto." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da escova de limpeza" +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 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 "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Localização X onde o script de limpeza será iniciado." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de repetições de limpeza" +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." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes que o nozzle deve ser passado pela escova." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância do movimento de limpeza" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "O diâmetro de uma única linha de enchimento." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova." +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "O diâmetro de uma única linha do chão ou tecto de suporte." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho máximo do buraco pequeno" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "O diâmetro (largura) de uma única linha. Normalmente, o diâmetro de cada linha deve corresponder ao diâmetro do nozzle. No entanto, reduzir ligeiramente este valor pode produzir melhores impressões." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento máximo do elemento pequeno" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "O diâmetro de uma única linha da torre de preparação." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "O diâmetro de uma única linha do contorno ou da aba." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de elemento pequeno" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "O diâmetro de uma única linha do piso de suporte." -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." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "O diâmetro de uma única linha do tecto de suporte." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade da camada inicial de partes pequenas" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "O diâmetro de uma única linha da estrutura de suporte." -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." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "O diâmetro de uma única linha das superfícies superior/inferior." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Direções de parede alternadas" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Alterne as inserções e as direções das parede em camadas em cada camada. Útil para materiais que podem acumular tensão, como para a impressão de metal." +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "O diâmetro de uma única linha de parede." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover cantos interiores do raft" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "O diâmetro das linhas na camada do meio do raft. Extrudir mais a segunda camada provoca a aderência das linhas à base de construção." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Número de paredes da base do raft" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Definições de linha de comando" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Diâmetro da parede que substituirá elementos finos (de acordo com o Tamanho mínimo do elemento) do modelo. Se o Diâmetro mínimo de linha da parede for mais fino do que a espessura do elemento, a parede tornar-se-á tão espessa como o próprio elemento." -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura." +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da escova de limpeza" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Centrar Objeto" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do salto de limpeza" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Permite centrar o objeto no centro da base de construção (0,0), em vez de utilizar o sistema de coordenadas no qual o objeto foi guardado." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar nozzle inativo na torre de preparação" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância do movimento de limpeza" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Posição X do Objeto" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar nozzle entre camadas" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Desvio aplicado ao objeto na direção X." +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa na limpeza" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Posição Y do Objeto" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de repetições de limpeza" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Desvio aplicado ao objeto na direção Y." +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de retração da limpeza" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Posição Z do Objeto" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Retração de limpeza ativada" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Desvio aplicado ao objeto na direção Z. Com esta opção, é possível realizar o que se costumava designar como \"Afundamento de objetos\"." +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade de preparação adicional de retração de limpeza" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Matriz Rotação do Objeto" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de preparação da retração de limpeza" -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 "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade de retração na retração de limpeza" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual ativado" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade de retração de limpeza" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z de limpeza" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do salto Z de limpeza" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para alterações do fluxo gradual" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "No Enchimento" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração do fluxo máximo da camada inicial" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escreva a ferramenta ativa depois de enviar comandos temporários para a ferramenta inativa. Necessário para Extrusora Dupla com Smoothie ou outro firmware com comandos de ferramentas modais." -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X no Sentido Positivo" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho da etapa de discretização do fluxo gradual" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Localização X onde o script de limpeza será iniciado." -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada etapa da alteração do fluxo gradual" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Repor duração do fluxo" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y no Sentido Positivo" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z no Sentido Positivo" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação Extrusor" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z após mudança extrusor" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência à Base de Construção" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Altura do salto Z após mudança do extrusor" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do salto Z" -msgctxt "material description" -msgid "Material" -msgstr "Material" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z apenas sobre as peças impressas" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z ao retrair" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Junta-Z" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Junta-Z" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação Extrusor" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relativo à Junta-Z" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X da Junta-Z" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y da Junta-Z" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação Extrusor" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "material label" -msgid "Material" -msgstr "Material" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar as paredes externas" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluxo da parede mais externa da superfície superior" +msgctxt "travel description" +msgid "travel" +msgstr "deslocação" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "A distância entre a impressão e a parte inferior do suporte." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluxo da parede interna da superfície superior" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "A distância entre a parte superior/inferior da estrutura de suporte e a impressão. Esta folga permite retirar os suportes depois de o modelo ser impresso. Este valor é arredondado para um múltiplo da espessura da camada." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Duração de cada etapa da alteração do fluxo gradual" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidade da parede mais externa da superfície superior" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Permite alterar gradualmente o fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído até atingir o fluxo-alvo. Esta funcionalidade é útil para impressoras com um tubo Bowden, onde o fluxo não é alterado imediatamente quando o motor extusor para/arranca." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Para qualquer movimento de deslocação superior a este valor, o fluxo de material é reposto para o fluxo de destino do percurso." -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidade da parede interna da superfície superior" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Tamanho da etapa de discretização do fluxo gradual" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "A velocidade com que as paredes internas da superfície superior são impressas." +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Fluxo gradual ativado" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleração da parede externa da superfície superior" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Aceleração máxima do fluxo gradual" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Aceleração do fluxo máximo da camada inicial" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleração da parede interna da superfície superior" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Aceleração máxima para alterações do fluxo gradual" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Velocidade mínima para alterações do fluxo gradual da primeira camada" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk das Paredes Interiores da Superfície Superior" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Aba da torre de preparação" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk da Parede Exterior da Superfície Superior" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Repor duração do fluxo" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 7c2944df777..54fd471b4a3 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f мм" @@ -141,8 +142,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Для применения данных изменений вам потребуется перезапустить приложение." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Добавляйте настройки материалов и плагины из Marketplace \n - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Добавляйте настройки материалов и плагины из Marketplace \n" +" - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n" +" - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -168,6 +175,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Файл 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Чтение 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Запись 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Подключаемый модуль для записи 3MF поврежден." @@ -188,29 +203,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "В пользовательском профиле будут сохранены только измененные пользователем настройки.
    Для поддерживающих его материалов новый пользовательский профиль будет наследовать свойства от %1." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Средство визуализации OpenGL: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Поставщик OpenGL: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Версия OpenGL: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы

    \n

    Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы

    \n" +"

    Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    В ПО UltiMaker Cura обнаружена ошибка.

    \n

    Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

    \n

    Резервные копии хранятся в папке конфигурации.

    \n

    Отправьте нам этот отчет о сбое для устранения проблемы.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    В ПО UltiMaker Cura обнаружена ошибка.

    \n" +"

    Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.

    \n" +"

    Резервные копии хранятся в папке конфигурации.

    \n" +"

    Отправьте нам этот отчет о сбое для устранения проблемы.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

    \n

    {model_names}

    \n

    Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

    \n

    Ознакомиться с руководством по качеству печати

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:

    \n" +"

    {model_names}

    \n" +"

    Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.

    \n" +"

    Ознакомиться с руководством по качеству печати

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -232,6 +275,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Файл AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Средство чтения AMF" + msgctxt "@label" msgid "Abort" msgstr "Прервать" @@ -268,6 +315,10 @@ msgctxt "@button" msgid "Accept" msgstr "Принять" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." + msgctxt "@label" msgid "Account synced" msgstr "Учетная запись синхронизирована" @@ -360,6 +411,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Добавить принтер вручную" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Добавление принтера {name} ({model}) из вашей учетной записи" @@ -396,10 +448,23 @@ msgctxt "@button" msgid "Agree" msgstr "Принимаю" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Все файлы (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Все поддерживаемые типы ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Разрешить отправку анонимных данных" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Позволяет загружать и отображать файлы G-code." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Всегда спрашивать меня" @@ -472,6 +537,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Вы уверены, что хотите переместить %1 в начало очереди?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Действительно удалить {printer_name} временно?" @@ -480,6 +546,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!" @@ -492,6 +563,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Расположить все модели в сетке" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Задать вопрос" @@ -540,6 +615,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Резервное копирование и сброс конфигурации" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Резервное копирование и восстановление конфигурации." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" @@ -552,6 +631,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Резервные копии" +msgctxt "@label" +msgid "Balanced" +msgstr "Сбалансированный" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Основание (мм)" @@ -628,10 +711,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Не удается подключиться к принтеру UltiMaker?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Невозможно импортировать профиль из {0}, пока не добавлен принтер." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}" @@ -640,6 +725,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "Невозможно записать в файл UFP:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "Отмена" + msgctxt "@button" msgid "Cancel" msgstr "Отмена" @@ -700,8 +789,21 @@ msgctxt "@label" msgid "Checking..." msgstr "Проверка..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Проверяет наличие обновлений ПО." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." msgctxt "@action:inmenu menubar:edit" @@ -780,6 +882,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Сжатый файл с G-кодом" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Средство считывания сжатого G-кода" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Средство записи сжатого G-кода" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Изменения конфигурации" @@ -816,6 +926,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Подтвердить изменение диаметра" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Подтвердите удаление" + msgctxt "@action:button" msgid "Connect" msgstr "Подключить" @@ -848,6 +962,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Подключено через облако" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Посоветуйтесь со специалистами в сообществе UltiMaker." @@ -888,6 +1006,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Не удалось создать архив из каталога с данными пользователя: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Не могу найти имя файла при записи в {device}." @@ -900,6 +1019,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Не удалось интерпретировать ответ сервера." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Не удалось связаться с магазином." @@ -912,6 +1035,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Невозможно сохранить архив материалов в {}:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "Не могу записать {0}: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Невозможно сохранить на внешний носитель {0}: {1}" @@ -920,17 +1049,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Облако не залило данные на принтер." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}\nНет разрешения на выполнение процесса." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"Не удалось запустить EnginePlugin: {self._plugin_id}\n" +"Нет разрешения на выполнение процесса." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}\nЕго блокирует операционная система (антивирус?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"Не удалось запустить EnginePlugin: {self._plugin_id}\n" +"Его блокирует операционная система (антивирус?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}\nРесурс временно недоступен" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"Не удалось запустить EnginePlugin: {self._plugin_id}\n" +"Ресурс временно недоступен" msgctxt "@title:window" msgid "Crash Report" @@ -972,6 +1116,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Создавайте проекты печати в электронной библиотеке." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Создание резервной копии..." @@ -984,10 +1132,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Резервные копии Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Резервные копии Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Профиль Cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Чтение профиля Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Запись профиля Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "3MF файл проекта Cura" @@ -1000,13 +1160,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Не удалось запустить Cura" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura разработана компанией UltiMaker B.V. совместно с сообществом.\nCura использует следующие проекты с открытым исходным кодом:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura разработана компанией UltiMaker B.V. совместно с сообществом.\n" +"Cura использует следующие проекты с открытым исходным кодом:" msgctxt "@label" msgid "Cura language" @@ -1016,6 +1181,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Версия Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Движок CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Валюта:" @@ -1096,10 +1273,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "По умолчанию" -msgctxt "@label" -msgid "Default" -msgstr "По умолчанию" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: " @@ -1272,10 +1445,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Извлечь" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Извлекает внешний носитель {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель." @@ -1300,6 +1475,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Включено" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." + msgctxt "@title:label" msgid "End G-code" msgstr "Завершающий G-код" @@ -1328,6 +1507,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Введите IP-адрес своего принтера." +msgctxt "@info:title" +msgid "Error" +msgstr "Ошибка" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Обратное отслеживание ошибки" @@ -1372,6 +1555,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Экспорт успешно завершен" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Экспортирование профиля в {0}" @@ -1380,6 +1564,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Расширяйте возможности UltiMaker Cura за счет плагинов и профилей материалов." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" + msgctxt "@label" msgid "Extruder" msgstr "Экструдер" @@ -1416,6 +1604,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Архив материалов для синхронизации с принтерами не создан." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство." @@ -1424,22 +1613,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Не могу экспортировать материал %1: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Невозможно экспортировать профиль в {0}: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Невозможно экспортировать профиль в {0}: Плагин записи уведомил об ошибке." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Не удалось импортировать профиль из {0}: {1}" @@ -1472,6 +1666,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Вес материала" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Файл уже существует" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Файл сохранён" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "В файле {0} нет подходящих профилей." @@ -1504,6 +1707,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Обновление прошивки" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Проверка обновлений" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Средство обновления прошивки" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки." @@ -1600,6 +1811,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Файл G-code" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Средство считывания профиля из G-кода" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Чтение G-code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Средство записи G-кода" + msgctxt "@label" msgid "G-code flavor" msgstr "Вариант G-кода" @@ -1632,6 +1855,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Высота портала" +msgctxt "@title:tab" +msgid "General" +msgstr "Общее" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." @@ -1664,6 +1891,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Размещение сетки" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Группа #{group_nr}" @@ -1736,6 +1964,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" +msgctxt "name" +msgid "Image Reader" +msgstr "Чтение изображений" + msgctxt "@action:button" msgid "Import" msgstr "Импорт" @@ -1984,6 +2216,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Узнать больше" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Узнать больше" + msgctxt "@button" msgid "Learn more" msgstr "Узнать больше" @@ -2012,6 +2248,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Вид слева" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Чтение устаревших профилей Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Сообщите разработчикам о неполадках." @@ -2092,6 +2332,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Журналы" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Потеряно соединение с принтером" @@ -2100,6 +2344,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Параметры принтера" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Параметры принтера действие" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Принтеры" @@ -2112,6 +2360,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Управление материалами..." @@ -2160,6 +2424,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Здесь можно управлять встраиваемыми модулями Ultimaker Cura и профилями материалов. Регулярно обновляйте встраиваемые модули и создавайте резервные копии настроек." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker." + msgctxt "@label" msgid "Manufacturer" msgstr "Производитель" @@ -2172,6 +2444,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Магазин" +msgctxt "name" +msgid "Marketplace" +msgstr "Магазин" + msgctxt "@action:label" msgid "Material" msgstr "Материал" @@ -2188,6 +2464,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Цвет материала" +msgctxt "name" +msgid "Material Profiles" +msgstr "Профили материалов" + msgctxt "@label" msgid "Material Type" msgstr "Тип материала" @@ -2232,6 +2512,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Режим" +msgctxt "name" +msgid "Model Checker" +msgstr "Средство проверки моделей" + msgctxt "@info:title" msgid "Model Errors" msgstr "Ошибки модели" @@ -2248,6 +2532,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Монитор" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Этап мониторинга" + msgctxt "@action:button" msgid "Monitor print" msgstr "Мониторинг печати" @@ -2324,6 +2612,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Ошибка сети" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Доступна новая стабильная прошивка %s" @@ -2336,6 +2625,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Новые принтеры UltiMaker можно подключить к Digital Factory и управлять ими удаленно." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}." @@ -2384,6 +2674,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Оценка расходов недоступна" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Отсутствует собственный профиль для импорта в файл {0}" @@ -2492,6 +2783,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Количество экструдеров" +msgctxt "@action:button" +msgid "OK" +msgstr "OK" + msgctxt "@label" msgid "OS language" msgstr "Язык ОС" @@ -2512,6 +2807,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Показать только верхние слои" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}" @@ -2647,7 +2943,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Вставить из буфера обмена" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Пауза" @@ -2672,6 +2967,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Параметры модели" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Инструмент для настройки каждой модели" + msgid "Perspective" msgstr "Перспективная" @@ -2708,8 +3007,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Дайте необходимые разрешения при авторизации в этом приложении." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Проверьте наличие подключения к принтеру:\n- Убедитесь, что принтер включен.\n- Убедитесь, что принтер подключен к сети.\n- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Проверьте наличие подключения к принтеру:\n" +"- Убедитесь, что принтер включен.\n" +"- Убедитесь, что принтер подключен к сети.\n" +"- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." msgctxt "@text" msgid "Please name your printer" @@ -2723,6 +3030,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Укажите имя для данного профиля." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Прочитайте лицензию встраиваемого модуля и примите ее условия." @@ -2732,8 +3043,16 @@ msgid "Please remove the print" msgstr "Пожалуйста, удалите напечатанное" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Проверьте настройки и убедитесь в том, что ваши модели:\n- соответствуют допустимой области печати\n- назначены активированному экструдеру\n- не заданы как объекты-модификаторы" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Проверьте настройки и убедитесь в том, что ваши модели:\n" +"- соответствуют допустимой области печати\n" +"- назначены активированному экструдеру\n" +"- не заданы как объекты-модификаторы" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2783,6 +3102,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Пост-обработка" +msgctxt "name" +msgid "Post Processing" +msgstr "Пост обработка" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Плагин пост-обработки" @@ -2799,6 +3122,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Подготовка" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Подготовительный этап" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Подготовка..." @@ -2819,6 +3146,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Предварительный просмотр" +msgctxt "name" +msgid "Preview Stage" +msgstr "Этап предварительного просмотра" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Черновая башня" @@ -2951,6 +3282,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Параметры принтера будут обновлены в соответствии с параметрами, сохраненными в проекте." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Принтеры" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Принтеры, добавленные из Digital Factory:" @@ -3011,6 +3346,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Параметры профиля" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Профиль {0} имеет неизвестный тип файла или повреждён." @@ -3035,18 +3371,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Язык программирования" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Файл проекта {0} содержит неизвестный тип принтера {1}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Файл проекта {0} поврежден: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Файл проекта {0} создан с использованием профилей, несовместимых с данной версией UltiMaker Cura." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Файл проекта {0} внезапно стал недоступен: {1}.." @@ -3055,6 +3395,106 @@ msgctxt "@label" msgid "Properties" msgstr "Свойства" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Обеспечение действий принтера для обновления прошивки." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Обеспечивает этап мониторинга в Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Предоставляет просмотр твёрдого тела." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Обеспечивает подготовительный этап в Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Предоставляет поддержку для экспорта профилей Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Предоставляет поддержку для импорта профилей Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Предоставляет поддержку для чтения 3MF файлов." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Обеспечивает поддержку чтения файлов AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Предоставляет поддержку для чтения X3D файлов." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Предоставляет поддержку для чтения файлов моделей." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "Предоставляет возможность записи 3MF файлов." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Предоставляет параметры для каждой модели." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Предоставляет рентгеновский вид." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Предоставляет интерфейс к движку CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." + msgctxt "@label" msgid "PyQt version" msgstr "Версия PyQt" @@ -3075,6 +3515,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Версия Qt" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"." @@ -3091,6 +3532,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Выйти из %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Считывает G-код из сжатого архива." + msgctxt "@button" msgid "Recommended" msgstr "Рекомендован" @@ -3143,6 +3588,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Внешний носитель" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Плагин для работы с внешним носителем" + msgctxt "@action:button" msgid "Remove" msgstr "Удалить" @@ -3159,6 +3608,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Переименовать" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Переименовать профиль" @@ -3295,14 +3748,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Сохранить на внешний носитель" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Сохранить на внешний носитель {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Сохранено на внешний носитель {0} как {1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "Сохранение" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Сохранение на внешний носитель {0}" @@ -3395,6 +3855,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Отправка материалов на принтер" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Контрольный журнал" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Библиотека последовательного интерфейса" @@ -3427,6 +3891,10 @@ msgctxt "@label" msgid "Settings" msgstr "Параметры" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Параметры" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:" @@ -3587,6 +4055,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Войдите на платформу UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Вид моделирования" + msgctxt "@tooltip" msgid "Skin" msgstr "Покрытие" @@ -3615,6 +4087,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Нарезать автоматически при изменении настроек." +msgctxt "name" +msgid "Slice info" +msgstr "Информация о нарезке модели" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Нарезка на слои не выполнена" @@ -3631,13 +4107,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Сглаживание" +msgctxt "name" +msgid "Solid View" +msgstr "Обзор" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Просмотр модели" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n\nЩёлкните, чтобы сделать эти параметры видимыми." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n" +"\n" +"Щёлкните, чтобы сделать эти параметры видимыми." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3652,8 +4138,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Некоторые определенные в %1 значения настроек были переопределены." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Значения некоторых параметров отличаются от значений профиля.\n\nНажмите для открытия менеджера профилей." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Значения некоторых параметров отличаются от значений профиля.\n" +"\n" +"Нажмите для открытия менеджера профилей." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3679,8 +4171,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Спонсор Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Спонсор Cura" @@ -3725,6 +4215,10 @@ msgctxt "@label" msgid "Strength" msgstr "Прочность" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Материал успешно экспортирован в %1" @@ -3733,6 +4227,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Успешно импортированный материал %1" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." @@ -3753,6 +4248,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Блокировщик поддержки" +msgctxt "name" +msgid "Support Eraser" +msgstr "Средство стирания элемента поддержки" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Заполнение поддержек" @@ -3861,6 +4360,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Размер файла резервной копии превышает максимально допустимый." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Сбалансированный профиль разработан для достижения баланса между производительностью, качеством поверхности, механическими характеристиками и размерной точностью." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Высота основания от стола в миллиметрах." @@ -3917,6 +4420,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований." @@ -3978,8 +4486,22 @@ msgid "The nozzle inserted in this extruder." msgstr "Сопло, вставленное в данный экструдер." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Шаблон заполнительного материала печати:\n\nДля быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния».\n\nДля функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников».\n\nДля функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"Шаблон заполнительного материала печати:\n" +"\n" +"Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния».\n" +"\n" +"Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников».\n" +"\n" +"Для функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4133,6 +4655,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Данный принтер управляет группой из %1 принтера (-ов)." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Данный профиль {0} содержит неверные данные, поэтому его невозможно импортировать." @@ -4146,8 +4669,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Этот проект содержит материалы или плагины, которые сейчас не установлены в Cura.
    Установите недостающие пакеты и снова откройте проект." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Значение этого параметра отличается от значения в профиле.\n\nЩёлкните для восстановления значения из профиля." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Значение этого параметра отличается от значения в профиле.\n" +"\n" +"Щёлкните для восстановления значения из профиля." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4166,8 +4695,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n\nЩёлкните для восстановления вычисленного значения." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n" +"\n" +"Щёлкните для восстановления вычисленного значения." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4193,6 +4728,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Для автоматической синхронизации профилей материалов со всеми принтерами, подключенными к Digital Factory, необходимо войти в Cura." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Чтобы установить подключение, перейдите на сайт {website_link}" @@ -4205,6 +4741,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Чтобы удалить {printer_name} без возможности восстановления, перейдите на сайт {digital_factory_link}" @@ -4253,6 +4790,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Средство чтения Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Поиск и устранение неисправностей" @@ -4269,10 +4810,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Тип" +msgctxt "@label" +msgid "Type" +msgstr "Тип" + +msgctxt "name" +msgid "UFP Reader" +msgstr "Средство считывания UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Средство записи UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Печать через USB" +msgctxt "name" +msgid "USB printing" +msgstr "Печать через USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Учетная запись UltiMaker" @@ -4289,6 +4846,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Пакет формата UltiMaker" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Соединение с сетью UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Проверенный пакет UltiMaker" @@ -4297,6 +4858,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Проверенный плагин UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Действия с принтерами UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Принтер UltiMaker" @@ -4309,6 +4874,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Невозможно добавить профиль." @@ -4317,13 +4886,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Невозможно разместить все объекты внутри печатаемого объёма" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Не удается найти локальный исполняемый файл сервера EnginePlugin для: {self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Невозможно завершить работу EnginePlugin: {self._plugin_id}\nДоступ запрещен." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Невозможно завершить работу EnginePlugin: {self._plugin_id}\n" +"Доступ запрещен." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4345,10 +4920,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}" @@ -4357,6 +4934,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}" @@ -4405,6 +4983,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Неизвестный пакет" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Неизвестный код ошибки при загрузке задания печати: {0}" @@ -4469,13 +5048,117 @@ msgctxt "@button" msgid "Updating..." msgstr "Обновление..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Залить собственную прошивку" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Загрузка задания печати в принтер." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Обновление настроек Cura 3.0 до Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Залить собственную прошивку" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Загрузка задания печати в принтер." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4501,6 +5184,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Обновление версии 2.1 до 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Обновление версии 2.2 до 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Обновление версии 2.5 до 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Обновление версии 2.6 до 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Обновление версии 2.7 до 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Обновление версии 3.0 до 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Обновление версии 3.2 до 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Обновление версии 3.3 до 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Обновление версии 3.4 до 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Обновление версии 3.5 до 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Обновление версии 4.0 до 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Обновление версии 4.1 до 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Обновление версии 4.11 до 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Обновление версии 4.13 до 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Обновление версии 4.2 до 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Обновление версии 4.3 до 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Обновление версии 4.4 до 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Обновление версии 4.5 до 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Обновление версии с 4.6.0 до 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Обновление версии с 4.6.2 до 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Обновление версии 4.7 до 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Обновление версии 4.8 до 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Обновление версии 4.9 до 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Обновление версии 5.2 до 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Обновление версии 5.3 до 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Обновление версии 5.4 до 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Просмотреть принтеры в Digital Factory" @@ -4549,6 +5336,11 @@ msgctxt "@button" msgid "Want more?" msgstr "Желаете большего?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Внимание" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества." @@ -4609,6 +5401,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Ширина (мм)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Записывает G-код в сжатый архив." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Записывает G-код в файл." + msgctxt "@label" msgid "X (Width)" msgstr "X (Ширина)" @@ -4621,6 +5421,10 @@ msgctxt "@label" msgid "X min" msgstr "X минимум" +msgctxt "name" +msgid "X-Ray View" +msgstr "Просмотр в рентгене" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Просмотр в рентгене" @@ -4633,6 +5437,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Файл X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Чтение X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Глубина)" @@ -4650,21 +5458,35 @@ msgid "Yes" msgstr "Да" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\nПродолжить?" -msgstr[1] "Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\nПродолжить?" -msgstr[2] "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\nПродолжить?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\n" +"Продолжить?" +msgstr[1] "" +"Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\n" +"Продолжить?" +msgstr[2] "" +"Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n" +"Продолжить?" msgstr[3] "" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает UltiMaker Connect. Обновите прошивку принтера до последней версии." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы." @@ -4675,7 +5497,10 @@ msgstr "В данный момент у вас отсутствуют резер msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Вы изменили некоторые настройки профиля.\nСохранить измененные настройки после переключения профилей?\nИзменения можно отменить и загрузить настройки по умолчанию из \"%1\"." +msgstr "" +"Вы изменили некоторые настройки профиля.\n" +"Сохранить измененные настройки после переключения профилей?\n" +"Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4705,9 +5530,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Ваш новый принтер автоматически появится в Cura" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Ваш принтер {printer_name} может быть подключен через облако.\n Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"Ваш принтер {printer_name} может быть подключен через облако.\n" +" Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" msgctxt "@label" msgid "Z" @@ -4765,6 +5595,7 @@ msgctxt "@label" msgid "version: %1" msgstr "версия: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} будет удален до следующей синхронизации учетной записи." @@ -4773,630 +5604,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Встраиваемые модули ({} шт.) не загружены" -msgid "Provides support for exporting Cura profiles." -msgstr "Обеспечивает поддержку экспорта профилей Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Запись профиля Cura" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." - -msgctxt "name" -msgid "Slice info" -msgstr "Информация о нарезке модели" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "По умолчанию" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Чтение устаревших профилей Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Предоставляет поддержку для чтения X3D файлов." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Чтение X3D" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Средство записи UFP" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Обновление версии 3.5 до 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Обновление версии 4.1 до 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Обновление версии 4.7 до 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Обновление версии 4.9 до 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Обновление версии 3.2 до 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Обновление версии 2.7 до 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Обновление версии 4.11 до 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Обновление версии 2.6 до 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Обновление версии 4.8 до 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Обновление версии 4.3 до 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Обновление версии 3.3 до 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Обновление версии 4.4 до 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Обновление версии 2.5 до 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Обновление версии 2.1 до 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Обновление версии 4.2 до 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Обновление версии 5.2 до 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Обновление версии 4.0 до 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Обновление версии 2.2 до 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Обновление версии 3.4 до 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Обновление версии 4.13 до 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Обновление версии 5.4 до 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Обновление версии 4.5 до 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Обновление настроек Cura 3.0 до Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Обновление версии 3.0 до 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Обновление версии с 4.6.0 до 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Обновление версии с 4.6.2 до 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Обновление версии 5.3 до 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" - -msgctxt "name" -msgid "Post Processing" -msgstr "Пост обработка" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." - -msgctxt "name" -msgid "Simulation View" -msgstr "Вид моделирования" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Предоставляет поддержку для импорта профилей Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Чтение профиля Cura" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Предоставляет параметры для каждой модели." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Инструмент для настройки каждой модели" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Этап предварительного просмотра" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Средство стирания элемента поддержки" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Позволяет загружать и отображать файлы G-code." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Чтение G-code" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Резервное копирование и восстановление конфигурации." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Плагин для работы с внешним носителем" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Профили материалов" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Действия с принтерами UltiMaker" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Предоставляет рентгеновский вид." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Просмотр в рентгене" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Соединение с сетью UltiMaker" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Параметры принтера действие" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Предоставляет поддержку для чтения файлов моделей." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Средство чтения Trimesh" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Магазин" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Обеспечивает этап мониторинга в Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Этап мониторинга" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." - -msgctxt "name" -msgid "Image Reader" -msgstr "Чтение изображений" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Обеспечение действий принтера для обновления прошивки." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Средство обновления прошивки" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Предоставляет интерфейс к движку CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Движок CuraEngine" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Обеспечивает подготовительный этап в Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Подготовительный этап" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Проверяет наличие обновлений ПО." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Проверка обновлений" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Записывает G-код в файл." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Средство записи G-кода" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." - -msgctxt "name" -msgid "Model Checker" -msgstr "Средство проверки моделей" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Предоставляет поддержку для чтения 3MF файлов." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Чтение 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." - -msgctxt "name" -msgid "USB printing" -msgstr "Печать через USB" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Обеспечивает поддержку чтения файлов AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Средство чтения AMF" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Средство считывания профиля из G-кода" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Предоставляет просмотр твёрдого тела." - -msgctxt "name" -msgid "Solid View" -msgstr "Обзор" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Контрольный журнал" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Считывает G-код из сжатого архива." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Средство считывания сжатого G-кода" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Средство считывания UFP" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "Предоставляет возможность записи 3MF файлов." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Запись 3MF" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Записывает G-код в сжатый архив." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Средство записи сжатого G-кода" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Предоставляет поддержку для экспорта профилей Cura." - -msgctxt "@info:title" -msgid "Error" -msgstr "Ошибка" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "Отмена" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Параметры" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Узнать больше" - -msgctxt "@title:tab" -msgid "General" -msgstr "Общее" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" - -msgctxt "@label" -msgid "Type" -msgstr "Тип" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Сохранение" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Файл уже существует" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Все поддерживаемые типы ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "Не могу записать {0}: {1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "OK" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Внимание" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Принтеры" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Файл сохранён" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Подтвердите удаление" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Все файлы (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Сбалансированный" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Сбалансированный профиль разработан для достижения баланса между производительностью, качеством поверхности, механическими характеристиками и размерной точностью." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Обеспечивает поддержку экспорта профилей Cura." diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 06cf6a3f393..664a28569cc 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Экструдер" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Прилипание к столу" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Номер охлаждающего вентилятора, используемого при печати и ассоциированного с этим экструдером. Применяемое по умолчанию значение 0 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Экструдер" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Завершающий G-код экструдера" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Абсолютная конечная позиция экструдера" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Конечная X позиция экструдера" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "X координата конечной позиции при отключении экструдера." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Конечная Y позиция экструдера" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Y координата конечной позиции при отключении экструдера." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Стартовый G-код экструдера" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Абсолютная стартовая позиция экструдера" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Стартовая X позиция экструдера" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "X координата стартовой позиции при включении экструдера." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Стартовая Y позиция экструдера" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Y координата стартовой позиции при включении экструдера." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." + +msgctxt "material description" +msgid "Material" +msgstr "Материал" + +msgctxt "material label" +msgid "Material" +msgstr "Материал" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Идентификатор сопла" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X смещение сопла" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Смещение сопла по оси X." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Y смещение сопла" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Смещение сопла по оси Y." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." -msgctxt "material label" -msgid "Material" -msgstr "Материал" - -msgctxt "material description" -msgid "Material" -msgstr "Материал" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Номер охлаждающего вентилятора, используемого при печати и ассоциированного с этим экструдером. Применяемое по умолчанию значение 0 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Прилипание к столу" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "X координата конечной позиции при отключении экструдера." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Смещение сопла по оси X." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "X координата стартовой позиции при включении экструдера." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Y координата конечной позиции при отключении экструдера." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Смещение сопла по оси Y." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Y координата стартовой позиции при включении экструдера." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 27ca84b0583..b471a35698b 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5471 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Тип принтера" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Название модели вашего 3D принтера." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Показать варианты принтера" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Стартовый G-код" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартного угла 0 градусов." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Завершающий G-код" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID материала" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Идентификатор материала, устанавливается автоматически." +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Список полигонов с областями, в которые не должно заходить сопло." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Ожидать пока прогреется стол" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Список полигонов с областями, в которые голове запрещено заходить." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Деталь, полностью заключенная внутри другой детали, может создать внешнюю кайму, которая касается внутренней части другой детали. Эта опция убирает всю кайму в пределах этого расстояния от внутренних отверстий." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Ожидать пока прогреется сопло" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Рекомендация относительно того, как далеко ответвления могут отходить от точек, которые они поддерживают. Ответвления могут нарушать это значение, чтобы добраться до места назначения (рабочей пластины или плоской части модели). Снижение этого значения может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Абсолютная позиция экструдера при старте" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Использовать температуру из материала" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Максимальная вариация адаптивных слоев" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Размер топографии адаптивных слоев" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Добавлять температуру стола" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Размер шага вариации адаптивных слоев" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ширина принтера" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала.\n" +"Эта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Ширина (по оси X) области печати." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Глубина принтера" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Тенденция к прилипанию" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Ширина (по оси Y) области печати." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками) в виде процентного отношения значений ширины линии для линий оболочки и внутренней стенки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое процентное значение, превышающее 50%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Высота принтера" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Ширина (по оси Z) области печати." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Отрегулируйте плотность заполнения при печати." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Форма стола" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Форма стола без учёта непечатаемых областей." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Регулирует плотность поддержки, используемой для создания кончиков ответвлений. Большее значение приводит к улучшению качества выступов, но такие поддержки сложнее удалять. Используйте крышу поддержки для очень высоких значений или убедитесь, что плотность одинаково высокая сверху." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Прямоугольная" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Эллиптическая" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Материал рабочего стола" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Материал рабочего стола, установленного на принтере." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Стекло" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Алюминий" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Везде" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Имеет подогреваемый стол" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Все за раз" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Имеет ли принтер подогреваемый стол." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Есть стабилизация температуры для объема печати" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Чередующаяся стенка" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Чередование объектов" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Чередование направления стенок" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Алюминий" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Всегда выполнять запись активного инструмента" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Выполняйте запись активного инструмента после отправки временных команд неактивному инструменту. Требуется для печати с двойным экструдером под управлением Smoothie или другой прошивки с модальными командами инструментов." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Всегда откатывать материал при движении к началу внешней стенки." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Начало координат в центре" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Следует ли считать центром координат по осям X/Y в центре области печати." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Количество экструдеров" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Величина смещения, применяемая к нижней части поддержек." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Количество включенных экструдеров" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Величина смещения, применяемая к верхней части поддержек." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Величина смещения, применяемая к полигонам связующего слоя." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Внешний диаметр сопла" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Внешний диаметр кончика сопла." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Длина сопла" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Блокиратор поддержек" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Высота между кончиком сопла и нижней частью головы." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Положение отката для защиты от капель" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Угол сопла" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Скорость отката для защиты от капель" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Длина зоны нагрева" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшит адгезию между моделями, особенно моделями из разных материалов." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Избегать напечатанных частей при перемещении" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Разрешить управление температурой сопла" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Избегать поддержек при перемещении" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Назад" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Скорость нагрева" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Сзади слева" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Сзади справа" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Скорость охлаждения" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Оба варианта" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Время перехода в ожидание" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Оба пересекаются" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Слои дна" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Вариант G-кода" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Нижний шаблон начального слоя" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Генерируемый тип G-кода." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Расстояние расширения оболочки снизу" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Ширина удаляемой оболочки снизу" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Толщина дна" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Плотность ответвлений" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Диаметр ответвления" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Угол диаметра ответвления" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Положение отката для подготовки к отламыванию" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Скорость отката для подготовки к отламыванию" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Температура подготовки к отламыванию" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Положение отката для отламывания" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Откат встроенного программного обеспечения" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Скорость отката для отламывания" -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 для отката материала." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Температура отламывания" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Общий нагреватель экструдеров" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Разбить поддержки на части" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Скорость вентилятора для мостика" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Общее сопло экструдеров" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "В мостике несколько слоев" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Указывает, используют ли все экструдеры общее сопло или у каждого имеется отдельное. Если установлено значение true, ожидается, что сценарий gcode запуска принтера правильно переводит все экструдеры в известное и взаимно совместимое начальное состояние отката (либо ноль, либо один материал не втянут); в этом случае начальное состояние отката описывается для каждого экструдера параметром machine_extruders_shared_nozzle_initial_retraction." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Плотность второй оболочки мостика" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Начальный откат общего сопла" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Скорость вентилятора для второй оболочки мостика" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Показывает, насколько материал каждого экструдера предположительно вытянут от наконечника общего сопла по завершении запуска сценария gcode принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Поток для второй оболочки мостика" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Запрещенные области" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Скорость печати второй оболочки мостика" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Список полигонов с областями, в которые голове запрещено заходить." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Плотность оболочки мостика" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Запрещённые зоны для сопла" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Поток для оболочки мостика" -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Список полигонов с областями, в которые не должно заходить сопло." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Скорость печати оболочки мостика" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Полигон головки принтера и вентилятора" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Пороговое значение поддержки для оболочки мостика" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Максимальная плотность разреженного заполнения мостика" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Высота портала" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Смещение с экструдером" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Абсолютная позиция экструдера при старте" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Максимальная скорость по оси X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Максимальная скорость для мотора оси X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Максимальная скорость по оси Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Максимальная скорость для мотора оси Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Максимальная скорость по оси Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Максимальная скорость для мотора оси Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Максимальная скорость по оси E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Максимальная скорость подачи материала." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Максимальное ускорение по оси X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Максимальное ускорение для мотора оси X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Максимальное ускорение по оси Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Максимальное ускорение для мотора оси Y." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Максимальное ускорение по оси Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Максимальное ускорение для мотора оси Z." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Максимальное ускорение материала" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Максимальное ускорение мотора подачи материала." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Стандартное ускорение" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Плотность третьей оболочки мостика" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Стандартное ускорение для движений головы." +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Скорость вентилятора для третьей оболочки мостика" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Обычный X-Y рывок" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Поток для третьей оболочки мостика" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости." +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Скорость печати третьей оболочки мостика" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Обычный Z рывок" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Накат стенки мостика" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Стандартное изменение ускорения для мотора по оси Z." +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Поток для стенки мостика" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Обычный рывок материала" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Скорость печати стенки мостика" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Стандартное изменение ускорения для мотора, подающего материал." +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Кайма" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Количество шагов на миллиметр (X)" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Расстояние до каймы" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X." +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Кайма внутри зоны избегания" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Количество шагов на миллиметр (Y)" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Количество линий каймы" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y." +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Кайма только снаружи" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Количество шагов на миллиметр (Z)" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Кайма заменяет поддержку" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z." +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ширина каймы" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Количество шагов на миллиметр (E)" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Тип прилипания к столу" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Экструдер первого слоя" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Ограничитель хода на оси X в прямом направлении" +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Тип прилипания к столу" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)." +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Материал рабочего стола" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Y в прямом направлении" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Форма стола" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)." +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Температура стола" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Z в прямом направлении" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Температура стола для первого слоя" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)." +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Температура для объема печати" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Минимальная подача" +msgctxt "center_object label" +msgid "Center Object" +msgstr "Центрирование объекта" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Минимальная скорость движения головы." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Диаметр колесика питателя" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Диаметр колесика, перемещающего материал в питатель." +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Скорость наката" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Масштабирование скорости вентилятора до 0-1" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Объём наката" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Масштабируйте скорость вентилятора таким образом, чтобы она находилась в диапазоне от 0 до 1, а не от 0 до 256." +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." -msgctxt "resolution label" -msgid "Quality" -msgstr "Качество" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Режим комбинга" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Высота слоя" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Параметры командной строки" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Концентрическое" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Высота первого слоя" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ширина линии" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ширина линии стенки" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ширина одной линии стенки." +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ширина линии внешней стенки" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Концентрический" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ширина линии внутренней стенки" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Угол конических поддержек" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Минимальная ширина конических поддержек" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ширина линии дна/крышки" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Соединять линии заполнения" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ширина одной линии дна/крышки." +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Соединение полигонов заполнения" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ширина линии заполнения" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Соединение линий поддержки" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ширина одной линии заполнения." +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Соединённый зигзаг" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ширина линии юбки/каймы" +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Соединение верхних/нижних полигонов" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Ширина одной линии юбки или каймы." +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ширина линии поддержки" +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ширина одной линии поддержки." +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ширина линии поддерживающей крыши" +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Ширина одной линии поддержки крышки или дна." +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ширина линии крыши поддержки" +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Ширина одной линии крыши поддержки." +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ширина линии дна поддержки" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Скорость охлаждения" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Ширина одной линии дна поддержки." +msgctxt "cooling description" +msgid "Cooling" +msgstr "Охлаждение" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ширина линии черновой башни" +msgctxt "cooling label" +msgid "Cooling" +msgstr "Охлаждение" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Ширина отдельной линии черновой башни." +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Крестовое" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ширина линии первого слоя" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Крест" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Крестовое 3D" -msgctxt "shell label" -msgid "Walls" -msgstr "Стенки" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Размер карманов креста 3D" -msgctxt "shell description" -msgid "Shell" -msgstr "Ограждение" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Изображение плотности перекрестного заполнения для поддержки" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Экструдер стенок" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Изображение плотности перекрестного заполнения" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Кристаллический материал" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Экструдер внешних стенок" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Куб" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Динамический куб" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Экструдер внутренней стенки" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Стенка динамического куба" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ограничивающий объект" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Толщина стенки" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Стандартное ускорение" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Количество линий стенки" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Температура рабочего стола по умолчанию" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Обычный рывок материала" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Длина перехода к стенке" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Температура сопла" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Обычный X-Y рывок" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Счетчик распределений по стенкам" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Обычный Z рывок" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Пороговый угол перехода между стенками" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Стандартное изменение ускорения для мотора по оси Z." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Стандартное изменение ускорения для мотора, подающего материал." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Расстояние фильтра при переходе между стенками" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов. При неравномерном количестве общих внутренних стен «центральная последняя линия» всегда печатается последней." -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Поле фильтра при переходе между стенками" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Предотвратите переход туда и обратно между одной лишней стенкой и одной недостающей. Это поле расширяет диапазон значений ширины линии, который определяется как [Минимальная ширина линии стенки - Поле, 2 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Расстояние очистки внешней стенки" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Вставка внешней стенки" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Увеличение диаметра до модели" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Диаметр, которого каждое ответвление пытается достичь при достижении печатной пластины. Улучшает адгезию к столу." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Оптимизация порядка печати стенок" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Запрещенные области" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Порядок стенок" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов. При неравномерном количестве общих внутренних стен «центральная последняя линия» всегда печатается последней." +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "От внутренних к внешним" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "От внешних к внутренним" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Чередующаяся стенка" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Минимальная ширина линии стенки" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Расстояние между верхом поддержек и печатаемой моделью." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Минимальная ширина линии четных стенок" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Минимальная ширина линии обычных многоугольных стенок. Этот параметр определяет, при какой толщине модели выполняется переключение с печати тонкой стенки в одну линию на печать стенок в две линии. Чем выше значение минимальной ширины линии четной стенки, тем выше максимальная ширина линии нечетной стенки. Максимальная ширина линии четной стенки вычисляется по формуле: Ширина линии внешней стенки + 0,5 * Минимальная ширина линии нечетной стенки." +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов." -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Минимальная ширина линии для полилинейных стенок, заполняющих зазоры средней линии. Этот параметр определяет, при какой толщине модели выполняется переключение с печати стенки в две линии на печать двух внешних стенок и одной центральной стенки посередине. Чем выше значение минимальной ширины линии нечетной стенки, тем выше максимальная ширина линии четной стенки. Максимальная ширина линии нечетной стенки вычисляется по формуле: 2 * минимальную ширину линии четной стенки." +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки защиты от модели, по осям X/Y." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Печать тонких стенок" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Минимальный размер элемента" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Точки расстояния смещаются для сглаживания пути" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Точки расстояния смещаются для сглаживания пути" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Высота кожуха" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Горизонтальное расширение" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Ограничение кожуха" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Дистанция X/Y до кожуха" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Горизонтальное расширение первого слоя" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Объект поддержки нависаний" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Два экструдера" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Горизонтальное расширение отверстия" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Эллиптическая" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Если значение больше нуля, то горизонтальное расширение отверстия представляет собой величину смещения, применяемую ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий, отрицательные значения уменьшают размер отверстий. Если этот параметр включен, то его можно дополнительно настроить с помощью максимального диаметра горизонтального расширения отверстия." +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Разрешить управление ускорением" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Максимальный диаметр горизонтального расширения отверстия" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Активация настроек мостиков" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Если значение больше нуля, то горизонтальное расширение отверстия постепенно применяется к маленьким отверстиям (маленькие отверстия расширяются больше). Если установлено нулевое значение, то горизонтальное расширение отверстия будет применено ко всем отверстиям. Отверстия, превышающие максимальный диаметр горизонтального расширения отверстия, не расширяются." +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Разрешить накат" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Выравнивание шва по оси Z" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Конические поддержки" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Разрешить печать кожуха" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Пользовательский" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Включить плавное движение" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Короткий путь" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Разрешить разглаживание" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Случайно" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Включить управление рывком" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Острейший угол" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Разрешить управление температурой сопла" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Позиция Z шва" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Печатать защиту от капель" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Разрешить наполнение материалом" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Сзади слева" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Разрешить черновую башню" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Назад" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Включить вентиляторы" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Сзади справа" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Разрешить откат" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Справа" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Разрешить кайму поддержек" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Спереди справа" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Разрешить дно поддержек" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Спереди" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Разрешить связующий слой поддержки" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Спереди слева" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Разрешить крышу поддержек" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Слева" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Включить ускорение перемещения" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X координата для Z шва" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Включить рывок перемещения" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y координата для Z шва" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Включите заполнение небольших областей (до «маленькой ширины вверху/внизу») в самом верхнем слое оболочки (которые подвержены воздействию воздуха) стенками вместо шаблона по умолчанию." -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества." -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Настройки угла шва" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Нет" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Завершающий G-код" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Спрятать шов" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Длина выдавливания заканчивающегося материала" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Показать шов" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Скорость выдавливания заканчивающегося материала" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Спрятать или показать" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Интеллектуальное скрытие" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Везде" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Привязка Z шва" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Исключение" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." +msgctxt "experimental label" +msgid "Experimental" +msgstr "Экспериментальное" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Показать шов" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Дно / крышка" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Обширное сшивание" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Дно / крышка" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Экструдер для печати крышки" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Количество дополнительных стенок заполнения" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Количество внешних дополнительных оболочек" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Слои верхней оболочки" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Дополнительный объем материала для заполнения после смены экструдера." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ширина линии крышки" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Ширина одной линии крышки." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Шаблон верхней оболочки" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Общий нагреватель экструдеров" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Шаблон, используемый для верхних слоёв оболочки." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Общее сопло экструдеров" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Модификатор скорости охлаждения экструзии" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Поправочный коэффициент ширины экструзии в зависимости от скорости. При значении 0 % скорость перемещения сохраняется на уровне скорости печати. При значении 100 % скорость перемещения корректируется таким образом, чтобы расход (в мм3/с) оставался постоянным, то есть линии в половину нормальной ширины линии, печатаются в два раза быстрее, а линии вдвое шире — в два раза быстрее. Значение выше 100 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Скорость вентилятора" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Монотонный порядок верхней оболочки" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Переопределение скорости вентилятора" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Направление линий верхней оболочки" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Функции, еще не раскрытые до конца." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Диаметр колесика питателя" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Экструдер дна/крышки" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Конечная температура печати" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Откат встроенного программного обеспечения" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Толщина дна/крышки" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Экструдер первого слоя поддержек" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Поток" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Толщина крышки" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Коэффициент выравнивания потока" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Коэффициент компенсации расхода" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Слои крышки" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Макс. смещение экструзии для компенсации расхода" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "График температуры потока" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Толщина дна" +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 "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Компенсация потока на нижних линиях первого слоя." -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Слои дна" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Компенсация потока на линиях заполнения." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Компенсация потока на линиях крыши или низа поддержек." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Начальные слои дна" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Компенсация потока на линиях наверху печатаемой детали." -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 "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Компенсация потока на линиях черновой башни." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Шаблон для крышки/дна" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Компенсация потока на линиях юбки или каймы." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Шаблон слоёв для крышки/дна." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Компенсация потока на линиях низа поддержек." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Компенсация потока на линиях крыши поддержек." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Компенсация потока на линиях структуры поддержек." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Компенсация потока на внешней линии стенки первого слоя." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Нижний шаблон начального слоя" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Компенсация потока на внешней линии стенки." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Шаблон низа печати на первом слое." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Компенсация потока на самой внешней линии верхней поверхности." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Компенсация потока на верхних/нижних линиях." -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней, но только для первого слоя." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Соединение верхних/нижних полигонов" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Компенсация потока на линиях стенки." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Монотонный порядок дна/крышки" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Угол движения жидкости" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Расстояние смещения движения жидкости" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Направление линии дна/крышки" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Движение жидкости на небольшом расстоянии" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Длина выдавливания заподлицо" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Маленькая ширина верха/низа" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Скорость выдавливания заподлицо" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Небольшие области вверху/внизу заполняются стенками вместо шаблона верха/низа по умолчанию. Это помогает избежать резких движений. По умолчанию отключено для самого верхнего (подверженного воздействию воздуха) слоя (см. Маленький верх/низ на поверхности)." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Маленькие вверху/внизу на поверхности" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Спереди" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Включите заполнение небольших областей (до «маленькой ширины вверху/внизу») в самом верхнем слое оболочки (которые подвержены воздействию воздуха) стенками вместо шаблона по умолчанию." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Спереди слева" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Нет оболочки в Z-зазорах" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Спереди справа" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Полная" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Количество внешних дополнительных оболочек" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Нечёткая оболочка" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Плотность шершавой оболочки" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Разрешить разглаживание" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Только шершавая оболочка снаружи" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Дистанция между точками шершавой оболочки" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Самый высокий слой разглаживания" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Толщина шершавости оболочки" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Вариант G-кода" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Шаблон разглаживания" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n" +"." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n" +"." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Идентификатор материала, устанавливается автоматически." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Высота портала" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Монотонный порядок разглаживания" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Создать взаимосвязанную структуру" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Генерация поддержек" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Расстояние между линиями разглаживания" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Расстояние между линиями разглаживания." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Поток разглаживания" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Границы разглаживания" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Стекло" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Скорость разглаживания" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Скорость, на которой голова проходит над верхней оболочкой." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Высота изменения шага заполнения" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ускорение разглаживания" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Изменение шага заполнения" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ускорение, с которым производится разглаживание." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Высота шага изменения заполнения поддержек" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Рывок разглаживания" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Степень заполнения поддержек" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Постепенно снижать температуру до этой температуры при печати на пониженных скоростях из-за минимального времени нанесения слоя." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Процент перекрытия оболочек" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками) в виде процентного отношения значений ширины линии для линий оболочки и внутренней стенки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое процентное значение, превышающее 50%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Перекрытие оболочек" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Ширина удаляемой оболочки" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Сетка" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Ширина удаляемой оболочки сверху" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Группировать внешние стены" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Ширина удаляемой оболочки снизу" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Есть стабилизация температуры для объема печати" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Имеет подогреваемый стол" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Дистанция расширения оболочки" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Скорость нагрева" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Длина зоны нагрева" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Дистанция расширения оболочки сверху" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Спрятать шов" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Расстояние расширения оболочки снизу" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Спрятать или показать" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Горизонтальное расширение отверстия" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Максимальный угол оболочки при расширении" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Максимальный диаметр горизонтального расширения отверстия" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Для верхней и (или) нижней поверхностей вашего объекта с углом больше указанного в данном параметре верхняя и нижняя оболочки не будут расширены. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол 0° является горизонтальным и не вызывает расширения оболочки, угол 90° является вертикальным и вызывает расширение всей оболочки." +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Минимальная ширина оболочки при расширении" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Горизонтальное расширение" -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 "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" -msgctxt "infill label" -msgid "Infill" -msgstr "Заполнение" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." -msgctxt "infill description" -msgid "Infill" -msgstr "Заполнение" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Экструдер для заполнения" +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 "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Плотность заполнения" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Насколько быстро следует убирать материал, чтобы он отломился." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Отрегулируйте плотность заполнения при печати." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Дистанция линий заполнения" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Скорость подачи материала после переключения на другой материал." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Шаблон заполнения" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Срок хранения материала вне сухого хранилища." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Треугольник" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Шестигранник из треугольников" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Куб" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Динамический куб" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Показывает, насколько материал каждого экструдера предположительно вытянут от наконечника общего сопла по завершении запуска сценария gcode принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Восьмигранник" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Как интерфейс поддержки и поддержка будут взаимодействовать при пересечении. В настоящее время реализовано только для крыши поддержки." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Четверть куба" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Какой высоты должно быть ответвление, если оно размещено на модели. Предотвращает образование небольших пузырей поддержки. Этот параметр игнорируется, если ответвление поддерживает крышу поддержки." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Концентрическое" +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 "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Если сегмент траектории отклоняется более, чем на этот угол от общего движения, он сглаживается." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Крестовое" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Крестовое 3D" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Молния" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Соединять линии заполнения" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Добавлять температуру стола" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Использовать температуру из материала" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Соединение полигонов заполнения" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Включение" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." +msgctxt "infill description" +msgid "Infill" +msgstr "Заполнение" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Направления линии заполнения" +msgctxt "infill label" +msgid "Infill" +msgstr "Заполнение" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Ускорение заполнения" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Заполнение перед печатью стенок" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Смещение заполнения по X" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Плотность заполнения" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Расстояние перемещения шаблона заполнения по оси X." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Экструдер для заполнения" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Смещение заполнения по Y" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Поток для заполнения" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Расстояние перемещения шаблона заполнения по оси Y." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Рывок заполнения" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Рандомизация начала заполнения" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Толщина слоя заполнения" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Направления линии заполнения" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Дистанция линий заполнения" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Множитель для линии заполнения" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Количество дополнительных стенок заполнения" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ширина линии заполнения" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала.\nЭта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Заполнение объекта" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Стенка динамического куба" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Угол нависания при заполнении" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Перекрытие заполнения" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Процент перекрытие заполнения" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Шаблон заполнения" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Перекрытие заполнения" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Скорость заполнения" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Поддержка заполнения" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Оптимизация перемещения заполнения" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Дистанция окончания заполнения" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Смещение заполнения по X" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Толщина слоя заполнения" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Смещение заполнения по Y" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Начальные слои дна" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Изменение шага заполнения" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Начальная скорость вентилятора" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Ускорение первого слоя" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Высота изменения шага заполнения" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Поток низа первого слоя" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Диаметр первого слоя" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Заполнение перед печатью стенок" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Поток для первого слоя" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Высота первого слоя" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Минимальная область заполнения" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Горизонтальное расширение первого слоя" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Поток внутренней стенки первого слоя" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Поддержка заполнения" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Рывок первого слоя" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ширина линии первого слоя" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Угол нависания при заполнении" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Поток внешней стенки первого слоя" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Ускорение печати первого слоя" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Толщина опоры края оболочки" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Рывок печати первого слоя" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Толщина дополнительного объема, который поддерживает края оболочки." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Скорость первого слоя" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Слои, которые поддерживают края оболочки" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Скорость первого слоя" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Количество слоев, которые поддерживают края оболочки." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Дистанция между линиями поддержки первого слоя" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Угол поддержки шаблона заполнения «молния»" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Ускорение перемещений первого слоя" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Рывок перемещения первого слоя" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Угол выступа шаблона заполнения «молния»" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Скорость перемещений на первом слое" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z наложение первого слоя" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Угол обрезки шаблона заполнения «молния»" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Начальная температура печати" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Ускорение внутренней стенки" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Экструдер внутренней стенки" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Рывок внутренних стен" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Скорость печати внутренних стенок" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Угол выпрямления шаблона заполнения «молния»" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Поток для внутренних стенок" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ширина линии внутренней стенки" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Температура сопла" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "От внутренних к внешним" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Температура для объема печати" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Предпочитать линии интерфейса" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Температура среды печати. Если это значение равно 0, температура для объема печати не будет регулироваться." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Предпочитать интерфейс" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Температура сопла" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Количество слоев взаимосвязанных балок" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Температура, используемая при печати." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ширина взаимосвязанных балок" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Температура печати первого слоя" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Избегание границ взаимосвязанной структуры" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Глубина взаимосвязанной структуры" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Начальная температура печати" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ориентация взаимосвязанной структуры" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Самый высокий слой разглаживания" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Конечная температура печати" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ускорение разглаживания" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Поток разглаживания" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Модификатор скорости охлаждения экструзии" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Границы разглаживания" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Рывок разглаживания" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Температура рабочего стола по умолчанию" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Расстояние между линиями разглаживания" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Шаблон разглаживания" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Температура стола" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Скорость разглаживания" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Температура, задаваемая для нагреваемой печатной пластины. Если значение равно 0, печатная пластина не нагревается." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Начало координат в центре" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Температура стола для первого слоя" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Является поддерживающим материалом" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Температура, задаваемая для нагреваемой печатной пластины на первом слое. Если значение равно 0, печатная пластина не нагревается при печати первого слоя." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Тенденция к прилипанию" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Используется ли обычно этот материал в качестве поддерживающего материала при печати." -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Тенденция к прилипанию к поверхности." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Дрожание только контуров деталей, но не отверстий." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Поверхностная энергия" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Сохранить отсоединённые поверхности" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Поверхностная энергия." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Высота слоя" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Коэффициент масштабирования для компенсации усадки" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X координата начала" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y координата начала" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении XY (горизонтально)." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Толщина слоёв середины подложки." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Толщина верхних слоёв поддержки." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении Z (вертикально)." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Кристаллический материал" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Слева" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Подъём головы" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Положение отката для защиты от капель" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Молния" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Угол выступа шаблона заполнения «молния»" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Скорость отката для защиты от капель" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Угол обрезки шаблона заполнения «молния»" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Угол выпрямления шаблона заполнения «молния»" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Положение отката для подготовки к отламыванию" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Угол поддержки шаблона заполнения «молния»" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Ограничить охват ответвлений" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Скорость отката для подготовки к отламыванию" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Ограничьте расстояние, на которое каждое ответвление должно удаляться от опорной точки. Это может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Насколько быстро следует убирать материал, чтобы он отломился." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Температура подготовки к отламыванию" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Ограниченная" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ширина линии" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Положение отката для отламывания" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Скорость отката для отламывания" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Скорость, при которой убираемый материал отломится чисто." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Температура отламывания" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Температура, при которой материал отломится чисто." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Скорость выдавливания заподлицо" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Скорость подачи материала после переключения на другой материал." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Линии" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Длина выдавливания заподлицо" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Скорость выдавливания заканчивающегося материала" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Глубина принтера" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Полигон головки принтера и вентилятора" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Длина выдавливания заканчивающегося материала" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Высота принтера" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Тип принтера" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Максимальная продолжительность парковки" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ширина принтера" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Срок хранения материала вне сухого хранилища." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Коэффициент движения без нагрузки" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Сделать нависания печатаемыми" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Поток" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Нижняя часть поддержек становится меньше, чем верхняя." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Поток для стенки" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Компенсация потока на линиях стенки." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Поток для внешней стенки" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Сделайте объекты более подходящими для 3D-печати." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Компенсация потока на внешней линии стенки." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Поток для внутренних стенок" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Поток для верхних/нижних линий" +msgctxt "material description" +msgid "Material" +msgstr "Материал" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Компенсация потока на верхних/нижних линиях." +msgctxt "material label" +msgid "Material" +msgstr "Материал" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Поток для верхней оболочки" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID материала" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Компенсация потока на линиях наверху печатаемой детали." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Объем материала между очистками" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Поток для заполнения" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Макс. расстояние комб. без отката" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Компенсация потока на линиях заполнения." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Максимальное ускорение по оси X" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Поток для юбки/каймы" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Максимальное ускорение по оси Y" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Компенсация потока на линиях юбки или каймы." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Максимальное ускорение по оси Z" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Поток для поддержек" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Максимальный угол ответвления" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Компенсация потока на линиях структуры поддержек." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Максимальное отклонение" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Поток для связующего слоя поддержек" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Максимальное отклонение площади экструзии" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Компенсация потока на линиях крыши или низа поддержек." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Максимальная скорость вентилятора" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Поток для крыши поддержек" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Максимальное ускорение материала" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Компенсация потока на линиях крыши поддержек." +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Максимальный угол модели" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Поток для низа поддержек" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Максимальная площадь отверстия выступа" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Максимальная продолжительность парковки" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Компенсация потока на линиях низа поддержек." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Максимальное разрешение" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Поток черновой башни" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Максимальное количество откатов" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Компенсация потока на линиях черновой башни." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Максимальный угол оболочки при расширении" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Поток для первого слоя" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Максимальная скорость по оси E" -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 "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Максимальная скорость по оси X" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Поток внутренней стенки первого слоя" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Максимальная скорость по оси Y" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней, но только для первого слоя." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Максимальная скорость по оси Z" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Поток внешней стенки первого слоя" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Максимальный диаметр, поддерживаемый башней" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Компенсация потока на внешней линии стенки первого слоя." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Максимальное разрешение перемещения" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Поток низа первого слоя" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Максимальное ускорение для мотора оси X" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Компенсация потока на нижних линиях первого слоя." +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Максимальное ускорение для мотора оси Y." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Температура ожидания" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Максимальное ускорение для мотора оси Z." -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Температура сопла в момент, когда для печати используется другое сопло." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Максимальное ускорение мотора подачи материала." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Является поддерживающим материалом" +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 "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Используется ли обычно этот материал в качестве поддерживающего материала при печати." +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Максимальный диаметр по осям X/Y небольшой области, который должен поддерживаться определенной башней." -msgctxt "speed label" -msgid "Speed" -msgstr "Скорость" +msgctxt "max_extrusion_before_wipe description" +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 "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." -msgctxt "speed description" -msgid "Speed" -msgstr "Скорость" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Перекрытие касающихся объектов" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Скорость печати" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ремонт объектов" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Скорость, на которой происходит печать." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "X позиция объекта" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Скорость заполнения" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Y позиция объекта" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Скорость, на которой печатается заполнение." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Z позиция объекта" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Скорость печати стенок" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Порядок обработки объекта" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Скорость, на которой происходит печать стенок." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Матрица вращения объекта" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Скорость печати внешней стенки" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Середина" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Минимальная ширина формы" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Скорость печати внутренних стенок" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Время перехода в ожидание" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Минимальная длина стенки мостика" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Скорость верхней оболочки" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Минимальная ширина линии четных стенок" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Скорость, на которой печатаются слои верхней оболочки." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Окно минимальной расстояния экструзии" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Скорость крышки/дна" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Минимальный размер элемента" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Скорость, на которой печатаются слои крышки/дна." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Минимальная подача" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Скорость печати поддержек" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Минимальная высота до модели" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Минимальная область заполнения" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Скорость заполнения поддержек" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Минимальное время слоя" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Скорость границы поддержек" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Минимальная длина окружности полигона" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Минимальная ширина оболочки при расширении" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Скорость печати крыши поддержек" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Минимальная скорость" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Минимальная зона поддержек" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Скорость печати низа поддержек" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Минимальная зона нижней части поддержек" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Минимальная зона связующего слоя" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Скорость черновых башен" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Минимальная зона верхней части поддержек" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Минимальный X/Y зазор поддержки" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Скорость перемещения" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Минимальный объём перед накатом" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Скорость, с которой выполняется перемещение." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Минимальная ширина линии стенки" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Скорость первого слоя" +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 "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Скорость первого слоя" +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 "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." +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 "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Скорость перемещений на первом слое" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Скорость юбки/каймы" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Форма" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Угол формы" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Скорость поднятия оси Z" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Высота крыши формы" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Скорость вертикального движения по оси Z. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Монотонный порядок разглаживания" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Количество медленных слоёв" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Монотонный порядок верхней оболочки" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Монотонный порядок дна/крышки" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Коэффициент выравнивания потока" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Поправочный коэффициент ширины экструзии в зависимости от скорости. При значении 0 % скорость перемещения сохраняется на уровне скорости печати. При значении 100 % скорость перемещения корректируется таким образом, чтобы расход (в мм3/с) оставался постоянным, то есть линии в половину нормальной ширины линии, печатаются в два раза быстрее, а линии вдвое шире — в два раза быстрее. Значение выше 100 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Разрешить управление ускорением" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Коэффициент движения без нагрузки" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Нет оболочки в Z-зазорах" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Включить ускорение перемещения" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Нетрадиционные способы печати моделей." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Использовать отдельный коэффициент ускорения для перемещения. Если опция отключена, то при перемещении будет использоваться значение ускорения строки в пункте назначения." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Нет" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Ускорение печати" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Нет" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Ускорение, с которым происходит печать." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Нормаль" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Ускорение заполнения" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Нормаль" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Ускорение, с которым печатается заполнение." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Ускорение стенок" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Не в оболочке" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Ускорение, с которым происходит печать стенок." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Не на внешней поверхности" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Ускорение внешней стенки" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Угол сопла" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Ускорение, с которым происходит печать внешних стенок." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Ускорение внутренней стенки" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Запрещённые зоны для сопла" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Ускорение, с которым происходит печать внутренних стенок." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Ускорение верхней оболочки" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Длина сопла" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Ускорение, с которым печатаются слои верхней оболочки." +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Дополнительно заполняемый объем при смене экструдера" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Ускорение крышки/дна" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Скорость наполнения при смене экструдера" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Ускорение, с которым печатаются слои крышки/дна." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Скорость отката при смене экструдера" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Ускорение поддержек" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Величина отката при смене экструдера" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Ускорение, с которым печатаются структуры поддержки." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Скорость отката при смене экструдера" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Ускорение заполнение поддержек" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Количество экструдеров" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Ускорение, с которым печатается заполнение поддержек." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Количество включенных экструдеров" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Ускорение края поддержек" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Количество медленных слоёв" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Ускорение крыши поддержек" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Количество перемещений сопла поперек щетки." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Ускорение низа поддержек" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Ускорение черновой башни" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Восьмигранник" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Ускорение, с которым печатается черновая башня." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Выключен" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Ускорение перемещения" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Смещение, применяемое к объекту по оси X." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Ускорение, с которым выполняется перемещение." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Смещение, применяемое к объекту по оси Y." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Ускорение первого слоя" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Смещение, применяемое к объекту по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Ускорение для первого слоя." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Смещение с экструдером" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Ускорение печати первого слоя" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "По возможности на печатной пластине" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Ускорение при печати первого слоя." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "На модели, если требуется" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Ускорение перемещений первого слоя" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "По отдельности" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Ускорение юбки/каймы" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Включить управление рывком" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Угол защиты от капель" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Дистанция до защиты от капель" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Включить рывок перемещения" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Оптимальный охват ответвлений" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Использовать отдельный коэффициент рывка для перемещения. Если опция отключена, то при перемещении будет использоваться значение рывка строки в пункте назначения." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Оптимизация порядка печати стенок" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Рывок печати" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Изменение максимальной мгновенной скорости печатающей головки." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Внешний диаметр сопла" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Рывок заполнения" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Ускорение внешней стенки" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Экструдер внешних стенок" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Рывок стены" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Поток для внешней стенки" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Вставка внешней стенки" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Рывок внешних стен" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ширина линии внешней стенки" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Рывок внутренних стен" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Скорость печати внешней стенки" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Расстояние очистки внешней стенки" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Рывок верхней оболочки" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "От внешних к внутренним" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Рывок крышки/дна" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Угол нависающей стенки" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Скорость печати нависающей стенки" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Рывок поддержек" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Приостановка после отмены отката." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Рывок заполнение поддержек" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Рывок связи поддержек" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Рывок крыши поддержек" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Полигоны в разделенных слоях, длина окружности которых меньше указанной величины, будут отфильтрованы. Пониженные значения приводят к увеличению разрешения объекта за счет времени разделения. Это предназначено главным образом для принтеров SLA с высоким разрешением и миниатюрных 3D-моделей с множеством деталей." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Предпочтительный угол ответвления" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Рывок низа поддержек" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Предотвратите переход туда и обратно между одной лишней стенкой и одной недостающей. Это поле расширяет диапазон значений ширины линии, который определяется как [Минимальная ширина линии стенки - Поле, 2 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Ускорение черновой башни" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Поток черновой башни" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "Рывок черновых башен" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Рывок перемещения" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ширина линии черновой башни" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Минимальный объём черновой башни" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Рывок первого слоя" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Изменение максимальной мгновенной скорости на первом слое." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Размер черновой башни" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Рывок печати первого слоя" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Скорость черновых башен" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X позиция черновой башни" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Рывок перемещения первого слоя" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y позиция черновой башни" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Рывок юбки/каймы" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Ускорение печати" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Рывок печати" -msgctxt "travel label" -msgid "Travel" -msgstr "Перемещение" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Последовательная печать" -msgctxt "travel description" -msgid "travel" -msgstr "перемещение" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Скорость печати" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Разрешить откат" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Печать тонких стенок" -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Откат при смене слоя" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Откат нити при перемещении сопла на следующий слой." +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Величина отката" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Длина нити материала, которая будет извлечена по время отката." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Скорость отката" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Скорость, с которой печатается слой второй оболочки мостика." -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Скорость, с которой печатается слой третьей оболочки мостика." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Скорость извлечения при откате" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Скорость с которой нить будет извлечена при откате." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Скорость заправки при откате" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Скорость с которой материал будет возвращён при откате." +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Температура сопла" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Дополнительно заполняемый объём при откате" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Температура печати первого слоя" -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Печать внутренней линии юбки несколькими слоями позволяет легко ее удалить." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Минимальное перемещение при откате" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." -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 "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." +msgctxt "resolution label" +msgid "Quality" +msgstr "Качество" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Максимальное количество откатов" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Четверть куба" -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 "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Подложка" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Окно минимальной расстояния экструзии" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Воздушный зазор подложки" -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 "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Экструдер нижних подложек" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Режим комбинга" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Скорость вентилятора для низа подложки" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Дистанция между линиями нижнего слоя подложки" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Выключен" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ширина линии нижнего слоя подложки" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Везде" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Ускорение печати низа подложки" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Не на внешней поверхности" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Рывок печати низа подложки" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Не в оболочке" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Скорость печати низа подложки" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "В области заполнения" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Толщина нижнего слоя подложки" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Макс. расстояние комб. без отката" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Счетчик стен основания подложки" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Дополнительное поле подложки" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Откат перед внешней стенкой" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Скорость вентилятора для подложки" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Всегда откатывать материал при движении к началу внешней стенки." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Экструдер серединных подложек" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Избегать напечатанных частей при перемещении" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Скорость вентилятора для середины подложки" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Серединные слои подложек" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Избегать поддержек при перемещении" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ширина линий середины подложки" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Ускорение печати середины подложки" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Дистанция обхода" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Рывок печати середины подложки" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Скорость печати середины подложки" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X координата начала" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Дистанция между слоями середины подложки" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Толщина середины подложки" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y координата начала" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Ускорение печати подложки" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Рывок подложки" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Поднятие оси Z при откате" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Скорость печати подложки" -msgctxt "retraction_hop_enabled 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 "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Сглаживание подложки" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Поднятие оси Z только над напечатанными частями" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Экструдер верхних подложек" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Скорость вентилятора для верха подложки" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Высота поднятия оси Z" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Толщина верхнего слоя подложки" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Верхние слои подложки" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Поднятие оси Z после смены экструдера" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ширина линий верха подложки" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Ускорение печати верха подложки" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Высота поднятия оси Z после смены экструдера" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Рывок печати верха подложки" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Высота, на которую приподнимается ось Z после смены экструдера." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Скорость печати верха подложки" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Охлаждение" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Дистанция между линиями верха поддержки" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Охлаждение" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Случайно" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Включить вентиляторы" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Рандомизация начала заполнения" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Скорость вентилятора" +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 "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Скорость, с которой вращаются вентиляторы." +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Прямоугольная" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Обычная скорость вентилятора" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Максимальная скорость вентилятора" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Обычная скорость вентилятора на высоте" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Обычная скорость вентилятора на слое" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Порог переключения на повышенную скорость" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Относительная экструзия" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Начальная скорость вентилятора" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Удаляет все отверстия" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Удалить первые пустые слои" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Обычная скорость вентилятора на высоте" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Удалить пересечения объектов" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Удаление внутренних углов подложки" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Обычная скорость вентилятора на слое" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Минимальное время слоя" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Предпочтение опоры" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Откат перед внешней стенкой" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Откат при смене слоя" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Минимальная скорость" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Откат нити при перемещении сопла на следующий слой." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Подъём головы" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Величина отката" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Дополнительно заполняемый объём при откате" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Температура малослойной печати" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Минимальное перемещение при откате" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Постепенно снижать температуру до этой температуры при печати на пониженных скоростях из-за минимального времени нанесения слоя." +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Скорость заправки при откате" -msgctxt "support label" -msgid "Support" -msgstr "Поддержки" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Скорость извлечения при откате" -msgctxt "support description" -msgid "Support" -msgstr "Поддержки" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Скорость отката" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Генерация поддержек" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Справа" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Масштабирование скорости вентилятора до 0-1" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Экструдер поддержек" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Масштабируйте скорость вентилятора таким образом, чтобы она находилась в диапазоне от 0 до 1, а не от 0 до 256." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Коэффициент масштабирования для компенсации усадки" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Экструдер заполнения поддержек" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "На сцене есть объекты поддержки" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Настройки угла шва" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Экструдер первого слоя поддержек" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Параметры, используемые для печати несколькими экструдерами." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Экструдер связующего слоя поддержек" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Начальный откат общего сопла" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Экструдер крыши поддержек" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Острейший угол" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." +msgctxt "shell description" +msgid "Shell" +msgstr "Ограждение" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Экструдер низа поддержек" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Короткий путь" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Показать варианты принтера" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Структура поддержки" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Слои, которые поддерживают края оболочки" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Толщина опоры края оболочки" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Нормаль" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Дистанция расширения оболочки" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Дерево" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Перекрытие оболочек" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Максимальный угол ответвления" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Процент перекрытия оболочек" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Максимальный угол наклона ответвлений при их росте вокруг модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Ширина удаляемой оболочки" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Диаметр ответвления" +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 "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Диаметр ствола" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Диаметр самых широких веток древовидной поддержки. Более толстый ствол будет более прочным; более тонкий ствол займет меньше места на печатной пластине." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Юбка" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Угол диаметра ответвления" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Дистанция до юбки" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Высота юбки" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Размещение поддержек" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Количество линий юбки" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "От стола" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Ускорение юбки/каймы" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Везде" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Экструдер юбки/каймы" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Предпочтительный угол ответвления" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Поток для юбки/каймы" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Предпочтительный угол ответвлений, когда им не нужно избегать модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Используйте больший угол, чтобы ветки сливались быстрее." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Рывок юбки/каймы" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Увеличение диаметра до модели" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ширина линии юбки/каймы" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Наибольшее увеличение диаметра ответвления, которое должно быть соединено с моделью, может произойти за счет слияния с ответвлениями, которые могут достигать печатной пластины. Увеличение этого значения сокращает время печати, но увеличивает площадь поддержки, которая опирается на модель" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Минимальная длина юбки/каймы" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Скорость юбки/каймы" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Минимальная высота до модели" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Допуск слайсинга" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Какой высоты должно быть ответвление, если оно размещено на модели. Предотвращает образование небольших пузырей поддержки. Этот параметр игнорируется, если ответвление поддерживает крышу поддержки." +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Скорость первого слоя для небольших объектов" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Диаметр первого слоя" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Максимальная длина малого элемента" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Диаметр, которого каждое ответвление пытается достичь при достижении печатной пластины. Улучшает адгезию к столу." +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Скорость для малых элементов" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Плотность ответвлений" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Максимальный размер малого отверстия" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Регулирует плотность поддержки, используемой для создания кончиков ответвлений. Большее значение приводит к улучшению качества выступов, но такие поддержки сложнее удалять. Используйте крышу поддержки для очень высоких значений или убедитесь, что плотность одинаково высокая сверху." +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Температура малослойной печати" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Диаметр кончика" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Маленькие вверху/внизу на поверхности" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Диаметр верхушек кончиков ответвлений древовидной поддержки." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Маленькая ширина верха/низа" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Ограничить охват ответвлений" +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 "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Ограничьте расстояние, на которое каждое ответвление должно удаляться от опорной точки. Это может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" +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 "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Оптимальный охват ответвлений" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Небольшие области вверху/внизу заполняются стенками вместо шаблона верха/низа по умолчанию. Это помогает избежать резких движений. По умолчанию отключено для самого верхнего (подверженного воздействию воздуха) слоя (см. Маленький верх/низ на поверхности)." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Рекомендация относительно того, как далеко ответвления могут отходить от точек, которые они поддерживают. Ответвления могут нарушать это значение, чтобы добраться до места назначения (рабочей пластины или плоской части модели). Снижение этого значения может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Умная кайма" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Предпочтение опоры" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Интеллектуальное скрытие" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Предпочтительное размещение поддерживающих конструкций. Если структуры не могут быть размещены в предпочтительном месте, они будут размещены в другом месте, даже если это приведет к их размещению на модели." +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Сглаживать спиральные контуры" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "По возможности на печатной пластине" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "На модели, если требуется" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Угол нависания поддержки" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Специальные режимы" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Шаблон поддержек" +msgctxt "speed description" +msgid "Speed" +msgstr "Скорость" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." +msgctxt "speed label" +msgid "Speed" +msgstr "Скорость" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Скорость перемещения оси Z во время поднятия." -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Спирально печатать внешний контур" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Температура ожидания" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Стартовый G-код" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Крест" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Количество шагов на миллиметр (E)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Количество линий стенки поддержки" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Количество шагов на миллиметр (X)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Количество шагов на миллиметр (Y)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Количество линий стенок связующего слоя поддержки" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Количество шагов на миллиметр (Z)" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." +msgctxt "support description" +msgid "Support" +msgstr "Поддержки" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Количество линий стенок крыши" +msgctxt "support label" +msgid "Support" +msgstr "Поддержки" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, которыми можно окружить крышу связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Ускорение поддержек" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Дистанция поддержки снизу" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Количество линий стенок основания" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, которыми можно окружить основание связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Соединение линий поддержки" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Количество линий каймы поддержки" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ширина каймы поддержки" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Соединённый зигзаг" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Количество частей линий поддержки" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Размер части поддержек" msgctxt "support_infill_rate label" msgid "Support Density" msgstr "Плотность поддержек" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Приоритет зазоров поддержки" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Дистанция между линиями поддержки" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Экструдер поддержек" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Ускорение низа поддержек" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Плотность низа поддержек" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Экструдер низа поддержек" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Поток для низа поддержек" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Горизонтальное расширение нижней части поддержек" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Дистанция между линиями поддержки первого слоя" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Рывок низа поддержек" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Направления линии низа поддержек" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Направление линии заполнения поддержек" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Дистанция линии низа поддержек" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартного угла 0 градусов." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ширина линии дна поддержки" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Разрешить кайму поддержек" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Шаблон низа поддержек" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Скорость печати низа поддержек" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ширина каймы поддержки" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Толщина низа поддержки" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Поток для поддержек" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Количество линий каймы поддержки" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Горизонтальное расширение поддержки" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Ускорение заполнение поддержек" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Зазор поддержки по оси Z" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Экструдер заполнения поддержек" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Рывок заполнение поддержек" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Зазор поддержки сверху" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Толщина слоя заполнения поддержек" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Расстояние между верхом поддержек и печатаемой моделью." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Направление линии заполнения поддержек" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Дистанция поддержки снизу" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Скорость заполнения поддержек" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Расстояние между печатаемой моделью и низом поддержки." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Ускорение края поддержек" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Зазор поддержки по осям X/Y" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Плотность связующего слоя поддержки" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Экструдер связующего слоя поддержек" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Приоритет зазоров поддержки" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Поток для связующего слоя поддержек" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Горизонтальное расширение связующего слоя" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y перекрывает Z" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Рывок связи поддержек" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z перекрывает X/Y" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Направления линии связующего слоя поддержек" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Минимальный X/Y зазор поддержки" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ширина линии поддерживающей крыши" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Шаблон связующего слоя" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Высота шага лестничной поддержки" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Приоритет интерфейса поддержки" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Разрешение связующего слоя поддержек" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Максимальная ширина шага лестничной поддержки" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Скорость границы поддержек" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Толщина связующего слоя поддержки" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Минимальный угол уклона шага лестничной поддержки" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Количество линий стенок связующего слоя поддержки" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Рывок поддержек" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Расстояние объединения поддержки" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Максимальное расстояние между структурами поддержек по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Горизонтальное расширение поддержки" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Толщина слоя заполнения поддержек" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Дистанция между линиями поддержки" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ширина линии поддержки" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Степень заполнения поддержек" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Поддерживающий объект" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Угол нависания поддержки" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Высота шага изменения заполнения поддержек" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Шаблон поддержек" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Размещение поддержек" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Минимальная зона поддержек" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Ускорение крыши поддержек" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Плотность крыши поддержек" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Разрешить связующий слой поддержки" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Экструдер крыши поддержек" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Поток для крыши поддержек" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Разрешить крышу поддержек" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Горизонтальное расширение верхней части поддержек" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Рывок крыши поддержек" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Разрешить дно поддержек" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Направления линии крыши поддержек" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Дистанция линии крыши поддержек" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Толщина связующего слоя поддержки" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ширина линии крыши поддержки" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Шаблон крыши поддержек" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Скорость печати крыши поддержек" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Толщина крыши" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Количество линий стенок крыши" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Толщина низа поддержки" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Скорость печати поддержек" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Высота шага лестничной поддержки" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Разрешение связующего слоя поддержек" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Максимальная ширина шага лестничной поддержки" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Минимальный угол уклона шага лестничной поддержки" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Плотность связующего слоя поддержки" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Структура поддержки" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Зазор поддержки сверху" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Плотность крыши поддержек" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Количество линий стенки поддержки" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Зазор поддержки по осям X/Y" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Дистанция линии крыши поддержек" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Зазор поддержки по оси Z" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Предпочитать линии поддержки" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Плотность низа поддержек" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Предпочитать поддержку" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Поддерживаемая скорость вентилятора для оболочки" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Дистанция линии низа поддержек" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Поверхность" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Поверхностная энергия" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Шаблон связующего слоя" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Поверхностный режим" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Тенденция к прилипанию к поверхности." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Поверхностная энергия." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Меняет местами порядок печати внутренней и следующей внутренней линий каймы. Это упрощает удаление каймы." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +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 "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Шаблон крыши поддержек" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Ускорение при печати первого слоя." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Шаблон низа поддержек" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Ускорение для первого слоя." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Ускорение, с которым происходит печать внутренних стенок." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Ускорение, с которым печатается заполнение." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ускорение, с которым производится разглаживание." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Ускорение, с которым происходит печать." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Ускорение, с которым печатаются нижние слои подложки." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Сетка" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Ускорение, с которым печатается заполнение поддержек." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Ускорение, с которым печатаются средние слои подложки." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Ускорение, с которым происходит печать внешних стенок." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Ускорение, с которым печатается черновая башня." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Минимальная зона связующего слоя" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Ускорение, с которым печатается подложка." -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 "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Минимальная зона верхней части поддержек" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." -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 "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Минимальная зона нижней части поддержек" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Ускорение, с которым печатаются структуры поддержки." -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 "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Ускорение, с которым печатаются верхние слои подложки." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Горизонтальное расширение связующего слоя" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Величина смещения, применяемая к полигонам связующего слоя." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Горизонтальное расширение верхней части поддержек" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Ускорение, с которым происходит печать стенок." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Величина смещения, применяемая к верхней части поддержек." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Ускорение, с которым печатаются слои верхней оболочки." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Горизонтальное расширение нижней части поддержек" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Ускорение, с которым печатаются слои крышки/дна." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Величина смещения, применяемая к нижней части поддержек." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Ускорение, с которым выполняется перемещение." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Приоритет интерфейса поддержки" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Как интерфейс поддержки и поддержка будут взаимодействовать при пересечении. В настоящее время реализовано только для крыши поддержки." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Предпочитать поддержку" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Предпочитать интерфейс" +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 для отключения отката. Обычно соответствует длине зоны нагрева." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Предпочитать линии поддержки" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Предпочитать линии интерфейса" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Оба пересекаются" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Направления линии связующего слоя поддержек" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Направления линии крыши поддержек" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Направления линии низа поддержек" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Стандартное ускорение для движений головы." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Переопределение скорости вентилятора" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Поддерживаемая скорость вентилятора для оболочки" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Использовать башни" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Диаметр башен" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Ширина (по оси Y) области печати." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "Диаметр специальных башен." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Максимальный диаметр, поддерживаемый башней" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Максимальный диаметр по осям X/Y небольшой области, который должен поддерживаться определенной башней." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Диаметр верхушек кончиков ответвлений древовидной поддержки." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Угол крыши башен" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Диаметр колесика, перемещающего материал в питатель." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Диаметр самых широких веток древовидной поддержки. Более толстый ствол будет более прочным; более тонкий ствол займет меньше места на печатной пластине." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Объект поддержки нависаний" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет." +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Расстояние между линиями разглаживания." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "На сцене есть объекты поддержки" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Разрешить наполнение материалом" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Тип прилипания к столу" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Юбка" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Кайма" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Подложка" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Нет" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Экструдер первого слоя" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Расстояние перемещения головки назад и вперед поперек щетки." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Экструдер юбки/каймы" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Экструдер нижних подложек" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "Этот экструдер используется для печати первого слоя подложек. Используется при наличии нескольких экструдеров." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Экструдер серединных подложек" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "Этот комплекс экструдеров используется для печати среднего слоя подложек. Используется при наличии нескольких экструдеров." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Экструдер верхних подложек" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Этот комплекс экструдеров используется для печати верхнего слоя (или нескольких слоев) подложек. Используется при наличии нескольких экструдеров." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Количество линий юбки" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Высота юбки" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Печать внутренней линии юбки несколькими слоями позволяет легко ее удалить." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Дистанция до юбки" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Горизонтальное расстояние между юбкой и первым слоем печати.\nМинимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Минимальная длина юбки/каймы" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ширина каймы" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Количество линий каймы" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Этот комплекс экструдеров используется для печати верхнего слоя (или нескольких слоев) подложек. Используется при наличии нескольких экструдеров." -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 "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Расстояние до каймы" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." -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 "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Кайма заменяет поддержку" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Кайма только снаружи" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Скорость вентилятора при печати нижнего слоя подложки." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Кайма внутри зоны избегания" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Скорость вентилятора при печати средних слоёв подложки." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Деталь, полностью заключенная внутри другой детали, может создать внешнюю кайму, которая касается внутренней части другой детали. Эта опция убирает всю кайму в пределах этого расстояния от внутренних отверстий." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Скорость вращения вентилятора при печати подложки." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Умная кайма" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Скорость вентилятора при печати верхних слоёв подложки." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Меняет местами порядок печати внутренней и следующей внутренней линий каймы. Это упрощает удаление каймы." +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Дополнительное поле подложки" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Сглаживание подложки" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Ширина (по оси Z) области печати." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Воздушный зазор подложки" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z наложение первого слоя" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Высота между кончиком сопла и нижней частью головы." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Верхние слои подложки" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Высота, на которую приподнимается ось Z после смены экструдера." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Толщина верхнего слоя подложки" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Толщина верхних слоёв поддержки." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ширина линий верха подложки" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Дистанция между линиями верха поддержки" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Серединные слои подложек" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Толщина середины подложки" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Толщина слоёв середины подложки." +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 "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ширина линий середины подложки" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"Горизонтальное расстояние между юбкой и первым слоем печати.\n" +"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Дистанция между слоями середины подложки" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Расстояние перемещения шаблона заполнения по оси X." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Расстояние перемещения шаблона заполнения по оси Y." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Толщина нижнего слоя подложки" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ширина линии нижнего слоя подложки" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Скорость изменения ускорений при печати подложки." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Дистанция между линиями нижнего слоя подложки" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Скорость печати подложки" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Скорость, на которой печатается подложка." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Скорость печати верха подложки" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Скорость печати середины подложки" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Длина нити материала, которая будет извлечена по время отката." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Скорость печати низа подложки" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Материал рабочего стола, установленного на принтере." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Ускорение печати подложки" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Ускорение, с которым печатается подложка." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Ускорение печати верха подложки" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Максимальный угол наклона ответвлений при их росте вокруг модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Ускорение, с которым печатаются верхние слои подложки." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Максимальная площадь отверстия в основании модели, при достижении которой оно удаляется функцией «Сделать нависания печатаемыми». Более мелкие отверстия сохраняются. Значение 0 мм² приведет к заполнению всех отверстий в основании модели." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Ускорение печати середины подложки" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения понизит точность печати и уменьшит значение G-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Ускорение, с которым печатаются средние слои подложки." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Максимальное расстояние между структурами поддержек по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Ускорение печати низа подложки" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Ускорение, с которым печатаются нижние слои подложки." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Максимальное допустимое отклонение площади экструдирования при удалении промежуточных точек от прямой линии. Промежуточная точка может служить точкой изменения ширины длинной прямой линии. Следовательно, если ее удалить, линия будет иметь одинаковую ширину и вследствие этого площадь экструдирования немного сократится (или увеличится). Если увеличить это значение, можно будет заметить небольшой эффект недостаточного (или чрезмерного) экструдирования между прямыми параллельными стенками, так как будет разрешено удалить больше промежуточных точек изменения ширины. При увеличении этого значения точность печати понизится, а значение g-кода уменьшится." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Рывок подложки" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Скорость изменения ускорений при печати подложки." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Изменение максимальной мгновенной скорости печатающей головки." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Рывок печати верха подложки" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Рывок печати середины подложки" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Рывок печати низа подложки" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Скорость вентилятора для подложки" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Скорость вращения вентилятора при печати подложки." +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Скорость вентилятора для верха подложки" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Скорость вентилятора при печати верхних слоёв подложки." +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Скорость вентилятора для середины подложки" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Скорость вентилятора при печати средних слоёв подложки." +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Скорость вентилятора для низа подложки" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Скорость вентилятора при печати нижнего слоя подложки." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Два экструдера" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Параметры, используемые для печати несколькими экструдерами." +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Разрешить черновую башню" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Максимальная скорость для мотора оси X." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Максимальная скорость для мотора оси Y." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Размер черновой башни" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Максимальная скорость для мотора оси Z." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Ширина черновой башни." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Максимальная скорость подачи материала." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Минимальный объём черновой башни" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Минимальное расстояние между внешними сторонами формы и модели." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X позиция черновой башни" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Минимальная скорость движения головы." -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "X координата позиции черновой башни." +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y позиция черновой башни" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Y координата позиции черновой башни." +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Очистка неактивного сопла на черновой башне" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." +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 "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Кайма черновой башни" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой." +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Минимальная ширина линии для полилинейных стенок, заполняющих зазоры средней линии. Этот параметр определяет, при какой толщине модели выполняется переключение с печати стенки в две линии на печать двух внешних стенок и одной центральной стенки посередине. Чем выше значение минимальной ширины линии нечетной стенки, тем выше максимальная ширина линии четной стенки. Максимальная ширина линии нечетной стенки вычисляется по формуле: 2 * минимальную ширину линии четной стенки." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Печатать защиту от капель" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Минимальная ширина линии обычных многоугольных стенок. Этот параметр определяет, при какой толщине модели выполняется переключение с печати тонкой стенки в одну линию на печать стенок в две линии. Чем выше значение минимальной ширины линии четной стенки, тем выше максимальная ширина линии нечетной стенки. Максимальная ширина линии четной стенки вычисляется по формуле: Ширина линии внешней стенки + 0,5 * Минимальная ширина линии нечетной стенки." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Угол защиты от капель" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Дистанция до защиты от капель" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки защиты от модели, по осям X/Y." +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Величина отката при смене экструдера" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." -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 для отключения отката. Обычно соответствует длине зоны нагрева." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Наибольшее увеличение диаметра ответвления, которое должно быть соединено с моделью, может произойти за счет слияния с ответвлениями, которые могут достигать печатной пластины. Увеличение этого значения сокращает время печати, но увеличивает площадь поддержки, которая опирается на модель" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Скорость отката при смене экструдера" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Название модели вашего 3D принтера." -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 "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Скорость отката при смене экструдера" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Скорость наполнения при смене экструдера" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Дополнительно заполняемый объем при смене экструдера" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Количество слоев, которые поддерживают края оболочки." -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Дополнительный объем материала для заполнения после смены экструдера." +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 "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ремонт объектов" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Сделайте объекты более подходящими для 3D-печати." +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 "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Объединение перекрывающихся объёмов" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Удаляет все отверстия" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Обширное сшивание" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, которыми можно окружить основание связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Сохранить отсоединённые поверхности" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, которыми можно окружить крышу связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код." +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Перекрытие касающихся объектов" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Удалить пересечения объектов" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Внешний диаметр кончика сопла." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Чередование объектов" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Шаблон, используемый для верхних слоёв оболочки." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Удалить первые пустые слои" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Шаблон слоёв для крышки/дна." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Шаблон низа печати на первом слое." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Максимальное разрешение" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Максимальное разрешение перемещения" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Максимальное отклонение" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения понизит точность печати и уменьшит значение G-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Предпочтительный угол ответвлений, когда им не нужно избегать модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Используйте больший угол, чтобы ветки сливались быстрее." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Максимальное отклонение площади экструзии" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Предпочтительное размещение поддерживающих конструкций. Если структуры не могут быть размещены в предпочтительном месте, они будут размещены в другом месте, даже если это приведет к их размещению на модели." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Максимальное допустимое отклонение площади экструдирования при удалении промежуточных точек от прямой линии. Промежуточная точка может служить точкой изменения ширины длинной прямой линии. Следовательно, если ее удалить, линия будет иметь одинаковую ширину и вследствие этого площадь экструдирования немного сократится (или увеличится). Если увеличить это значение, можно будет заметить небольшой эффект недостаточного (или чрезмерного) экструдирования между прямыми параллельными стенками, так как будет разрешено удалить больше промежуточных точек изменения ширины. При увеличении этого значения точность печати понизится, а значение g-кода уменьшится." +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Изменение максимальной мгновенной скорости на первом слое." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Включить плавное движение" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Форма стола без учёта непечатаемых областей." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "При включении траектории инструмента корректируются для принтеров с планировщиками плавного движения. Небольшие движения, отклоняющиеся от общего направления траектории инструмента, сглаживаются для улучшения плавности движений." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Расстояние смещения движения жидкости" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Точки расстояния смещаются для сглаживания пути" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Движение жидкости на небольшом расстоянии" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Точки расстояния смещаются для сглаживания пути" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Угол движения жидкости" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Если сегмент траектории отклоняется более, чем на этот угол от общего движения, он сглаживается." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Скорость, с которой печатаются области оболочки мостика." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Специальные режимы" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Скорость, на которой печатается заполнение." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Нетрадиционные способы печати моделей." +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Скорость, на которой происходит печать." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Последовательная печать" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +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 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 "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Скорость, с которой происходит печать стенок мостика." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Все за раз" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "По отдельности" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Заполнение объекта" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Скорость с которой материал будет возвращён при откате." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Скорость, с которой нить заправляется при откате с очисткой." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Порядок обработки объекта" +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ограничивающий объект" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Форма" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Скорость с которой нить будет извлечена при откате." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Минимальная ширина формы" +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 "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Минимальное расстояние между внешними сторонами формы и модели." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Высота крыши формы" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Угол формы" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Поддерживающий объект" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Скорость, с которой вращаются вентиляторы." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Скорость, на которой печатается подложка." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Блокиратор поддержек" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Поверхностный режим" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Нормаль" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Поверхность" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Оба варианта" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Скорость печати самых внешних стен верхней поверхности." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Спирально печатать внешний контур" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Скорость вертикального движения по оси Z. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Скорость, на которой происходит печать стенок." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Сглаживать спиральные контуры" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Скорость, на которой голова проходит над верхней оболочкой." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Скорость, при которой убираемый материал отломится чисто." -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Относительная экструзия" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Скорость, на которой печатаются слои верхней оболочки." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Скорость, на которой печатаются слои крышки/дна." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Экспериментальное" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Скорость, с которой выполняется перемещение." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Функции, еще не раскрытые до конца." +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Допуск слайсинга" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Середина" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Исключение" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Температура, при которой материал отломится чисто." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Включение" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Температура среды печати. Если это значение равно 0, температура для объема печати не будет регулироваться." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Оптимизация перемещения заполнения" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Температура сопла в момент, когда для печати используется другое сопло." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "График температуры потока" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Температура, используемая при печати." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Минимальная длина окружности полигона" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Температура, задаваемая для нагреваемой печатной пластины на первом слое. Если значение равно 0, печатная пластина не нагревается при печати первого слоя." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Температура, задаваемая для нагреваемой печатной пластины. Если значение равно 0, печатная пластина не нагревается." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Полигоны в разделенных слоях, длина окружности которых меньше указанной величины, будут отфильтрованы. Пониженные значения приводят к увеличению разрешения объекта за счет времени разделения. Это предназначено главным образом для принтеров SLA с высоким разрешением и миниатюрных 3D-моделей с множеством деталей." +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Создать взаимосвязанную структуру" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшит адгезию между моделями, особенно моделями из разных материалов." +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Толщина дополнительного объема, который поддерживает края оболочки." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Ширина взаимосвязанных балок" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху." -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "Ширина балок взаимосвязанной конструкции." +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Ориентация взаимосвязанной структуры" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Количество слоев взаимосвязанных балок" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Глубина взаимосвязанной структуры" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии." +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Избегание границ взаимосвязанной структуры" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Генерируемый тип G-кода." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Разбить поддержки на части" +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Ширина (по оси X) области печати." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Размер части поддержек" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Ширина балок взаимосвязанной конструкции." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек." +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Количество частей линий поддержки" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Ширина черновой башни." -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек." +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Разрешить печать кожуха" +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 "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "X координата позиции черновой башни." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Дистанция X/Y до кожуха" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Y координата позиции черновой башни." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Ограничение кожуха" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Полная" +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 "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Ограниченная" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Высота кожуха" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Диаметр кончика" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении XY (горизонтально)." -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Сделать нависания печатаемыми" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении Z (вертикально)." -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Максимальный угол модели" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Слои крышки" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений." +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Дистанция расширения оболочки сверху" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Максимальная площадь отверстия выступа" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Ширина удаляемой оболочки сверху" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Максимальная площадь отверстия в основании модели, при достижении которой оно удаляется функцией «Сделать нависания печатаемыми». Более мелкие отверстия сохраняются. Значение 0 мм² приведет к заполнению всех отверстий в основании модели." +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Ускорение внутренней поверхности верхней стены" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Разрешить накат" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Рывок внешних стен верхней поверхности" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Скорость внутренней поверхности верхней стены" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Объём наката" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Поток внутренней стены верхней поверхности" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Ускорение внешней поверхности верхней стены" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Минимальный объём перед накатом" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Поток на самой внешней линии верхней поверхности" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Рывок внутренних стен верхней поверхности" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Скорость наката" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Скорость самых внешних стен верхней поверхности" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается." +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Ускорение верхней оболочки" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Размер карманов креста 3D" +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Экструдер для печати крышки" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя." +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Поток для верхней оболочки" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Изображение плотности перекрестного заполнения" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Рывок верхней оболочки" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Слои верхней оболочки" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Изображение плотности перекрестного заполнения для поддержки" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Направление линий верхней оболочки" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ширина линии крышки" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Конические поддержки" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Шаблон верхней оболочки" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Нижняя часть поддержек становится меньше, чем верхняя." +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Скорость верхней оболочки" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Угол конических поддержек" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Толщина крышки" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Для верхней и (или) нижней поверхностей вашего объекта с углом больше указанного в данном параметре верхняя и нижняя оболочки не будут расширены. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол 0° является горизонтальным и не вызывает расширения оболочки, угол 90° является вертикальным и вызывает расширение всей оболочки." -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Минимальная ширина конических поддержек" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Дно / крышка" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Дно / крышка" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Нечёткая оболочка" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Ускорение крышки/дна" -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 "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Экструдер дна/крышки" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Только шершавая оболочка снаружи" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Поток для верхних/нижних линий" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Дрожание только контуров деталей, но не отверстий." +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Рывок крышки/дна" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Толщина шершавости оболочки" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Направление линии дна/крышки" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ширина линии дна/крышки" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Плотность шершавой оболочки" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Шаблон для крышки/дна" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Скорость крышки/дна" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Дистанция между точками шершавой оболочки" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Толщина дна/крышки" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "От стола" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Макс. смещение экструзии для компенсации расхода" +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Диаметр башен" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Угол крыши башен" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Коэффициент компенсации расхода" +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." -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 "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." +msgctxt "travel label" +msgid "Travel" +msgstr "Перемещение" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Использовать адаптивные слои" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Ускорение перемещения" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Дистанция обхода" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Максимальная вариация адаптивных слоев" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Рывок перемещения" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Скорость перемещения" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Размер шага вариации адаптивных слоев" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Дерево" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Размер топографии адаптивных слоев" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Шестигранник из треугольников" -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 "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Треугольник" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Угол нависающей стенки" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -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, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Скорость печати нависающей стенки" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Активация настроек мостиков" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Диаметр ствола" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Минимальная длина стенки мостика" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Объединение перекрывающихся объёмов" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." msgstr "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика." -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Пороговое значение поддержки для оболочки мостика" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Использовать адаптивные слои" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Использовать башни" -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 "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Использовать отдельный коэффициент ускорения для перемещения. Если опция отключена, то при перемещении будет использоваться значение ускорения строки в пункте назначения." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Максимальная плотность разреженного заполнения мостика" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Использовать отдельный коэффициент рывка для перемещения. Если опция отключена, то при перемещении будет использоваться значение рывка строки в пункте назначения." -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 "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии." -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Накат стенки мостика" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Скорость печати стенки мостика" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Скорость, с которой происходит печать стенок мостика." +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Поток для стенки мостика" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Пользовательский" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Скорость печати оболочки мостика" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Скорость, с которой печатаются области оболочки мостика." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Ожидать пока прогреется стол" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Поток для оболочки мостика" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Ожидать пока прогреется сопло" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Ускорение стенок" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Плотность оболочки мостика" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Счетчик распределений по стенкам" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Экструдер стенок" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Скорость вентилятора для мостика" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Поток для стенки" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Рывок стены" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "В мостике несколько слоев" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Количество линий стенки" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ширина линии стенки" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Скорость печати второй оболочки мостика" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Порядок стенок" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Скорость, с которой печатается слой второй оболочки мостика." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Скорость печати стенок" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Поток для второй оболочки мостика" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Толщина стенки" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Длина перехода к стенке" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Плотность второй оболочки мостика" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Расстояние фильтра при переходе между стенками" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Поле фильтра при переходе между стенками" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Скорость вентилятора для второй оболочки мостика" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Пороговый угол перехода между стенками" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." +msgctxt "shell label" +msgid "Walls" +msgstr "Стенки" -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Скорость печати третьей оболочки мостика" +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, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Скорость, с которой печатается слой третьей оболочки мостика." +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Поток для третьей оболочки мостика" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "При включении траектории инструмента корректируются для принтеров с планировщиками плавного движения. Небольшие движения, отклоняющиеся от общего направления траектории инструмента, сглаживаются для улучшения плавности движений." -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Плотность третьей оболочки мостика" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Скорость вентилятора для третьей оболочки мостика" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Если значение больше нуля, то горизонтальное расширение отверстия постепенно применяется к маленьким отверстиям (маленькие отверстия расширяются больше). Если установлено нулевое значение, то горизонтальное расширение отверстия будет применено ко всем отверстиям. Отверстия, превышающие максимальный диаметр горизонтального расширения отверстия, не расширяются." -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Очистка сопла между слоями" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Если значение больше нуля, то горизонтальное расширение отверстия представляет собой величину смещения, применяемую ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий, отрицательные значения уменьшают размер отверстий. Если этот параметр включен, то его можно дополнительно настроить с помощью максимального диаметра горизонтального расширения отверстия." -msgctxt "clean_between_layers description" -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 "Следует ли добавлять G-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Объем материала между очистками" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." -msgctxt "max_extrusion_before_wipe description" -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 "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Включение отката с очисткой" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Расстояние отката с очисткой" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой." + +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Дополнительно заполняемый объем при откате с очисткой" +msgctxt "wipe_hop_enable description" +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 "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." +msgctxt "retraction_hop_enabled 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 "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Скорость отката с очисткой" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Следует ли считать центром координат по осям X/Y в центре области печати." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Скорость отката при откате с очисткой" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Скорость заправки при откате с очисткой" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Скорость, с которой нить заправляется при откате с очисткой." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Приостановка очистки" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Указывает, используют ли все экструдеры общее сопло или у каждого имеется отдельное. Если установлено значение true, ожидается, что сценарий gcode запуска принтера правильно переводит все экструдеры в известное и взаимно совместимое начальное состояние отката (либо ноль, либо один материал не втянут); в этом случае начальное состояние отката описывается для каждого экструдера параметром machine_extruders_shared_nozzle_initial_retraction." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Приостановка после отмены отката." +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Имеет ли принтер подогреваемый стол." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Поднятие оси Z при очистке" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." -msgctxt "wipe_hop_enable description" -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 "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Высота поднятия оси Z при очистке" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр." -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Скорость поднятия при очистке" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Скорость перемещения оси Z во время поднятия." +msgctxt "clean_between_layers description" +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 "Следует ли добавлять G-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Позиция X очистной щетки" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Расположение X, в котором запустится скрипт очистки." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -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 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 "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Количество перемещений сопла поперек щетки." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Расстояние перемещения при очистке" +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 для отката материала." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Расстояние перемещения головки назад и вперед поперек щетки." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Максимальный размер малого отверстия" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ширина одной линии заполнения." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Ширина одной линии поддержки крышки или дна." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Максимальная длина малого элемента" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Ширина одной линии крышки." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Скорость для малых элементов" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Ширина отдельной линии черновой башни." -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 "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Ширина одной линии юбки или каймы." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Скорость первого слоя для небольших объектов" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Ширина одной линии дна поддержки." -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 "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Ширина одной линии крыши поддержки." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Чередование направления стенок" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ширина одной линии поддержки." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ширина одной линии дна/крышки." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Удаление внутренних углов подложки" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ширина одной линии стенки." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Счетчик стен основания подложки" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Параметры командной строки" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." -msgctxt "center_object label" -msgid "Center Object" -msgstr "Центрирование объекта" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект." +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Позиция X очистной щетки" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "X позиция объекта" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Скорость поднятия при очистке" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Очистка неактивного сопла на черновой башне" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Смещение, применяемое к объекту по оси X." +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Расстояние перемещения при очистке" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Y позиция объекта" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Очистка сопла между слоями" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Смещение, применяемое к объекту по оси Y." +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Приостановка очистки" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Z позиция объекта" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Количество повторов очистки" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Смещение, применяемое к объекту по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола." +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Расстояние отката с очисткой" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Матрица вращения объекта" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Включение отката с очисткой" -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Дополнительно заполняемый объем при откате с очисткой" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Постепенный поток включен" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Скорость заправки при откате с очисткой" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Скорость отката при откате с очисткой" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Максимальное ускорение постепенного потока" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Скорость отката с очисткой" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Максимальное ускорение для плавного изменения потока" +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Поднятие оси Z при очистке" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Максимальное ускорение потока начального слоя" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Высота поднятия оси Z при очистке" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "В области заполнения" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Размер шага дискретизации постепенного потока" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Выполняйте запись активного инструмента после отправки временных команд неактивному инструменту. Требуется для печати с двойным экструдером под управлением Smoothie или другой прошивки с модальными командами инструментов." -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Продолжительность каждого этапа постепенного изменения потока" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Ограничитель хода на оси X в прямом направлении" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Сбросить продолжительность потока" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Расположение X, в котором запустится скрипт очистки." -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y перекрывает Z" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Y в прямом направлении" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Z в прямом направлении" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Поднятие оси Z после смены экструдера" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Высота поднятия оси Z после смены экструдера" -msgctxt "material description" -msgid "Material" -msgstr "Материал" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Высота поднятия оси Z" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Поднятие оси Z только над напечатанными частями" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Скорость поднятия оси Z" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Поднятие оси Z при откате" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Выравнивание шва по оси Z" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Позиция Z шва" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Привязка Z шва" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X координата для Z шва" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y координата для Z шва" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z перекрывает X/Y" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "material label" -msgid "Material" -msgstr "Материал" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Тип прилипания к столу" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Группировать внешние стены" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Поток на самой внешней линии верхней поверхности" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Компенсация потока на самой внешней линии верхней поверхности." +msgctxt "travel description" +msgid "travel" +msgstr "перемещение" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Поток внутренней стены верхней поверхности" +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Расстояние между печатаемой моделью и низом поддержки." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя." -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Скорость самых внешних стен верхней поверхности" +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Продолжительность каждого этапа постепенного изменения потока" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Скорость печати самых внешних стен верхней поверхности." +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Включите постепенное изменение потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Скорость внутренней поверхности верхней стены" +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Размер шага дискретизации постепенного потока" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Ускорение внешней поверхности верхней стены" +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Постепенный поток включен" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Максимальное ускорение постепенного потока" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Ускорение внутренней поверхности верхней стены" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "Максимальное ускорение потока начального слоя" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Максимальное ускорение для плавного изменения потока" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Рывок внутренних стен верхней поверхности" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "Минимальная скорость для постепенного изменения потока для первого слоя" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Кайма черновой башни" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Рывок внешних стен верхней поверхности" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой." -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Сбросить продолжительность потока" + +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index f0a04f1b394..0126ba45553 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -137,8 +138,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Bu değişikliklerin etkili olması için uygulamayı yeniden başlatmanız gerekecektir." msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- Marketplace'den malzeme profilleri ve eklentiler ekleyin\n" +"- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin\n" +"- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" msgctxt "@heading" msgid "-- incomplete --" @@ -164,6 +171,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF Dosyası" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF Okuyucu" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Yazıcı" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF Writer eklentisi bozuk." @@ -184,29 +199,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Özel profilde yalnızca kullanıcı tarafından değiştirilen ayarlar kaydedilir.
    Yeni özel profil, bunu destekleyen malzemeler için %1adresindeki özellikleri devralır." +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Oluşturucusu: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL Satıcısı: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL Sürümü: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

    \n

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen "Rapor gönder" düğmesini kullanın

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Cura’da onarılamaz bir hata oluştu. Lütfen sorunu çözmek için bize Çökme Raporunu gönderin

    \n" +"

    Sunucularımıza otomatik olarak bir hata raporu yüklemek için lütfen "Rapor gönder" düğmesini kullanın

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

    \n

    Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

    \n

    Yedekler yapılandırma klasöründe bulunabilir.

    \n

    Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    Ultimaker Cura doğru görünmeyen bir şeyle karşılaştı.

    \n" +"

    Başlatma esnasında kurtarılamaz bir hata ile karşılaştık. Muhtemelen bazı hatalı yapılandırma dosyalarından kaynaklanıyordu. Yapılandırmanızı yedekleyip sıfırlamanızı öneriyoruz.

    \n" +"

    Yedekler yapılandırma klasöründe bulunabilir.

    \n" +"

    Sorunu düzeltmek için lütfen bu Çökme Raporunu bize gönderin.

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

    \n

    {model_names}

    \n

    En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

    \n

    Yazdırma kalitesi kılavuzunu görüntüleyin

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    Model boyutu ve model yapılandırması nedeniyle bir veya daha fazla 3D model optimum yazdırılamayabilir:

    \n" +"

    {model_names}

    \n" +"

    En iyi kalite ve güvenilirliği nasıl elde edeceğinizi öğrenin.

    \n" +"

    Yazdırma kalitesi kılavuzunu görüntüleyin

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -226,6 +269,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF Dosyası" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Okuyucu" + msgctxt "@label" msgid "Abort" msgstr "Durdur" @@ -262,6 +309,10 @@ msgctxt "@button" msgid "Accept" msgstr "Kabul et" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." + msgctxt "@label" msgid "Account synced" msgstr "Hesap senkronize edildi" @@ -354,6 +405,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Yazıcıyı manuel olarak ekle" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor" @@ -390,10 +442,23 @@ msgctxt "@button" msgid "Agree" msgstr "Kabul ediyorum" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "Tüm Dosyalar (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "Tüm desteklenen türler ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Anonim veri gönderilmesine izin ver" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Her zaman sor" @@ -466,6 +531,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1 öğesini kuyruğun en üstüne taşımak ister misiniz?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?" @@ -474,6 +540,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "Yeni bir proje başlatmak istediğinizden emin misiniz? Bu işlem yapı levhasını ve kaydedilmemiş tüm ayarları silecektir." +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" @@ -486,6 +557,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "Tüm Modelleri bir ızgarada düzenleyin" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "Soru gönder" @@ -534,6 +609,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Yapılandırmayı Yedekle ve Sıfırla" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin" @@ -546,6 +625,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "Yedeklemeler" +msgctxt "@label" +msgid "Balanced" +msgstr "Dengeli" + msgctxt "@action:label" msgid "Base (mm)" msgstr "Taban (mm)" @@ -622,10 +705,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMaker yazıcınıza bağlanamıyor musunuz?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Yazıcı eklenmeden önce profil, {0} dosyasından içe aktarılamaz." +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-code yüklenirken başka bir dosya açılamaz. {0} içe aktarma atlandı" @@ -634,6 +719,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "UFP dosyasına yazamıyor:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "İptal Et" + msgctxt "@button" msgid "Cancel" msgstr "İptal" @@ -694,8 +783,21 @@ msgctxt "@label" msgid "Checking..." msgstr "Kontrol ediliyor..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Bellenim güncellemelerini denetler." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." msgctxt "@action:inmenu menubar:edit" @@ -774,6 +876,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Sıkıştırılmış G-code Dosyası" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Sıkıştırılmış G-code Okuyucusu" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Sıkıştırılmış G-code Yazıcısı" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Yapılandırma Değişiklikleri" @@ -810,6 +920,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "Çap Değişikliğini Onayla" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "Kaldırmayı Onayla" + msgctxt "@action:button" msgid "Connect" msgstr "Bağlan" @@ -842,6 +956,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Bulut üzerinden bağlı" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker Topluluğundan yardım alın." @@ -882,6 +1000,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "{device} üzerine yazmaya çalışırken dosya adı bulunamadı." @@ -894,6 +1013,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "Sunucunun yanıtı yorumlanamadı." +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "Pazar Yerine ulaşılamadı." @@ -906,6 +1029,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Malzeme arşivi {} konumuna kaydedilemedi:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "{0} dosyasına kaydedilemedi: {1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" @@ -914,17 +1043,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Veri yazıcıya yüklenemedi." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}\nİşlem yürütme izni yok." +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"EnginePlugin başlatılamadı: {self._plugin_id}\n" +"İşlem yürütme izni yok." +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}\nİşletim sistemi tarafından engelleniyor (antivirüs?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"EnginePlugin başlatılamadı: {self._plugin_id}\n" +"İşletim sistemi tarafından engelleniyor (antivirüs?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}\nKaynak geçici olarak kullanılamıyor" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"EnginePlugin başlatılamadı: {self._plugin_id}\n" +"Kaynak geçici olarak kullanılamıyor" msgctxt "@title:window" msgid "Crash Report" @@ -966,6 +1110,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library'de baskı projeleri oluşturun." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Yedeklemeniz oluşturuluyor..." @@ -978,10 +1126,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura Yedeklemeleri" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura Profili" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura Profil Okuyucu" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profili Yazıcı" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura Projesi 3MF dosyası" @@ -994,13 +1154,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura başlatılamıyor" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti." msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir.\nCura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir.\n" +"Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" msgctxt "@label" msgid "Cura language" @@ -1010,6 +1175,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura sürümü" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Arka Uç" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Para Birimi:" @@ -1090,10 +1267,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "Varsayılan" -msgctxt "@label" -msgid "Default" -msgstr "Varsayılan" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "Farklı bir profile geçerken değişen ayar değerleriyle ilgili varsayılan davranış: " @@ -1266,10 +1439,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "Çıkar" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Çıkarılabilir aygıtı çıkar {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz." @@ -1294,6 +1469,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Etkin" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." + msgctxt "@title:label" msgid "End G-code" msgstr "G-code’u Sonlandır" @@ -1322,6 +1501,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "Yazıcınızın IP adresini girin." +msgctxt "@info:title" +msgid "Error" +msgstr "Hata" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "Hata geri izleme" @@ -1366,6 +1549,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Dışa aktarma başarılı" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil {0} dosyasına aktarıldı" @@ -1374,6 +1558,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "UltiMaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" + msgctxt "@label" msgid "Extruder" msgstr "Ekstrüder" @@ -1410,6 +1598,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Yazıcılarla senkronize edilecek malzeme arşivi oluşturulamadı." +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir." @@ -1418,22 +1607,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Malzemenin %1 dosyasına dışa aktarımı başarısız oldu: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: Yazıcı eklentisinde rapor edilen hata." +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu: {1}" @@ -1466,6 +1660,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "Filaman ağırlığı" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "Dosya Zaten Mevcut" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "Dosya Kaydedildi" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Dosya {0} geçerli bir profil içermemekte." @@ -1498,6 +1701,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Aygıt Yazılımı Güncellemesi" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Bellenim Güncelleme Denetleyicisi" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aygıt Yazılımı Güncelleyici" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Yazıcı bağlantısı aygıt yazılımını yükseltmeyi desteklemediği için aygıt yazılımı güncellenemiyor." @@ -1594,6 +1805,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code dosyası" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code Profil Okuyucu" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code Okuyucu" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code Yazıcı" + msgctxt "@label" msgid "G-code flavor" msgstr "G-code türü" @@ -1626,6 +1849,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "Portal Yüksekliği" +msgctxt "@title:tab" +msgid "General" +msgstr "Genel" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Modelde çıkıntılı olan kısımlarını desteklemek için yapılar oluşturun. Bu yapılar olmadan, bu parçalar baskı sırasında çökecektir." @@ -1658,6 +1885,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Izgara Yerleşimi" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grup #{group_nr}" @@ -1730,6 +1958,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Yazıcınız listede yoksa ağ yazdırma sorun giderme kılavuzunu okuyun" +msgctxt "name" +msgid "Image Reader" +msgstr "Resim Okuyucu" + msgctxt "@action:button" msgid "Import" msgstr "İçe Aktar" @@ -1978,6 +2210,10 @@ msgctxt "@action" msgid "Learn more" msgstr "Daha fazla bilgi edinin" +msgctxt "@action:button" +msgid "Learn more" +msgstr "Daha fazla bilgi edinin" + msgctxt "@button" msgid "Learn more" msgstr "Daha fazla bilgi edinin" @@ -2006,6 +2242,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Sol görünüm" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Eski Cura Profil Okuyucu" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Geliştiricileri sorunlarla ilgili bilgilendirin." @@ -2086,6 +2326,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Günlükler" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Yazıcı bağlantısı koptu" @@ -2094,6 +2338,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Makine Ayarları" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Makine Ayarları eylemi" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Makineler" @@ -2106,6 +2354,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "Dosya göndermeden önce g-code’un yazıcınız ve yazıcı yapılandırmanız için uygun olduğundan emin olun. G-code temsili doğru olmayabilir." +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "Malzemeleri Yönet..." @@ -2154,6 +2418,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "UltiMaker Cura eklentilerinizi ve malzeme profillerini burada yönetin. Eklentilerinizi güncel tuttuğunuzdan ve ayarınızı düzenli olarak yedeklediğinizden emin olun." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMaker ağındaki yazıcılar için ağ bağlantılarını yönetir." + msgctxt "@label" msgid "Manufacturer" msgstr "Üretici" @@ -2166,6 +2438,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mağaza" +msgctxt "name" +msgid "Marketplace" +msgstr "Mağaza" + msgctxt "@action:label" msgid "Material" msgstr "Malzeme" @@ -2182,6 +2458,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Malzeme Rengi" +msgctxt "name" +msgid "Material Profiles" +msgstr "Malzeme Profilleri" + msgctxt "@label" msgid "Material Type" msgstr "Malzeme Türü" @@ -2226,6 +2506,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Mod" +msgctxt "name" +msgid "Model Checker" +msgstr "Model Kontrol Edici" + msgctxt "@info:title" msgid "Model Errors" msgstr "Model hataları" @@ -2242,6 +2526,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Görüntüle" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Görüntüleme Aşaması" + msgctxt "@action:button" msgid "Monitor print" msgstr "Baskı izleme" @@ -2316,6 +2604,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "Ağ hatası" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı" @@ -2328,6 +2617,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Yeni UltiMaker yazıcılar Digital Factory’ye bağlanabilir ve uzaktan izlenebilir." +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." @@ -2374,6 +2664,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Maliyet tahmini yok" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0} dosyasında içe aktarılabilecek özel profil yok" @@ -2482,6 +2773,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "Ekstrüder Sayısı" +msgctxt "@action:button" +msgid "OK" +msgstr "Tamam" + msgctxt "@label" msgid "OS language" msgstr "İşletim sistemi dili" @@ -2502,6 +2797,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Yalnızca Üst Katmanları Göster" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "Aynı anda yalnızca bir G-code dosyası yüklenebilir. {0} içe aktarma atlandı" @@ -2635,7 +2931,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "Panodan yapıştır" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "Duraklat" @@ -2660,6 +2955,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Model Başına Ayarlar" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Model Başına Ayarlar Aracı" + msgid "Perspective" msgstr "Perspektif" @@ -2696,8 +2995,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin." msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "Lütfen yazıcınızda bağlantı olduğundan emin olun:\n- Yazıcının açık olup olmadığını kontrol edin.\n- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"Lütfen yazıcınızda bağlantı olduğundan emin olun:\n" +"- Yazıcının açık olup olmadığını kontrol edin.\n" +"- Yazıcının ağa bağlı olup olmadığını kontrol edin.\n" +"- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." msgctxt "@text" msgid "Please name your printer" @@ -2711,6 +3018,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "Bu profil için lütfen bir ad girin." +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "Eklenti lisansını okuyun ve kabul edin." @@ -2720,8 +3031,16 @@ msgid "Please remove the print" msgstr "Lütfen yazıcıyı çıkarın" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:\n- Yapı hacmine sığma\n- Etkin bir ekstrüdere atanma\n- Değiştirici kafesler olarak ayarlanmama" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:\n" +"- Yapı hacmine sığma\n" +"- Etkin bir ekstrüdere atanma\n" +"- Değiştirici kafesler olarak ayarlanmama" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2771,6 +3090,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Son İşleme" +msgctxt "name" +msgid "Post Processing" +msgstr "Son İşleme" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Son İşleme Uzantısı" @@ -2787,6 +3110,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Hazırla" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Hazırlık Aşaması" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Hazırlanıyor..." @@ -2807,6 +3134,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Önizleme" +msgctxt "name" +msgid "Preview Stage" +msgstr "Öz İzleme Aşaması" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Astarlama Direği" @@ -2935,6 +3266,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "Yazıcı ayarları, projeyle birlikte kaydedilen ayarlarla eşleşecek şekilde güncellenir." +msgctxt "@title:tab" +msgid "Printers" +msgstr "Yazıcılar" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "Digital Factory'den eklenen yazıcılar:" @@ -2995,6 +3330,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profil ayarları" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} öğesinde bilinmeyen bir dosya türü var veya profil bozuk." @@ -3019,18 +3355,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programlama dili" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Proje dosyası {0} bilinmeyen bir makine tipi içeriyor: {1}. Makine alınamıyor. Bunun yerine modeller alınacak." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Proje dosyası {0} bozuk: {1}." +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "{0} proje dosyası, Ultimaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış." +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "{0} proje dosyası aniden erişilemez oldu: {1}." @@ -3039,6 +3379,106 @@ msgctxt "@label" msgid "Properties" msgstr "Özellikler" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura’da görüntüleme aşaması sunar." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Normal gerçek bir ağ görünümü sağlar." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura’da hazırlık aşaması sunar." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura’da ön izleme aşaması sunar." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura profillerinin dışa aktarılması için destek sağlar." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura profillerinin içe aktarılması için destek sağlar." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF dosyalarının okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF dosyalarının okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D dosyalarının okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Model dosyalarını okuma desteği sağlar." + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "3MF dosyalarının yazılması için destek sağlar." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Model Başına Ayarları sağlar." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen Görüntüsü sağlar." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt Sürümü" @@ -3059,6 +3499,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt Sürümü" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil." @@ -3075,6 +3516,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 uygulamasından çık" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Bir sıkıştırılmış arşivden g-code okur." + msgctxt "@button" msgid "Recommended" msgstr "Önerilen" @@ -3127,6 +3572,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Çıkarılabilir Sürücü" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" + msgctxt "@action:button" msgid "Remove" msgstr "Kaldır" @@ -3143,6 +3592,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "Yeniden adlandır" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "Profili Yeniden Adlandır" @@ -3279,14 +3732,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Çıkarılabilir Sürücüye Kaydet" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi" +msgctxt "@info:title" +msgid "Saving" +msgstr "Kaydediliyor" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Çıkarılabilir Sürücü {0} Üzerine Kaydediliyor" @@ -3379,6 +3839,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Malzemeler yazıcıya gönderiliyor" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Nöbetçi Günlükçü" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seri iletişim kitaplığı" @@ -3411,6 +3875,10 @@ msgctxt "@label" msgid "Settings" msgstr "Ayarlar" +msgctxt "@title:tab" +msgid "Settings" +msgstr "Ayarlar" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "Ayarlar, ekstrüderlerin mevcut kullanılabilirliğine uyacak şekilde değiştirildi:" @@ -3571,6 +4039,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMaker platformuna giriş yapın" +msgctxt "name" +msgid "Simulation View" +msgstr "Simülasyon Görünümü" + msgctxt "@tooltip" msgid "Skin" msgstr "Yüzey Alanı" @@ -3599,6 +4071,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Ayarlar değiştirilirken otomatik olarak dilimle." +msgctxt "name" +msgid "Slice info" +msgstr "Dilim bilgisi" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Dilimleme başarısız" @@ -3615,13 +4091,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "Düzeltme" +msgctxt "name" +msgid "Solid View" +msgstr "Gerçek Görünüm" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Gerçek görünüm" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n\nBu ayarları görmek için tıklayın." +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.\n" +"\n" +"Bu ayarları görmek için tıklayın." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3636,8 +4122,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "1 kapsamında tanımlanan bazı ayar değerleri geçersiz kılındı." msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n\nProfil yöneticisini açmak için tıklayın." +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır.\n" +"\n" +"Profil yöneticisini açmak için tıklayın." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3663,8 +4155,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "Cura'ya Sponsor Olun" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "Cura'ya Sponsor Olun" @@ -3709,6 +4199,10 @@ msgctxt "@label" msgid "Strength" msgstr "Sağlamlık" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Malzeme %1 dosyasına başarıyla dışa aktarıldı" @@ -3717,6 +4211,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Malzeme %1 dosyasına başarıyla içe aktarıldı" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "{0} profili başarıyla içe aktarıldı." @@ -3737,6 +4232,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Destek Engelleyici" +msgctxt "name" +msgid "Support Eraser" +msgstr "Destek Silici" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Destek Dolgusu" @@ -3843,6 +4342,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "Yedekleme maksimum dosya boyutunu aşıyor." +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "Dengeli profil, verimlilik, yüzey kalitesi, mekanik özellikler ve boyutsal doğruluk arasında bir denge kurmayı amaçlar." + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "Tabanın yapı levhasından milimetre cinsinden yüksekliği." @@ -3899,6 +4402,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "Yeni yazıcıları olan aygıt yazılımı gönderimi yararlı olmaktadır, ancak yeni sürümler daha fazla özellik ve geliştirmeye eğilimlidir." @@ -3958,8 +4466,22 @@ msgid "The nozzle inserted in this extruder." msgstr "Bu ekstrudere takılan nozül." msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Baskı dolgu malzemesinin deseni:\n\nİşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin.\n\nÇok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz.\n\nBirden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"Baskı dolgu malzemesinin deseni:\n" +"\n" +"İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin.\n" +"\n" +"Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz.\n" +"\n" +"Birden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4111,6 +4633,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir." +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Bu {0} profili yanlış veri içeriyor, içeri aktarılamadı." @@ -4124,8 +4647,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Bu proje şu anda Cura'da yüklü olmayan materyal veya eklentiler içeriyor.
    Eksik paketleri kurun ve projeyi yeniden açın." msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "Bu ayarın değeri profilden farklıdır.\n\nProfil değerini yenilemek için tıklayın." +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"Bu ayarın değeri profilden farklıdır.\n" +"\n" +"Profil değerini yenilemek için tıklayın." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4142,8 +4671,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan değiştirildiğinde tüm ekstrüderler için değer değiştirir." msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n\nHesaplanan değeri yenilemek için tıklayın." +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var.\n" +"\n" +"Hesaplanan değeri yenilemek için tıklayın." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4169,6 +4704,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Malzeme profillerini Digital Factory'ye bağlı tüm yazıcılarınızla otomatik olarak senkronize etmek için Cura'da oturum açmanız gerekir." +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin" @@ -4181,6 +4717,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz." +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin" @@ -4229,6 +4766,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Uygun veri veya meta veri olmadan Cura yedeği geri yüklenmeye çalışıldı." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Okuyucu" + msgctxt "@button" msgid "Troubleshooting" msgstr "Sorun giderme" @@ -4245,10 +4786,26 @@ msgctxt "@action:label" msgid "Type" msgstr "Tür" +msgctxt "@label" +msgid "Type" +msgstr "Tür" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP Okuyucu" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UPF Yazıcı" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB yazdırma" +msgctxt "name" +msgid "USB printing" +msgstr "USB yazdırma" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker hesabı" @@ -4265,6 +4822,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Biçim Paketi" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimaker Ağ Bağlantısı" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker Tarafından Doğrulanmış Paket" @@ -4273,6 +4834,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker Tarafından Doğrulanmış Eklenti" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ultimaker makine eylemleri" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker yazıcı" @@ -4285,6 +4850,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Profil eklenemiyor." @@ -4293,13 +4862,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Yapılan hacim içinde tüm nesneler için konum bulunamadı" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "{self._plugin_id} için yürütülebilir yerel EnginePlugin sunucusu bulunamıyor" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}\nErişim reddedildi." +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}\n" +"Erişim reddedildi." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4321,10 +4896,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "İlk direk veya ilk konum(lar) geçersiz olduğu için dilimlenemiyor." +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "Modele özgü ayarlar nedeniyle dilimlenemedi. Şu ayarlar bir veya daha fazla modelde hataya yol açıyor: {error_labels}" @@ -4333,6 +4910,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Mevcut malzeme, seçilen makine veya yapılandırma ile uyumlu olmadığından mevcut malzeme ile dilimlenemedi." +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Geçerli ayarlarla dilimlenemiyor. Şu ayarlarda hata var: {0}" @@ -4381,6 +4959,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Bilinmeyen Paket" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Baskı işi yüklenirken bilinmeyen hata kodu: {0}" @@ -4445,13 +5024,117 @@ msgctxt "@button" msgid "Updating..." msgstr "Güncelleniyor..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "Özel Aygıt Yazılımı Yükle" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "Baskı işi yazıcıya yükleniyor." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "Özel Aygıt Yazılımı Yükle" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "Baskı işi yazıcıya yükleniyor." msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4477,6 +5160,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "Kullanım kütüphanesi, Voronoi oluşturma dâhil" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1’den 2.2’ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2’den 2.4’e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7’den 3.0’a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0'dan 3.1'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2'dan 3.3'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3'dan 3.4'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4’ten 3.5’e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5’ten 4.0’a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0’dan 4.1’e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11'den 4.12'ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13'ten 5.0'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2'den 4.3'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3'ten 4.4'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4'ten 4.5'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7'den 4.8'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8'den 4.9'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9'dan 4.10'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2'dan 5.3'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3'ten 5.4'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4'ten 5.5'e Sürüm Yükseltme" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Yazıcıları Digital Factory’de görüntüleyin" @@ -4525,6 +5312,11 @@ msgctxt "@button" msgid "Want more?" msgstr "Daha fazla seçenek görüntülemek ister misiniz?" +msgctxt "@info:title" +msgid "Warning" +msgstr "Uyarı" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Uyarı: Profilin '{0}' kalite tipi, mevcut yapılandırma için kullanılabilir olmadığından profil görünür değil. Bu kalite tipini kullanabilen malzeme/nozül kombinasyonuna geçiş yapın." @@ -4585,6 +5377,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Genişlik (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-code’u bir sıkıştırılmış arşive yazar." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-code’u bir dosyaya yazar." + msgctxt "@label" msgid "X (Width)" msgstr "X (Genişlik)" @@ -4597,6 +5397,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen Görüntüsü" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgen Görüntüsü" @@ -4609,6 +5413,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D Dosyası" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D Okuyucu" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Derinlik)" @@ -4626,19 +5434,33 @@ msgid "Yes" msgstr "Evet" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" +"Devam etmek istediğinizden emin misiniz?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" -msgstr[1] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" +"Devam etmek istediğinizden emin misiniz?" +msgstr[1] "" +"{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" +"Devam etmek istediğinizden emin misiniz?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Ultimaker Connect çalıştırmayan bir yazıcıya bağlanmaya çalışıyorsunuz. Lütfen yazıcının donanım yazılımını son sürüme güncelleyin." +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "{0} ile bağlantı kurmayı deniyorsunuz ancak cihaz bir grubun ana makinesi değil. Bu cihazı grup ana makinesi olarak yapılandırmak için web sayfasını ziyaret edebilirsiniz." @@ -4649,7 +5471,10 @@ msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğm msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Bazı profil ayarlarını özelleştirdiniz.\nProfiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\nAlternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." +msgstr "" +"Bazı profil ayarlarını özelleştirdiniz.\n" +"Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?\n" +"Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4679,9 +5504,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Yeni yazıcınız Cura’da otomatik olarak görünecektir" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı.\n Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı.\n" +" Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" msgctxt "@label" msgid "Z" @@ -4739,6 +5569,7 @@ msgctxt "@label" msgid "version: %1" msgstr "sürüm: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak." @@ -4747,630 +5578,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} eklenti indirilemedi" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura profillerinin dışa aktarımı için destek sağlar." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profili Yazıcı" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." - -msgctxt "name" -msgid "Slice info" -msgstr "Dilim bilgisi" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "Varsayılan" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Eski Cura Profil Okuyucu" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Okuyucu" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UPF Yazıcı" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5’ten 4.0’a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7'den 4.8'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9'dan 4.10'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2'dan 3.3'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7’den 3.0’a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11'den 4.12'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8'den 4.9'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3'ten 4.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3'dan 3.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4'ten 4.5'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1’den 2.2’ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2'den 4.3'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2'dan 5.3'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0’dan 4.1’e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2’den 2.4’e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4’ten 3.5’e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13'ten 5.0'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4'ten 5.5'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0'dan 3.1'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3'ten 5.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" - -msgctxt "name" -msgid "Post Processing" -msgstr "Son İşleme" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura profillerinin içe aktarılması için destek sağlar." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura Profil Okuyucu" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Model Başına Ayarları sağlar." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Model Başına Ayarlar Aracı" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura’da ön izleme aşaması sunar." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Öz İzleme Aşaması" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Destek Silici" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code Okuyucu" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Malzeme Profilleri" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Ultimaker makine eylemleri" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen Görüntüsü sağlar." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen Görüntüsü" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker ağındaki yazıcılar için ağ bağlantılarını yönetir." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ultimaker Ağ Bağlantısı" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Makine Ayarları eylemi" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Model dosyalarını okuma desteği sağlar." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Okuyucu" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." - -msgctxt "name" -msgid "Marketplace" -msgstr "Mağaza" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura’da görüntüleme aşaması sunar." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Görüntüleme Aşaması" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." - -msgctxt "name" -msgid "Image Reader" -msgstr "Resim Okuyucu" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aygıt Yazılımı Güncelleyici" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Arka Uç" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura’da hazırlık aşaması sunar." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Hazırlık Aşaması" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Bellenim güncellemelerini denetler." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Bellenim Güncelleme Denetleyicisi" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-code’u bir dosyaya yazar." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code Yazıcı" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." - -msgctxt "name" -msgid "Model Checker" -msgstr "Model Kontrol Edici" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF Okuyucu" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." - -msgctxt "name" -msgid "USB printing" -msgstr "USB yazdırma" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Okuyucu" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code Profil Okuyucu" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Normal gerçek bir ağ görünümü sağlar." - -msgctxt "name" -msgid "Solid View" -msgstr "Gerçek Görünüm" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Nöbetçi Günlükçü" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Bir sıkıştırılmış arşivden g-code okur." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Sıkıştırılmış G-code Okuyucusu" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP Okuyucu" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "3MF dosyalarının yazılması için destek sağlar." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Yazıcı" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-code’u bir sıkıştırılmış arşive yazar." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Sıkıştırılmış G-code Yazıcısı" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura profillerinin dışa aktarılması için destek sağlar." - -msgctxt "@info:title" -msgid "Error" -msgstr "Hata" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "İptal Et" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "Ayarlar" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "Daha fazla bilgi edinin" - -msgctxt "@title:tab" -msgid "General" -msgstr "Genel" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1’i kaldırmak istediğinizden emin misiniz? Bu eylem geri alınamaz!" - -msgctxt "@label" -msgid "Type" -msgstr "Tür" - -msgctxt "@info:title" -msgid "Saving" -msgstr "Kaydediliyor" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "Dosya Zaten Mevcut" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "Tüm desteklenen türler ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "{0} dosyasına kaydedilemedi: {1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "Tamam" - -msgctxt "@info:title" -msgid "Warning" -msgstr "Uyarı" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "Yazıcılar" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "Dosya Kaydedildi" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "Kaldırmayı Onayla" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "Tüm Dosyalar (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "Dengeli" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "Dengeli profil, verimlilik, yüzey kalitesi, mekanik özellikler ve boyutsal doğruluk arasında bir denge kurmayı amaçlar." +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "Cura profillerinin dışa aktarımı için destek sağlar." diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index 5377de408c4..3fe29072e87 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,170 +12,170 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "Ekstrüder" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ekstrüder Yazıcı Soğutma Fanı" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın." -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin." +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "Ekstrüder" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Ekstruder G-Code'u Sonlandırma" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Ekstruderin Mutlak Bitiş Konumu" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Ekstruderin X Bitiş Konumu" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Ekstruderin Y Bitiş Konumu" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ekstrüder Yazıcı Soğutma Fanı" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Ekstruder G-Code'u Başlatma" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Ekstruderin Mutlak Başlangıç Konumu" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "Ekstruder X Başlangıç Konumu" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı." - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "Ekstruder Y Başlangıç Konumu" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." + +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" + +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozül Kimliği" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Nozül NX Ofseti" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Nozül ofsetinin x koordinatı." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Nozül Y Ofseti" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "Nozül ofsetinin y koordinatı." +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." -msgctxt "material label" -msgid "Material" -msgstr "Malzeme" - -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin." -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı." -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Nozül ofsetinin x koordinatı." -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı." -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "Nozül ofsetinin y koordinatı." -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 8499d1a8c74..586fe3b3db6 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5470 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Makine Türü" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "Modelin kenarlarından bırakılması gereken mesafe. Ağın kenarlarına kadar ütülemek baskınızın kenarlarının pürüzlü olmasına neden olabilir." -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3B yazıcı modelinin adı." +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Besleme ünitesi ile nozül haznesi arasına sıkıştırılacak filamenti belirten faktördür ve filament değişimi için malzemenin ne kadar hareket ettirileceğini belirlemek için kullanılır." -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Makine Varyantlarını Göster" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Üst yüzey katmanları çizgi veya zikzak biçimindeyken kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında tekrar başa dönülür. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi." +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Üst/alt katmanlar çizgi veya zikzak şekillerini kullandığında kullanılacak tam sayı çizgi yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code’u Başlat" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar listenin boş olmasıdır ve bu durumda varsayılan açı 0'dır." -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları\n." +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Listedeki öğeler katmanlar ilerledikçe sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code’u Sonlandır" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "En son çalıştırılacak G-code komutları (\n ile ayrılır)." +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID malzeme" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "Kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar kullanılır (çizgiler ve zikzak şekiller için 45 ve 135 derece; diğer tüm şekiller için 45 derece)." -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." +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." -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Yapı Levhasının Isınmasını Bekle" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi." -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe." +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır." -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Nozülün Isınmasını Bekle" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Mutlak Ekstruder İlk Konumu" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Malzeme Sıcaklıklarını Ekle" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Uyarlanabilir Katmanların Azami Değişkenliği" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Gcode başlangıcında nozül sıcaklık komutlarını ekleyip eklememe. start_gcode zaten nozül sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Uyarlanabilir Katman Topografisi Boyutu" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığını Ekle" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Gcode başlangıcında yapı levhası sıcaklık komutlarını ekleyip eklememe. start_gcode zaten yapı levhası sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar." -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Makine Genişliği" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz.\n" +"Bu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir." -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Yazdırılabilir alan genişliği (X yönü)." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Makine Derinliği" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "Yapışma Eğilimi" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Yazdırılabilir alan derinliği (Y yönü)." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını yüzey hatlarının hat genişliği ile en içteki duvarın bir yüzdesi olarak ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, %50’nin üstündeki yüzdelerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Makine Yüksekliği" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, duvar kalınlığının yarısından fazla değerlerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Yapı Levhası Şekli" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısının çatılarının ve zeminlerinin yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli." +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar sağlar, ancak desteklerin çıkarılması daha zordur. Çok yüksek değerler için Destek Çatısı’nı kullanın veya destek yoğunluğunun en üstte benzer şekilde yüksek olmasını sağlayın." -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Dikdörtgen" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır." -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Eliptik" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Yapı Levhası Malzemesi" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Yazıcıya takılı yapı levhasının malzemesi." +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin." -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cam" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Makine bir ekstruderden diğerine geçtikten sonra, nozül ve baskı arasında açıklık oluşması için yapı levhası indirilir. Nozülün baskı dışına malzeme sızdırmasını önler." -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alüminyum" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tümü" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Isıtılmış Yapı Levhası İçerir" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "Tümünü birden" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı." +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternatif Ek Duvar" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternatif Örgü Giderimi" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "Duvar Yönlerini Değiştir" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "Duvar yönlerini her katmanda ve iç dolguda değiştirin. Metal baskıdaki gibi stres oluşturabilen malzemeler için kullanışlıdır." + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alüminyum" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "Her Zaman Aktif Aracı Yaz" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Aktif olmayan araca geçici komut gönderildikten sonra aktif aracı yazın. Smoothie veya modal araç komutlarına sahip diğer donanım yazılımları ile Çift Ekstrüderli baskı için gereklidir." +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Dış duvar başlatmaya giderken her zaman geri çeker." -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Merkez Nokta" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Her katmandaki poligonlara uygulanan ofset miktarı. Pozitif değerler büyük boşlukları telafi ederken negatif değerler küçük boşlukları telafi edebilir." -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı." +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir." -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Ekstrüder Sayısı" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Her katmandaki tüm destek poligonlarına uygulanan ofset miktarı. Pozitif değerler destek alanlarını pürüzsüzleştirebilir ve daha sağlam destek sağlayabilir." -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur." +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Destek zeminlerine uygulanan ofset miktarı." -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Etkinleştirilmiş Ekstruder Sayısı" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Destek çatılarına uygulanan ofset miktarı." -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Dış Nozül Çapı" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı." -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Nozül ucunun dış çapı." +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçapa ekleme. Büyük değerler modelin sınırının yanında daha kalın küçük küp kalkanları oluşmasına neden olur." -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozül Uzunluğu" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Çıkıntı Önleme Örgüsü" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı." +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Sızma Önleme Geri Çekme Mesafesi" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozül Açısı" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Sızma Önleme Geri Çekme Hızı" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı." +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler." -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Isı Bölgesi Uzunluğu" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Modellerin temas ettiği yerlerde, iç içe geçen bir kiriş yapısı oluşturun. Bu, özellikle farklı malzemelerden basılmış modellerde, modeller arasındaki yapışmayı iyileştirir." -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe." +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Hareket Sırasında Destekleri Atla" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Cura üzerinden sıcaklığın kontrol edilip edilmeme ayarı. Nozül sıcaklığını Cura dışından kontrol etmek için bu ayarı kapalı konuma getirin." +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Geri" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Isınma Hızı" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Sol Arka" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Ortalama nozül ısınmasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Sağ Arka" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Soğuma hızı" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Ortalama nozül soğumasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Her İkisi" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimum Sürede Bekleme Sıcaklığı" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Her ikisi de çakışıyor" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Nozül soğumadan önce ekstruderin etkin olmaması gerektiği minimum süre. Ekstruder sadece bu süreden daha uzun bir süre kullanılmadığında bekleme sıcaklığına inebilecektir." +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Alt katmanlar" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code türü" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Alt Şekil İlk Katmanı" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Oluşturulacak g-code türü." +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Alt Yüzey Genişleme Mesafesi" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Alt Yüzey Kaldırma Genişliği" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volümetrik)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Alt Kalınlık" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Dal Yoğunluğu" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Dal Çapı" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Dal Çapı Açısı" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Durma Payına Uygun Geri Çekme Hızı" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Kopma Hazırlığı Sıcaklığı" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Kopma Geri Çekme Mesafesi" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Üretici Yazılımı Geri Çekme" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Kopma Geri Çekme Hızı" -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ğı." +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Kopma Sıcaklığı" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Ekstrüderler Isıtıcıyı Paylaşır" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Parçalarda Döküm Desteği" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı." +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Köprü Fan Hızı" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Ekstrüder Nozül Paylaşımı" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Köprüde Birden Fazla Katman Var" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Ekstrüderlerin tek bir nozülü mü paylaşacağı yoksa her bir ekstrüderin kendi nozülü mü olacağıdır. True olarak ayarlandığında printer-start gcode betiğinin tüm ekstrüderleri bilinen ve karşılıklı olarak uyumlu olan bir ilk geri çekme durumunda (sıfır veya geri çekilmemiş bir filament) düzgün bir şekilde ayarlaması beklenir. Bu durumda ilk geri çekme, ekstrüder başına \"machine_extruders_shared_nozzle_initial_retraction\" parametresi ile açıklanır." +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Paylaşılan Nozül İlk Geri Çekme" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Printer-start gcode betiğinin tamamlanmasında her bir ekstrüder filamentinin paylaşılan nozül ucundan ne kadar geri çekildiğinin varsayıldığıdır. Değer, nozül kanallarının ortak parçasının uzunluğuna eşit veya daha büyük olmalıdır." +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Köprü İkinci Yüzey Alanı Akışı" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "İzin Verilmeyen Alanlar" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Köprü İkinci Yüzey Alanı Hızı" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi." +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Köprü Yüzey Alanı Yoğunluğu" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Nozül İzni Olmayan Alanlar" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Köprü Yüzey Alanı Akışı" -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." +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Köprü Yüzey Alanı Hızı" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Makinenin Başlığı ve Fan Poligonu" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Köprü Yüzey Alanı Destek Eşiği" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Baskı kafasının şekli. Bunlar baskı kafasının konumuna göre koordinatlardır ve genellikle ilk ekstrüderin konumunu gösterir. Baskı kafasının sol ve önündeki boyutlar negatif koordinatlar olmalıdır." +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Portal Yüksekliği" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Ekstruder Ofseti" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Mutlak Ekstruder İlk Konumu" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maksimum X Hızı" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X yönü motoru için maksimum hız." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maksimum Y Hızı" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y yönü motoru için maksimum hız." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maksimum Z Hızı" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z yönü motoru için maksimum hız." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maksimum Hız E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Filamanın maksimum hızı." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maksimum X İvmesi" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X yönü motoru için maksimum ivme" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maksimum Y İvmesi" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y yönü motoru için maksimum ivme." +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maksimum Z İvmesi" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z yönü motoru için maksimum ivme." +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Köprü Üçüncü Yüzey Alanı Akışı" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maksimum Filaman İvmesi" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Hızı" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Filaman motoru için maksimum ivme." +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Köprü Duvarı Tarama" -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Varsayılan İvme" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Köprü Duvarı Akışı" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Köprü Duvarı Hızı" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Varsayılan X-Y Salınımı" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Kenar" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Yatay düzlemdeki hareketler için varsayılan salınım." +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Uç Mesafesi" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Varsayılan Z Salınımı" +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "Kenar İçi Kaçınma Payı" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z yönü motoru için varsayılan salınım." +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Kenar Hattı Sayısı" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Varsayılan Filaman Salınımı" +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "Sadece Dış Kısımdaki Kenar" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Filaman motoru için varsayılan salınım." +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Kenar, Desteği Değiştirir" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Milimetre Başına Adım (X)" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Kenar Genişliği" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı." +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Milimetre Başına Adım (Y)" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Yapı Levhası Yapıştırma Ekstruderi" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı." +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Yapı Levhası Türü" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Milimetre Başına Adım (Z)" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Yapı Levhası Malzemesi" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı." +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Yapı Levhası Şekli" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Milimetre Başına Adım (E)" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığı" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı." +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "İlk Katman Yapı Levhası Sıcaklığı" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X Kapaması Pozitif Yönde" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Yapı Disk Bölümü Sıcaklığı" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X ekseninin kapamasının pozitif yönde mi (yüksek X koordinatı) yoksa negatif yönde mi (düşük X koordinatı) olduğu." +msgctxt "center_object label" +msgid "Center Object" +msgstr "Nesneyi ortalayın" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y Kapaması Pozitif Yönde" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "En az desteğin istenmesi için yazdırılan modelin geometrisini değiştirin. Dik çıkıntılar sığlaşacaktır. Çıkıntılı alanlar daha dikey biçimde olmak için alçalacaktır." -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y ekseninin kapamasının pozitif yönde mi (yüksek Y koordinatı) yoksa negatif yönde mi (düşük Y koordinatı) olduğu." +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z Kapaması Pozitif Yönde" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Tarama Hızı" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z ekseninin kapamasının pozitif yönde mi (yüksek Z koordinatı) yoksa negatif yönde mi (düşük Z koordinatı) olduğu." +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Tarama Hacmi" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimum Besleme Hızı" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Tarama, ekstrüzyon yolunun son parçasını hareket parça ile değiştirir. Dizimli azaltmak amacıyla sızdırılan malzeme ekstrüzyon yolunun son parçasını yazdırmak için kullanılır." -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Yazıcı başlığının minimum hareket hızı." +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Tarama Modu" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Besleyici Çark Çapı" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa malzeme geri çekilecektir, nozül ise bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapılmayabilir veya sadece dolgu içerisinde tarama yapılabilir." -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Besleyiciye malzeme veren çarkın çapı." +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Komut Satırı Ayarları" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin." +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "resolution label" -msgid "Quality" -msgstr "Kalite" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Katman Yüksekliği" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Her katmanın milimetre cinsinden yüksekliği. Daha yüksek değerler düşük çözünürlükte hızlı baskılar üretir; daha düşük değerler ise yüksek çözünürlükte daha yavaş baskılar üretir." +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "İlk Katman Yüksekliği" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır." +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "line_width label" -msgid "Line Width" -msgstr "Hat Genişliği" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Eş merkezli" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Tek bir hattın genişliği Genellikle her hattın genişliği nozül genişliğine eşit olmalıdır. Ancak, bu değeri biraz azaltmak daha iyi baskılar üretilmesini sağlayabilir." +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Konik Destek Açısı" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Duvar Hattı Genişliği" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Koni Desteğinin Minimum Genişliği" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Tek bir duvar hattının genişliği." +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Dolgu Hatlarını Bağlayın" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Dış Duvar Hattı Genişliği" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Dolgu Poligonlarını Bağla" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "En dıştaki duvar hattının genişliği. Bu değeri azaltarak daha yüksek seviyede ayrıntılar yazdırılabilir." +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Destek Çizgilerini Bağla" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "İç Duvar(lar) Hattı Genişliği" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Destek Zikzaklarını Bağla" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği." +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Üst/Alt Poligonları Bağla" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Üst/Alt Hat Genişliği" +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Yan yana giden dolgu yollarını bağla. Birkaç kapalı poligondan oluşan dolgu şekilleri için bu ayarı etkinleştirmek hareket süresini büyük ölçüde kısaltır." -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Tek bir üst/alt hattın genişliği." +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır." -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Dolgu Hattı Genişliği" +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Destek çizgilerinin uçlarını birbirine bağlayın. Bu ayarın etkinleştirilmesi, desteğinizi daha sağlam hale getirebilir ve ekstruzyonu azaltabilir ancak bu daha fazla malzemeye mal olacaktır." -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Tek bir dolgu hattının genişliği." +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Etek/Kenar Hattı Genişliği" +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir." -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Tek bir etek veya kenar hattının genişliği." +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar. Akıllı Gizleme, hem iç hem de dış köşelere izin verir ancak uygun olduğu durumlarda iç köşeleri daha sık seçer." -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Destek Hattı Genişliği" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Her bir dolgu hattını bu sayıda hatta dönüştür. Ekstra hatlar birbirlerini kesmez, birbirlerinden bağımsız kalırlar. Bu dolguyu sertleştirir, ancak yazdırma süresini uzatırken materyal kullanımını artırır." -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Tek bir destek yapısı hattının genişliği." +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Soğuma hızı" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Destek Arayüz Hattı Genişliği" +msgctxt "cooling description" +msgid "Cooling" +msgstr "Soğuma" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Destek çatısı veya zemininin tek çizgi genişliği." +msgctxt "cooling label" +msgid "Cooling" +msgstr "Soğuma" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Destek Çatısı Çizgi Genişliği" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Çapraz" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Tek bir destek çatısının çizgi genişliği." +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Çapraz" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Destek Zemini Çizgi Genişliği" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Çapraz 3D" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Tek bir destek zemininin çizgi genişliği." +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Çapraz 3D Cebin Boyutu" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "İlk Direk Hattı Genişliği" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Tek bir ilk direk hattının genişliği." +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "İlk Katman Hat Genişliği" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristalli Malzeme" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir." +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kübik" -msgctxt "shell label" -msgid "Walls" -msgstr "Duvarlar" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kübik Alt Bölüm" -msgctxt "shell description" -msgid "Shell" -msgstr "Kovan" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kübik Alt Bölüm Kalkanı" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Duvar Ekstruderi" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Kesme Örgüsü" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri." -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Dış Duvar Ekstruderi" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Varsayılan İvme" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Varsayılan Yapı Levhası Sıcaklığı" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "İç Duvar Ekstrüderi" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Varsayılan Filaman Salınımı" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Varsayılan Yazdırma Sıcaklığı" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Duvar Kalınlığı" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Varsayılan X-Y Salınımı" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler." +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Varsayılan Z Salınımı" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Duvar Hattı Sayısı" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Yatay düzlemdeki hareketler için varsayılan salınım." -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z yönü motoru için varsayılan salınım." -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Duvar Geçişi Uzunluğu" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Filaman motoru için varsayılan salınım." -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "Farkı sayıda duvar arasından geçerken parça daha ince hale geldiğinden duvar hatlarını bölmek veya birleştirmek için belirli bir alan ayrılır." +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızını, akışı ve fan ayarlarını değiştirin." -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Duvar Dağılım Sayısı" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Duvarların basılacağı sırayı belirler. Dış duvarların önce basılması, iç duvarlardaki hataların dışarıya taşmasını önleyerek boyutların doğru olmasını sağlar. Bu duvarların daha sonra basılması ise çıkıntılar basılırken daha iyi yığınlanma sağlar. Toplam iç duvar miktarı eşit değilse ”ortadaki son hat” her zaman en son yazdırılır." -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "Varyasyonun yayılması gereken, merkezden itibaren sayılan duvar sayısı. Düşük değerler olması dış duvarların genişliğinin değişmeyeceğini gösterir." +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en yüksek sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir." -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Duvar Geçişi Eşik Açısı" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür." -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "Çift ve tek sayıdaki duvarlar arasında ne zaman geçiş oluşturulacağını gösterir. Bu ayardan daha geniş açıya sahip bir kama şekline geçiş eklenmez ve kalan alanının doldurulması sırasında merkez noktada duvar baskısı yapılmaz. Bu ayarın düşürülmesi bu merkez duvarların sayısını ve uzunluğunu azaltır fakat boşluklara ve aşırı ekstrüzyona neden olabilir." +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür." -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Duvar Geçişi Filtresi Mesafesi" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Modele Göre Çap Artışı" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Her dalın yapı levhasına ulaşırken elde etmeye çalıştığı çap. Yatak yapışmasını geliştirir." -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Bir fazla ve bir az duvar arasında ileri geri geçişi önleyin. Bu kenar boşluğu, [Minimum Duvar Hattı Genişliği - Kenar Boşluğu, 2 * Minimum Duvar Hattı Genişliği+Kenar Boşluğu] olarak takip edilen hat genişliklerinin aralığını genişletir. Bu kenar boşluğunun artırılması geçişlerin sayısını azaltır, bu da ekstrüzyon başlatma/durdurma sayısını ve hareket süresini azaltır. Bununla birlikte, geniş hat varyasyonları düşük veya aşırı ekstrüzyon sorunlarına yol açabilir." +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Ekstrüzyon işlemine hazırlamayı ve yapı levhasına yapışmayı artıran farklı seçenekler. Kenar, eğilmeyi önlemek için model tabanının etrafına tek katmanlı düz bir alan ekler. Radye, modelin altına çatısı olan kalın bir ızgara ekler. Etek modelin etrafına yazdırılan bir hattır fakat modele bağlı değildir." -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Dış Duvar Sürme Mesafesi" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "İzin Verilmeyen Alanlar" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi." +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır." -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Dış Duvar İlavesi" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır." -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın." +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Duvar Yazdırma Sırasını Optimize Et" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Yazdırılan destek çatısı çizgileri arasındaki mesafe. Bu ayar Destek Çatısı Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın. Kenar, yapı levhası yapıştırması tipi olarak seçildiğinde ilk katman optimize edilmez." +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır." -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Duvar Sıralaması" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Duvarların basılacağı sırayı belirler. Dış duvarların önce basılması, iç duvarlardaki hataların dışarıya taşmasını önleyerek boyutların doğru olmasını sağlar. Bu duvarların daha sonra basılması ise çıkıntılar basılırken daha iyi yığınlanma sağlar. Toplam iç duvar miktarı eşit değilse ”ortadaki son hat” her zaman en son yazdırılır." +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Yazdırılıcak desteğin üstüne olan mesafe." -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "İçten Dışa" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dıştan İçe" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Dolgunun duvarlara daha iyi yapışması için her dolgu hattından sonra eklenen hareket mesafesi. Bu seçenek, dolgu çakışmasına benzer, ancak ekstrüzyon yoktur ve sadece dolgu hattının bir ucunda çakışma vardır." -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternatif Ek Duvar" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi." -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Her katmanda ek duvar yazdırır. Bu şekilde dolgu ek duvarların arasında alır ve daha sağlam baskılar ortaya çıkar." +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi." -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimum Duvar Hattı Genişliği" +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." -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır." +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi." -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum Çift Duvar Hattı Genişliği" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi." -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Normal çokgen duvarlar için minimum hat genişliğidir. Bu ayar, tek bir ince duvar hattının basılmasından iki duvar hattına hangi model kalınlığında geçileceğini belirler. Daha yüksek Minimum Çift Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum tek duvar hattı genişliği oluşmasına yol açar. Maksimum çift duvar hattı genişliği, Dış Duvar Hattı Genişliği + 0,5 * Minimum Tek Duvar Hattı Genişliği formülüyle hesaplanır." +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum Tek Duvar Hattı Genişliği" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Orta hat boşluğunu dolduran çok hatlı duvarlar için minimum hat genişliğidir. Bu ayar, iki duvar hattı baskısının hangi model kalınlığında iki dış duvar ve tek bir merkezi orta duvar baskısına geçirileceğini belirler. Daha yüksek Minimum Tek Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum çift duvar hattı genişliği oluşturur. Maksimum tek duvar hattı genişliği, 2 * Minimum Çift Duvar Hattı Genişliği formülüyle hesaplanır." +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)." -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "İnce Duvarları Yazdır" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Cereyan Kalkanı Yüksekliği" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır." +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Cereyan Kalkanı Sınırlaması" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum Yüz Hattı Boyutu" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Cereyan Kalkanı X/Y Mesafesi" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "İnce yüz hatlarının minimum kalınlığıdır. Bu değerden daha ince olan model yüz hatları yazdırılmaz, Minimum Yüz Hattı Boyutundan daha kalın olan modeller ise Minimum Duvar Hattı Genişliği değerine kadar genişletilir." +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Alçalan Destek Örgüsü" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimum İnce Duvar Hattı Genişliği" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "İkili ekstrüzyon" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Modelin ince yüz hatlarının yerini alacak duvarın genişliğidir (Minimum Yüz Hattı Boyutuna göre). Minimum Duvar Hattı Genişliği, yüz hattının kalınlığından daha inceyse duvar da yüz hattının kendisi kadar kalınlaştırılacaktır." +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Eliptik" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Yatay Büyüme" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "İvme Kontrolünü Etkinleştir" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Her katmandaki poligonlara uygulanan ofset miktarı. Pozitif değerler büyük boşlukları telafi ederken negatif değerler küçük boşlukları telafi edebilir." +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Köprü Ayarlarını Etkinleştir" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "İlk Katmanın Yatay Genişlemesi" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Taramayı Etkinleştir" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir." +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konik Desteği Etkinleştir" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Delik Yatay Büyüme" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Cereyan Kalkanını Etkinleştir" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Delik Yatay Genişlemesi, sıfırdan büyük olmak koşuluyla, her katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerlerde delikler büyür, negatif değerlerde ise küçülür. Bu ayar etkinleştirildiğinde, Delik Yatay Genişleme Maksimum Çapı ile daha detaylı bir ayarlama yapılabilir." +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Akışkan Hareketini Etkinleştir" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Delik Yatay Büyüme Maksimum Çapı" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ütülemeyi Etkinleştir" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Sıfırdan büyük olduğunda, Delik Yatay Büyüme küçük deliklere kademeli olarak uygulanır (küçük delikler daha fazla büyütülür). Sıfır olarak ayarlandığında Delik Yatay Büyüme tüm deliklere uygulanacaktır. Delik Yatay Büyüme Maksimum Çapı’ndan daha büyük delikler genişletilmez." +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Salınım Kontrolünü Etkinleştir" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z Dikiş Hizalama" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Bir katmandaki her yolun başlangıç noktası. Ardışık katmanlardaki yollar aynı noktadan başladığında, çıktıda dikey bir ek yeri görünebilir. Bunları kullanıcının belirlediği bir konumun yakınına hizalarken ek yerinin kaldırılması kolaylaşır. Gelişigüzel yerleştirildiğinde yolların başlangıcındaki düzensizlikler daha az fark edilecektir. En kısa yol kullanıldığında yazdırma hızlanacaktır." +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sızdırma Kalkanını Etkinleştir" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Kullanıcı Tarafından Belirtilen" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "İlk Damlayı Etkinleştir" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "En kısa" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "İlk Direği Etkinleştir" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Gelişigüzel" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Yazdırma Soğutmayı Etkinleştir" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "En Keskin Köşe" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Geri Çekmeyi Etkinleştir" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z Dikişi Konumu" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Destek Kenarını Etkinleştir" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum." +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Destek Zeminini Etkinleştir" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Sol Arka" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Destek Arayüzünü Etkinleştir" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Geri" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Destek Çatısını Etkinleştir" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Sağ Arka" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Hareket İvmesini Etkinleştir" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Sağ" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Hareket Salınımını Etkinleştir" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Sağ Ön" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır." -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Ön" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "En üstteki yüzey alanı katmanındaki (havaya maruz kalan) küçük (\"Küçük Üst/Alt Genişliği\"ne kadar) bölgeleri varsayılan desen yerine duvarlarla dolduran ayarı etkinleştirin." -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Sol Ön" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X veya Y eksenlerindeki hareket hızı değiştiğinde yazıcı başlığının salınımının ayarlanmasını sağlar. Salınımı artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sol" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z Dikişi X" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Yazdırma sırasında yazdırma soğutma fanlarını etkinleştirir. Fanlar, katman süresi kısa olan katmanlar ve kemerlerde/çıkıntılarda yazdırma kalitesini artırır." -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı." +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code’u Sonlandır" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z Dikişi Y" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Filament Temizliği Bitiş Uzunluğu" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı." +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Filament Temizliği Bitiş Hızı" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Dikiş Köşesi Tercihi" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar. Akıllı Gizleme, hem iç hem de dış köşelere izin verir ancak uygun olduğu durumlarda iç köşeleri daha sık seçer." +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Her bölüm" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Hiçbiri" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Dışlayıcı" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Dikişi Gizle" +msgctxt "experimental label" +msgid "Experimental" +msgstr "Deneysel" msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" msgstr "Dikişi Açığa Çıkar" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Dikişi Gizle veya Açığa Çıkar" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Akıllı Gizleme" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z Dikişi Göreliliği" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Etkin olduğunda, z dikişi koordinatları her parçanın merkezine göre hizalıdır. Devre dışı olduğunda, koordinatlar yapı levhası üzerinde mutlak bir pozisyonu belirtir." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Üst / Alt" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Geniş Dikiş" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Üst / Alt" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık boşlukların dikmeye çalışır. Bu seçenek çok fazla işlem süresi ortaya çıkarabilir." -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Üst Yüzey Ekstruderi" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Ekstra Dolgu Duvar Sayısı" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "En üstteki yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Ek Dış Katman Duvar Sayısı" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Üst Yüzey Katmanları" +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." -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "En üstteki yüzey katmanlarının sayısı. Yüksek kalitede üst yüzeyler oluşturmak için genellikle tek bir üst yüzey katmanı yeterlidir." +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Üst Yüzey Hat Genişliği" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği." +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Üst Yüzey Şekli" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Ekstrüderler Isıtıcıyı Paylaşır" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "En üst yüzeyin şekli." +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Ekstrüder Nozül Paylaşımı" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Hız için ekstrüzyon genişliği bazlı düzeltme faktörüdür. %0 değerinde hareket hızı Baskı Hızında sabit tutulur. %100 değerinde ise hareket hızı akış (mm³/s cinsinden) sabit tutulacak şekilde ayarlanır, yani normal Hat Genişliğinin yarısı iki kat daha hızlı basılır ve hatlar iki kat daha hızlı basılır. %100'den büyük değerler belirlenmesi, geniş hatların ekstrüde edilmesi için gereken yüksek basıncın telafi edilmesine yardımcı olabilir." -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Fan Hızı" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotonik Üst Yüzey Düzeni" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Fan Hızı Geçersiz Kılma" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır." -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Üst Yüzey Hat Yönleri" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Üst yüzey katmanları çizgi veya zikzak biçimindeyken kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında tekrar başa dönülür. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Besleyici Çark Çapı" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Üst/Alt Ekstruderi" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Son Yazdırma Sıcaklığı" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Üst ve alt yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Üretici Yazılımı Geri Çekme" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Üst/Alt Kalınlık" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "İlk Katman Destek Ekstruderi" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Yazdırmadaki üst/alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst/alt katmanların sayısını belirtir." +msgctxt "material_flow label" +msgid "Flow" +msgstr "Akış" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Üst Kalınlık" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Akış Eşitleme Oranı" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir." +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Akış hızı dengeleme çarpanı" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Üst Katmanlar" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Akış Sıcaklık Grafiği" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Alt Kalınlık" +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." -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir." +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "İlk katmanın alt hatlarında akış telafisi" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Alt katmanlar" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Dolgu hatlarının akış telafisidir." -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Destek çatı ve zemin hatlarının akış telafisidir." -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "İlk Alt Katmanlar" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Baskının üst bölümlerindeki hatların akış telafisidir." -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 "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Temel kule hatlarının akış telafisidir." -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Üst/Alt Şekil" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Etek veya kenar hatlarının akış telafisidir." -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Üst/alt katmanların şekli." +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Destek zemin hatlarının akış telafisidir." -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Destek çatı hatlarının akış telafisidir." -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Destek yapı hatlarının akış telafisidir." -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "İlk katmanın en dış duvar hattında akış telafisi." -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Alt Şekil İlk Katmanı" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "En dıştaki duvar hattının akış telafisidir." -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil." +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Üst/alt hatların akış telafisidir." -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "En dıştaki duvar hatları hariç tüm duvar hatları için duvar hatlarında akış telafisi, ancak sadece ilk katman içindir." -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Üst/Alt Poligonları Bağla" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Duvar hatlarının akış telafisidir." -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir." +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır." -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotonik Üst/Alt Düzeni" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Akışkan Hareket Açısı" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Akışkan Hareketi Kaydırma Mesafesi" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Üst/Alt Çizgi Yönleri" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Akışkan Hareketi Küçük Mesafe" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Üst/alt katmanlar çizgi veya zikzak şekillerini kullandığında kullanılacak tam sayı çizgi yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Temizleme Uzunluğu" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Küçük Üst/​Alt Genişlik" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Temizleme Hızı" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Küçük üst/alt bölgeler, varsayılan üst/alt deseni yerine duvarlarla doldurulur. Bu, sarsıntılı hareketleri önlemeye yardımcı olur. Varsayılan ayarda, en üstteki (havaya maruz kalan) katman için kapalıdır (bkz. 'Yüzeyde Küçük Üst/Alt')." +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır." -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Yüzeyde Küçük Üst/Alt" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Ön" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "En üstteki yüzey alanı katmanındaki (havaya maruz kalan) küçük (\"Küçük Üst/Alt Genişliği\"ne kadar) bölgeleri varsayılan desen yerine duvarlarla dolduran ayarı etkinleştirin." +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Sol Ön" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z Boşluklarında Dış Katman Oluşturma" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Sağ Ön" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Modelde yalnızca birkaç katmanda küçük dikey boşluklar varsa normal şartlarda dar alandaki bu katmanların etrafında dış bir katman olmalıdır. Dikey boşluğun çok küçük olduğu durumlarda dış katman oluşturulmaması için bu ayarı etkinleştirin. Böylece baskı ve dilimleme süresi kısalır ancak teknik olarak bakıldığında havayla temasa açık dolgular kalır." +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Tam" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Ek Dış Katman Duvar Sayısı" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Belirsiz Dış Katman" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir." +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Belirsiz Dış Katman Yoğunluğu" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ütülemeyi Etkinleştir" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Yalnızca Belirsiz Dış Katman" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Üst yüzey üzerinden bir kere daha geçilir, ancak bu defa çok küçük malzeme ekstrüde edilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey oluşturur. Nozül haznesindeki baskı yüksek tutularak yüzeydeki kıvrımların malzemeyle dolması sağlanır." +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Belirsiz Dış Katman Noktası Mesafesi" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Sadece En Yüksek Katmanı Ütüle" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Belirsiz Dış Katman Kalınlığı" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır." +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code türü" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Ütüleme Modeli" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"En son çalıştırılacak G-code komutları (\n" +" ile ayrılır)." -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Üst yüzeyleri ütülemek için kullanılacak model." +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"ile ayrılan, başlangıçta yürütülecek G-code komutları\n" +"." -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Portal Yüksekliği" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotonik Ütüleme Düzeni" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "İç İçe Geçen Yapı Oluşturma" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Oluşturma Desteği" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Ütüleme Hattı Boşluğu" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "İlk katmanın destek dolgu alanı içinde bir kenar oluşturun. Bu kenar, desteğin çevresine değil, altına yazdırılır. Bu ayarı etkinleştirmek, desteğin baskı tablasına yapışma alanını artırır." -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Ütüleme hatları arasında bulunan mesafe." +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Model ve destek arasında yoğun bir arayüz oluştur. Modelin yazdırıldığı desteğin üstünde ve modelin üzerinde durduğu desteğin altında bir yüzey oluşturur." -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Ütüleme Akışı" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Desteğin alt kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Ütüleme sırasında normal yüzey hattına göre ekstrude edilecek malzeme miktarı. Nozülü dolu tutmak üst yüzeyde oluşan çatlakların bir kısmının doldurulmasını sağlar fakat nozülün fazla dolu olması aşırı ekstrüzyona ve yüzey yanlarında noktalar oluşmasına neden olur." +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Desteğin üst kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Ütüleme İlave Mesafesi" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir." -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "Modelin kenarlarından bırakılması gereken mesafe. Ağın kenarlarına kadar ütülemek baskınızın kenarlarının pürüzlü olmasına neden olabilir." +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cam" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Ütüleme Hızı" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Üst yüzey üzerinden bir kere daha geçilir, ancak bu defa çok küçük malzeme ekstrüde edilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey oluşturur. Nozül haznesindeki baskı yüksek tutularak yüzeydeki kıvrımların malzemeyle dolması sağlanır." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Üst yüzeyi geçmek için gereken süre." +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Aşamalı Dolgu Basamak Yüksekliği" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ütüleme İvmesi" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Aşamalı Dolgu Basamakları" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ütülemenin gerçekleştiği ivme." +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ütüleme İvmesi Değişimi" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Kademeli Destek Dolgusu Aşamaları" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi." +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Minimum katman süresi nedeniyle düşük hızlarda yazdırırken bu sıcaklığa kademeli olarak düşürün." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Yüzey Çakışma Oranı" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını yüzey hatlarının hat genişliği ile en içteki duvarın bir yüzdesi olarak ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, %50’nin üstündeki yüzdelerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Yüzey Çakışması" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, duvar kalınlığının yarısından fazla değerlerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Yüzey Kaldırma Genişliği" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Izgara" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt/üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Üst Yüzey Kaldırma Genişliği" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Dış Duvarları Grupla" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Alt Yüzey Kaldırma Genişliği" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan alt yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Isıtılmış Yapı Levhası İçerir" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Yüzey Genişleme Mesafesi" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Isınma Hızı" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi komşu katmanlardaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Isı Bölgesi Uzunluğu" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Üst Yüzey Genişleme Mesafesi" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır." -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Üst yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yukarıdaki katmandaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Dikişi Gizle" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Alt Yüzey Genişleme Mesafesi" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Dikişi Gizle veya Açığa Çıkar" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Alt yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yüzeyin aşağıdaki katmandaki duvara daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Delik Yatay Büyüme" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Genişleme için Maksimum Yüzey Açısı" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Delik Yatay Büyüme Maksimum Çapı" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır ve yüzey alanının genişlemesine neden olmaz; 90°’lik bir açı dikeydir ve tüm yüzey alanlarının genişlemesine neden olur." +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır." -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Genişleme için Minimum Yüzey Genişliği" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Yatay Büyüme" -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." +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" -msgctxt "infill label" -msgid "Infill" -msgstr "Dolgu" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir." -msgctxt "infill description" -msgid "Infill" -msgstr "Dolgu" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir." -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Dolgu Ekstruderi" +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." -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir." -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dolgu Yoğunluğu" +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." -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır." -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Dolgu Hattı Mesafesi" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır." +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Dolgu Şekli" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir." -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır." +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı." -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı." -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı." -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı." -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Üçlü Altıgen" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kübik" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kübik Alt Bölüm" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Printer-start gcode betiğinin tamamlanmasında her bir ekstrüder filamentinin paylaşılan nozül ucundan ne kadar geri çekildiğinin varsayıldığıdır. Değer, nozül kanallarının ortak parçasının uzunluğuna eşit veya daha büyük olmalıdır." -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Sekizlik" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Destek arayüzü ve destek çakıştıklarında nasıl etkileşime girerler? Şu anda sadece destek çatısı için uygulanmaktadır." -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Çeyrek Kübik" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Model üzerine yerleştirilmesi gereken bir dalın ne kadar uzun olması gerektiği. Küçük destek lekelerini önler. Bir dalın bir destek çatısını desteklemesi durumunda bu ayar göz ardı edilir." -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +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." -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Bir takım yolu parçası, genel harekete göre bu açıdan daha fazla bir sapma gösterirse düzeltilir." -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Çapraz" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Eğer etkinleştirilirse, havanın üzerindeki ikinci ve üçüncü katmanlar aşağıdaki ayarlar kullanılarak yazdırılır. Aksi halde bu katmanlar normal ayarlar kullanılarak yazdırılır." -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Çapraz 3D" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın." -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Yıldırım" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar." -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Dolgu Hatlarını Bağlayın" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığını Ekle" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Malzeme Sıcaklıklarını Ekle" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Dolgu Poligonlarını Bağla" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Kapsayıcı" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Yan yana giden dolgu yollarını bağla. Birkaç kapalı poligondan oluşan dolgu şekilleri için bu ayarı etkinleştirmek hareket süresini büyük ölçüde kısaltır." +msgctxt "infill description" +msgid "Infill" +msgstr "Dolgu" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Dolgu Hattı Yönleri" +msgctxt "infill label" +msgid "Infill" +msgstr "Dolgu" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Dolgu İvmesi" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "Kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar kullanılır (çizgiler ve zikzak şekiller için 45 ve 135 derece; diğer tüm şekiller için 45 derece)." +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Duvarlardan Önce Dolgu" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Dolgu X Kayması" +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dolgu Yoğunluğu" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır." +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Dolgu Ekstruderi" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Dolgu Y Kayması" +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Dolgu Akışı" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Dolgu Salınımı" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Rastgele Boşluk Doldurma Başlat" +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dolgu Katmanı Kalınlığı" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Önce hangi boşluk doldurma hattının yapılacağını rastgele belirler. Böylece tek bir segmentin en güçlü yapıda olması önlenir ancak bu işlem ilave gezinti hamlelerine neden olabilir." +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Dolgu Hattı Yönleri" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Dolgu Hattı Mesafesi" msgctxt "infill_multiplier label" msgid "Infill Line Multiplier" msgstr "Dolgu Hattı Çoğaltıcı" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Her bir dolgu hattını bu sayıda hatta dönüştür. Ekstra hatlar birbirlerini kesmez, birbirlerinden bağımsız kalırlar. Bu dolguyu sertleştirir, ancak yazdırma süresini uzatırken materyal kullanımını artırır." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Ekstra Dolgu Duvar Sayısı" +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Dolgu Hattı Genişliği" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz.\nBu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir." +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Dolgu Ağı" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kübik Alt Bölüm Kalkanı" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Dolum Çıkıntı Açısı" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçapa ekleme. Büyük değerler modelin sınırının yanında daha kalın küçük küp kalkanları oluşmasına neden olur." +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Dolgu Çakışması" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" msgstr "Dolgu Çakışma Oranı" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ve duvarların arasındaki çakışma miktarı. Ufak bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Dolgu Şekli" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Dolgu Çakışması" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Dolgu Hızı" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Dolgu Desteği" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Dolgu Hareket Optimizasyonu" msgctxt "infill_wipe_dist label" msgid "Infill Wipe Distance" msgstr "Dolgu Sürme Mesafesi" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Dolgunun duvarlara daha iyi yapışması için her dolgu hattından sonra eklenen hareket mesafesi. Bu seçenek, dolgu çakışmasına benzer, ancak ekstrüzyon yoktur ve sadece dolgu hattının bir ucunda çakışma vardır." +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Dolgu X Kayması" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dolgu Katmanı Kalınlığı" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Dolgu Y Kayması" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Dolgu malzemesinin her bir katmanının kalınlığı Bu değer her zaman katman yüksekliğinin katı olmalıdır, aksi takdirde yuvarlanır." +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "İlk Alt Katmanlar" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Aşamalı Dolgu Basamakları" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "İlk Fan Hızı" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Üst yüzeylerin altına indikçe dolgu yoğunluğunu yarıya indirme sayısı. Üst yüzeylere daha yakın olan alanlarda, Dolgu Yoğunluğuna kadar yoğunluk daha yüksektir." +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "İlk Katman İvmesi" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Aşamalı Dolgu Basamak Yüksekliği" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "İlk Katman Alt Akışı" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği." +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "İlk Katman Çapı" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Duvarlardan Önce Dolgu" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "İlk Katman Akışı" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir." +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "İlk Katman Yüksekliği" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimum Dolgu Alanı" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "İlk Katmanın Yatay Genişlemesi" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)." +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "İlk Katman İç Duvar Akışı" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Dolgu Desteği" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "İlk Katman Salınımı" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Yazdırma dolgusu, yalnızca model tepelerinin desteklenmesi gereken yerleri yapılandırır. Bu özelliğin etkinleştirilmesi yazdırma süresini ve malzeme kullanımını azaltır ancak üniform olmayan nesne kuvvetine yol açar." +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "İlk Katman Hat Genişliği" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Dolum Çıkıntı Açısı" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "İlk Katman Dış Duvar Akışı" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz." +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "İlk Katman Yazdırma İvmesi" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Kaplamanın Kenar Desteği Kalınlığı" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "İlk Katman Yazdırma Salınımı" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı." +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "İlk Katman Yazdırma Hızı" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Kaplamanın Kenar Desteği Katmanları" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "İlk Katman Hızı" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "İlk Katman Destek Hattı Mesafesi" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Yıldırım Dolgu Destek Açısı" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "İlk Katman Hareket İvmesi" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür." +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "İlk Katman Hareket Salınımı" -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Yıldırım Dolgu Çıkıntı Açısı" +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "İlk Katman Hareket Hızı" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür." +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "İlk Katman Z Çakışması" -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Yıldırım Dolgu Budama Açısı" +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "İlk Yazdırma Sıcaklığı" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır." +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "İç Duvar İvmesi" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "İç Duvar Ekstrüderi" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "İç Duvar Salınımı" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "İç Duvar Hızı" -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Yıldırım Dolgu Düzleştirme Açısı" +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "İç Duvar Akışı" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "İç Duvar(lar) Hattı Genişliği" -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Varsayılan Yazdırma Sıcaklığı" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın." -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Yazdırma için kullanılan varsayılan sıcaklık. Bu sıcaklık malzemenin “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "İçten Dışa" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Yapı Disk Bölümü Sıcaklığı" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Tercih edilen arayüz hatları" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz." +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Tercih edilen arayüz" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Yazdırma Sıcaklığı" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "İç İçe Geçen Kiriş Katman Sayısı" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Yazdırma için kullanılan sıcaklık." +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "İç İçe Geçme Genişliği" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "İlk Katman Yazdırma Sıcaklığı" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "İç İçe Geçme Sınırından Kaçınma" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın." +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "İç İçe Geçme Derinliği" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "İlk Yazdırma Sıcaklığı" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "İç İçe Geçen Yapı Uyumlaması" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık." +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Sadece En Yüksek Katmanı Ütüle" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Son Yazdırma Sıcaklığı" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ütüleme İvmesi" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık." +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Ütüleme Akışı" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Ütüleme İlave Mesafesi" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Ekstrüzyon sırasında nozülün soğuduğu ilave hız. Aynı değer, ekstrüzyon sırasında ısınırken kaybedilen ısınma hızını göstermek için de kullanılır." +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ütüleme İvmesi Değişimi" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Varsayılan Yapı Levhası Sıcaklığı" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Ütüleme Hattı Boşluğu" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Isınan yapı levhası için kullanılan varsayılan sıcaklık. Bu sıcaklık yapı levhasının “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Ütüleme Modeli" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığı" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Ütüleme Hızı" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz." +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Merkez Nokta" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "İlk Katman Yapı Levhası Sıcaklığı" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Destek malzemesi mi" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "İlk katmanda ısıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ilk katman boyunca ısıtılmaz." +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "Yapışma Eğilimi" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Bu malzeme genellikle baskı sırasında destek malzemesi olarak mı kullanılır" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Yüzeye yapışma eğilimi." +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Yüzey Enerjisi" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Bağlı Olmayan Yüzleri Tut" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Yüzey enerjisi." +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Katman Yüksekliği" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Ölçekleme Faktörü Büzülme Telafisi" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Katman Başlangıcı X" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir." +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Katman Başlangıcı Y" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre XY yönünde (yatay olarak) ölçeklenecektir." +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Radyenin orta katmanının katman kalınlığı." -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Üst radye katmanlarının katman kalınlığı." -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre Z yönünde (dikey olarak) ölçeklenecektir." +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Destek yapısının daha kolay kırılması için her N milimetresinde bir destek hatları arasında bağlantı atlayın." -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristalli Malzeme" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sol" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Yazıcı Başlığını Kaldır" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Sızma Önleme Geri Çekme Mesafesi" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Yıldırım" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir." +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Yıldırım Dolgu Çıkıntı Açısı" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Sızma Önleme Geri Çekme Hızı" +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Yıldırım Dolgu Budama Açısı" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır." +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Yıldırım Dolgu Düzleştirme Açısı" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Yıldırım Dolgu Destek Açısı" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir." +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Dal Erişimini Sınırla" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Durma Payına Uygun Geri Çekme Hızı" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" -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." +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz." -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Kopma Hazırlığı Sıcaklığı" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Sınırlı" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Malzemeyi temizlemek için kullanılan sıcaklık; kabaca mümkün olan en yüksek baskı sıcaklığına eşit olmalıdır." +msgctxt "line_width label" +msgid "Line Width" +msgstr "Hat Genişliği" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Kopma Geri Çekme Mesafesi" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir." +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Kopma Geri Çekme Hızı" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır." +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Kopma Sıcaklığı" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -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." +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Temizleme Hızı" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Çizgiler" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Temizleme Uzunluğu" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Filament Temizliği Bitiş Hızı" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Makine Derinliği" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Makinenin Başlığı ve Fan Poligonu" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Filament Temizliği Bitiş Uzunluğu" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Makine Yüksekliği" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Makine Türü" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maksimum Durma Süresi" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Makine Genişliği" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir." +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Yük Taşıma Çarpanı Yok" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Çıkıntıyı Yazdırılabilir Yap" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Besleme ünitesi ile nozül haznesi arasına sıkıştırılacak filamenti belirten faktördür ve filament değişimi için malzemenin ne kadar hareket ettirileceğini belirlemek için kullanılır." +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir." -msgctxt "material_flow label" -msgid "Flow" -msgstr "Akış" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın." -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır." +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Destek örgüsünde askıda kalan herhangi bir kısım olmaması için destek örgüsünün altındaki her yere destek yapın." -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Duvar Akışı" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Duvar hatlarının akış telafisidir." +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Dış Duvar Akışı" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Kafesleri 3D baskı için daha uygun hale getirir." -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "En dıştaki duvar hattının akış telafisidir." +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "İç Duvar Akışı" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir." +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volümetrik)" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Üst/Alt Akış" +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Üst/alt hatların akış telafisidir." +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Üst Yüzeyin Dış Katman Akışı" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID malzeme" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Baskının üst bölümlerindeki hatların akış telafisidir." +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Dolgu Akışı" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Dolgu hatlarının akış telafisidir." +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maksimum X İvmesi" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Etek/Kenar Akışı" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maksimum Y İvmesi" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Etek veya kenar hatlarının akış telafisidir." +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maksimum Z İvmesi" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Destek Akışı" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maksimum Dal Açısı" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Destek yapı hatlarının akış telafisidir." +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maksimum Sapma" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Destek Ara Yüzeyi Akışı" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maksimum Ekstrüzyon Alanı Sapması" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Destek çatı ve zemin hatlarının akış telafisidir." +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maksimum Fan Hızı" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Destek Çatı Akışı" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maksimum Filaman İvmesi" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Destek çatı hatlarının akış telafisidir." +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maksimum Model Açısı" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Destek Zemin Akışı" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maksimum Çıkıntı Deliği Alanı" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maksimum Durma Süresi" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Destek zemin hatlarının akış telafisidir." +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maksimum Çözünürlük" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "İlk Direk Akışı" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maksimum Geri Çekme Sayısı" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Temel kule hatlarının akış telafisidir." +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Genişleme için Maksimum Yüzey Açısı" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "İlk Katman Akışı" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maksimum Hız E" -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." +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maksimum X Hızı" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "İlk Katman İç Duvar Akışı" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maksimum Y Hızı" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "En dıştaki duvar hatları hariç tüm duvar hatları için duvar hatlarında akış telafisi, ancak sadece ilk katman içindir." +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maksimum Z Hızı" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "İlk Katman Dış Duvar Akışı" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Kule Destekli Maksimum Çap" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "İlk katmanın en dış duvar hattında akış telafisi." +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maksimum Hareket Çözünürlüğü" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "İlk Katman Alt Akışı" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X yönü motoru için maksimum ivme" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "İlk katmanın alt hatlarında akış telafisi" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y yönü motoru için maksimum ivme." -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Bekleme Sıcaklığı" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z yönü motoru için maksimum ivme." -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ığı." +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Filaman motoru için maksimum ivme." -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Destek malzemesi mi" +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 "Seyrek olması düşünülen dolgunun maksimum yoğunluğu. Seyrek dolgu üzerindeki kaplama, desteksiz olacağı düşünülerek köprü kaplaması olarak değerlendirilir." -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Bu malzeme genellikle baskı sırasında destek malzemesi olarak mı kullanılır" +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır." -msgctxt "speed label" -msgid "Speed" -msgstr "Hız" +msgctxt "max_extrusion_before_wipe description" +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 "Başka bir nozül sürme işlemi başlatılmadan önce ekstrüde edilebilecek maksimum malzeme miktarı. Bu değer, bir katmanda gereken malzeme hacminden daha düşükse ayarın bu katmanda bir etkisi olmayacaktır, yani katman başına bir sürme sınırı vardır." -msgctxt "speed description" -msgid "Speed" -msgstr "Hız" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Birleştirilmiş Bileşim Çakışması" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Yazdırma Hızı" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ağ Onarımları" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Yazdırmanın gerçekleştiği hız." +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "Bileşim konumu X" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Dolgu Hızı" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "Bileşim konumu Y" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Dolgunun gerçekleştiği hız." +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "Bileşim konumu Z" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Duvar Hızı" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Örgü İşleme Sıralaması" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Duvarların yazdırıldığı hız." +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "Bileşim Rotasyon Matrisi" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Dış Duvar Hızı" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Ortalayıcı" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "En dış duvarların yazdırıldığı hız. Dış duvarı düşük hızda yazdırmak son yüzey kalitesini artırır. Öte yandan, iç duvar hızı ve dış duvar hızı arasındaki farkın fazla olması kaliteyi olumsuz etkileyecektir." +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimum Kalıp Genişliği" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "İç Duvar Hızı" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimum Sürede Bekleme Sıcaklığı" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır." +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimum Köprü Duvarı Uzunluğu" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Üst Yüzey Hızı" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum Çift Duvar Hattı Genişliği" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı hız." +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimum Geri Çekme Mesafesi Penceresi" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Üst/Alt Hız" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum Yüz Hattı Boyutu" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı hız." +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimum Besleme Hızı" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Destek Hızı" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Modele Göre Minimum Yükseklik" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Destek yapısının yazdırıldığı hız. Yüksek hızlardaki yazdırma desteği yazdırma süresini büyük oranda azaltabilir. Destek yapısının yüzey kalitesi, yazdırma işleminden sonra çıkartıldığı için önemli değildir." +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimum Dolgu Alanı" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Destek Dolgu Hızı" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimum Katman Süresi" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır." +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum Tek Duvar Hattı Genişliği" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Destek Arayüzü Hızı" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimum Poligon Çevre Uzunluğu" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Destek çatıları ve zeminlerinin yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Genişleme için Minimum Yüzey Genişliği" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Destek Çatısı Hızı" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimum Hız" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Destek çatısının yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimum Destek Bölgesi" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Destek Zemini Hızı" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimum Destek Zemini Bölgesi" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimum Destek Arayüzü Bölgesi" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "İlk Direk Hızı" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimum Destek Çatısı Bölgesi" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimum Destek X/Y Mesafesi" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "İlk direğin yazdırıldığı hız. Farklı filamanlar arasındaki yapışma standardın altında olduğunda, ilk direği daha yavaş yazdırmak dayanıklılığı artırabilir." +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimum İnce Duvar Hattı Genişliği" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Hareket Hızı" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Tarama Öncesi Minimum Hacim" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Hareket hamlelerinin hızı." +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimum Duvar Hattı Genişliği" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "İlk Katman Hızı" +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 "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "İlk katman için hız. Yapı plakasında yapışmayı iyileştirmek için düşük bir değer tavsiye edilir. Yapı plakasının kenar ve radye gibi yapışma yapılarını etkilemez." +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır." -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "İlk Katman Yazdırma Hızı" +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 "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "İlk katmanın yazdırılması için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir." +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 "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "İlk Katman Hareket Hızı" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "İnce yüz hatlarının minimum kalınlığıdır. Bu değerden daha ince olan model yüz hatları yazdırılmaz, Minimum Yüz Hattı Boyutundan daha kalın olan modeller ise Minimum Duvar Hattı Genişliği değerine kadar genişletilir." -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "İlk katmandaki hareket hamlelerinin hızı. Daha önce yazdırılan bölümlerin yapı levhasından ayrılmasını önlemek için daha düşük bir değer kullanılması önerilir. Bu ayar değeri, Hareket Hızı ve Yazdırma Hızı arasındaki orana göre otomatik olarak hesaplanabilir." +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Koni desteği tabanının indirildiği minimum genişlik. Küçük genişlikler, destek tabanlarının dengesiz olmasına neden olur." -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Etek/Kenar Hızı" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Kalıp" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Etek ve kenarın yazdırıldığı hız. Bu işlem normalde ilk katman hızında yapılır, ama etek ve kenarı farklı hızlarda yazdırmak isteyebilirsiniz." +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Kalıp Açısı" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z Atlama Hızı" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Kalıp Çatı Yüksekliği" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z Atlamaları için yapılan dikey Z hareketinin gerçekleştirileceği hızdır. Yapı plakasının veya makine tezgahının hareket etmesi daha zor olduğundan genelde baskı hızından daha düşüktür." +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotonik Ütüleme Düzeni" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Daha Yavaş Katman Sayısı" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotonik Üst Yüzey Düzeni" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Yapı levhasına daha iyi yapışma sağlamak ve yazdırmanın genel başarı oranını artırmak için ilk birkaç katman modelin kalan kısmından daha yavaş yazdırılır. Bu hız katmanlar üzerinde giderek artar." +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotonik Üst/Alt Düzeni" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Akış Eşitleme Oranı" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Çoklu etek hatları küçük modeller için daha iyi ekstrüzyon işlemi hazırlanmasına yardımcı olur. Bu değeri 0’a ayarlamak eteği devre dışı bırakacaktır." -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Hız için ekstrüzyon genişliği bazlı düzeltme faktörüdür. %0 değerinde hareket hızı Baskı Hızında sabit tutulur. %100 değerinde ise hareket hızı akış (mm³/s cinsinden) sabit tutulacak şekilde ayarlanır, yani normal Hat Genişliğinin yarısı iki kat daha hızlı basılır ve hatlar iki kat daha hızlı basılır. %100'den büyük değerler belirlenmesi, geniş hatların ekstrüde edilmesi için gereken yüksek basıncın telafi edilmesine yardımcı olabilir." +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir." -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "İvme Kontrolünü Etkinleştir" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Yük Taşıma Çarpanı Yok" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z Boşluklarında Dış Katman Oluşturma" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Hareket İvmesini Etkinleştir" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Hareket hamleleri için ayrı bir ivme oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Hiçbiri" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Yazdırma İvmesi" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Hiçbiri" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Yazdırmanın gerçekleştiği ivme." +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Dolgu İvmesi" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Dolgunun yazdırıldığı ivme." +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir g-code oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır." -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Duvar İvmesi" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Yüzey Alanında Değil" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Duvarların yazdırıldığı ivme." +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Dış Yüzeyde Değil" -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Dış Duvar İvmesi" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozül Açısı" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "En dış duvarların yazdırıldığı ivme." +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "İç Duvar İvmesi" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Nozül İzni Olmayan Alanlar" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "İç duvarların yazdırıldığı ivme." +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Üst Yüzey İvmesi" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozül Uzunluğu" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı ivme." +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" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Üst/Alt İvme" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Nozül Değişiminin İlk Hızı" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı ivme." +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Nozül Değişiminin Geri Çekme Hızı" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Destek İvmesi" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Nozül Anahtarı Geri Çekme Mesafesi" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Destek yapısının yazdırıldığı ivme." +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Nozül Anahtarı Geri Çekme Hızı" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Destek Dolgusu İvmesi" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Ekstrüder Sayısı" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Destek dolgusunun yazdırıldığı ivme." +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Etkinleştirilmiş Ekstruder Sayısı" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Destek Arayüzü İvmesi" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Daha Yavaş Katman Sayısı" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Destek çatıları ve zeminlerinin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Destek Çatısı İvmesi" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur." -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Destek çatısının yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Nozülün fırçadan geçirilme sayısı." -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Destek Zemini İvmesi" +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Üst yüzeylerin altına indikçe dolgu yoğunluğunu yarıya indirme sayısı. Üst yüzeylere daha yakın olan alanlarda, Dolgu Yoğunluğuna kadar yoğunluk daha yüksektir." -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Üst yüzeylerin altına inerken destek dolgusu yoğunluğunu yarıya indirmek için inilecek yüzey sayısı. Üst yüzeylere daha yakın olan alanlarda yoğunluk daha fazladır ve Destek Dolgusu Yoğunluğuna kadar çıkabilir." -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "İlk Direk İvmesi" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Sekizlik" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "İlk direğin yazdırıldığı ivme." +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Kapalı" -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Hareket İvmesi" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Nesneye x yönünde uygulanan ofset." -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Hareket hamlelerinin ivmesi." +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Nesneye y yönünde uygulanan ofset." -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "İlk Katman İvmesi" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz." -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "İlk katman için belirlenen ivme." +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Ekstruder Ofseti" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "İlk Katman Yazdırma İvmesi" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Mümkün olduğunda yapı levhası üzerinde" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "İlk katmanın yazdırıldığı ivme." +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Gerektiğinde model üzerinde" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "İlk Katman Hareket İvmesi" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Birer Birer" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Sadece Hareket Sırasında Yazdırılan Bölümleri Atlama yoluyla yatay hareket sayesinde atlanamayan yazdırılmış parçalar üzerinde hareket ederken Z Sıçramasını gerçekleştirin." -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Etek/Kenar İvmesi" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır." -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Etek ve kenarın yazdırıldığı ivme. Bu işlem normalde ilk katman ivmesi ile yapılır, ama etek ve kenarı farklı bir ivmede yazdırmak isteyebilirsiniz." +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Salınım Kontrolünü Etkinleştir" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Sızdırma Kalkanı Açısı" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X veya Y eksenlerindeki hareket hızı değiştiğinde yazıcı başlığının salınımının ayarlanmasını sağlar. Salınımı artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Sızdırma Kalkanı Mesafesi" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Hareket Salınımını Etkinleştir" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimum Dal Aralığı" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Hareket hamleleri için ayrı bir salınım oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Duvar Yazdırma Sırasını Optimize Et" -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Yazdırma İvmesi Değişimi" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın. Kenar, yapı levhası yapıştırması tipi olarak seçildiğinde ilk katman optimize edilmez." -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Yazıcı başlığının maksimum anlık hız değişimi." +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Dış Nozül Çapı" -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Dolgu Salınımı" +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Dış Duvar İvmesi" -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi." +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Dış Duvar Ekstruderi" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Duvar Salınımı" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Dış Duvar Akışı" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Dış Duvar İlavesi" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" msgstr "Dış Duvar Salınımı" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Dış Duvar Hattı Genişliği" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "İç Duvar Salınımı" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Dış Duvar Hızı" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Dış Duvar Sürme Mesafesi" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Üst Yüzey İvmesi Değişimi" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dıştan İçe" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Üst/Alt Salınımı" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Çıkıntılı Duvar Açısı" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Çıkıntılı Duvar Hızı" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Destek Salınımı" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır." -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi." +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Geri çekmenin geri alınmasından sonraki duraklama." -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Destek Dolgu İvmesi Değişimi" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı." -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi." +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Destek Arayüz Salınımı" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Desteğin hemen üzerindeki yüzey bölgeleri yazdırılırken kullanılacak yüzdelik fan hızıdır. Yüksek fan hızı kullanmak desteğin daha kolay kaldırılmasını sağlayabilir." -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi." +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Destek Çatısı Sarsıntısı" +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Bu miktardan daha kısa çevre uzunluğuna sahip dilimlenmiş katmanlardaki poligonlar filtre ile elenecektir. Daha düşük değerler dilimleme süresini uzatacak ancak daha yüksek çözünürlükte bir ağ oluşturacaktır. Genellikle yüksek çözünürlüklü SLA yazıcılarına yöneliktir ve çok fazla detay içeren çok küçük 3D modellerinde kullanılır." -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi." +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Tercih Edilen Dal Açısı" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Destek Zemini Sarsıntısı" +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Bir fazla ve bir az duvar arasında ileri geri geçişi önleyin. Bu kenar boşluğu, [Minimum Duvar Hattı Genişliği - Kenar Boşluğu, 2 * Minimum Duvar Hattı Genişliği+Kenar Boşluğu] olarak takip edilen hat genişliklerinin aralığını genişletir. Bu kenar boşluğunun artırılması geçişlerin sayısını azaltır, bu da ekstrüzyon başlatma/durdurma sayısını ve hareket süresini azaltır. Bununla birlikte, geniş hat varyasyonları düşük veya aşırı ekstrüzyon sorunlarına yol açabilir." -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi." +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "İlk Direk İvmesi" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "İlk Direk Akışı" msgctxt "jerk_prime_tower label" msgid "Prime Tower Jerk" msgstr "İlk Direk Salınımı" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Hareket Salınımı" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "İlk Direk Hattı Genişliği" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi." +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "İlk Direğin Minimum Hacmi" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "İlk Katman Salınımı" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi." +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "İlk Direk Boyutu" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "İlk Katman Yazdırma Salınımı" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "İlk Direk Hızı" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi." +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "İlk Direk X Konumu" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "İlk Katman Hareket Salınımı" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "İlk Direk Y Konumu" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Etek/Kenar İvmesi Değişimi" +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Yazdırma İvmesi" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi." +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Yazdırma İvmesi Değişimi" -msgctxt "travel label" -msgid "Travel" -msgstr "Hareket" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Yazdırma Dizisi" -msgctxt "travel description" -msgid "travel" -msgstr "hareket" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Yazdırma Hızı" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Geri Çekmeyi Etkinleştir" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "İnce Duvarları Yazdır" -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." +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Katman Değişimindeki Geri Çekme" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Yazdırma dolgusu, yalnızca model tepelerinin desteklenmesi gereken yerleri yapılandırır. Bu özelliğin etkinleştirilmesi yazdırma süresini ve malzeme kullanımını azaltır ancak üniform olmayan nesne kuvvetine yol açar." -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." +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Geri Çekme Mesafesi" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır." -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." +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır." -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Geri Çekme Hızı" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." -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." +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Geri Çekme Sırasındaki Çekim Hızı" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir." -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." +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Geri Çekme Sırasındaki Astar Hızı" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." -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." +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Yazdırma Sıcaklığı" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "İlk Katman Yazdırma Sıcaklığı" -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." +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "En içteki etek çizgisinin birden fazla katmanla yazdırılması, eteğin çıkarılmasını kolaylaştırır." -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimum Geri Çekme Hareketi" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Her katmanda ek duvar yazdırır. Bu şekilde dolgu ek duvarların arasında alır ve daha sağlam baskılar ortaya çıkar." -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." +msgctxt "resolution label" +msgid "Quality" +msgstr "Kalite" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maksimum Geri Çekme Sayısı" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Çeyrek Kübik" -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." +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radye" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimum Geri Çekme Mesafesi Penceresi" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Radye Hava Boşluğu" -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." +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Radye Taban Ekstrüderi" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Tarama Modu" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Radyenin Taban Fan Hızı" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa malzeme geri çekilecektir, nozül ise bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapılmayabilir veya sadece dolgu içerisinde tarama yapılabilir." +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Radye Taban Hat Genişliği" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Kapalı" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Radyenin Taban Hat Genişliği" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tümü" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Radyenin Taban Yazdırma İvmesi" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Dış Yüzeyde Değil" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Radyenin Taban Yazdırma Salınımı" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Yüzey Alanında Değil" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Radyenin Taban Yazdırma Hızı" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dolgu İçinde" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Radye Taban Kalınlığı" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Radye Tabanı Duvar Sayısı" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz." +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Ek Radye Boşluğu" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Dış Duvardan Önce Geri Çek" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Radye Fan Hızı" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Dış duvar başlatmaya giderken her zaman geri çeker." +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Radye Orta Ekstrüderi" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Radyenin Orta Fan Hızı" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Nozül hareket esnasında daha önce yazdırılmış bölümleri atlar. Bu seçenek sadece tarama etkinleştirildiğinde kullanılabilir." +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Radye Orta Katmanları" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Hareket Sırasında Destekleri Atla" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Radyenin Orta Hat Genişliği" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir." +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Radyenin Orta Yazdırma İvmesi" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Hareket Atlama Mesafesi" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Radyenin Orta Yazdırma Salınımı" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe." +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Radyenin Orta Yazdırma Hızı" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Katman Başlangıcı X" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Radye Orta Boşluğu" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı." +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Radye Orta Kalınlığı" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Katman Başlangıcı Y" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Radye Yazdırma İvmesi" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı." +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Radye Yazdırma Salınımı" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Geri Çekildiğinde Z Sıçraması" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Radye Yazdırma Hızı" -msgctxt "retraction_hop_enabled 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 "Geri çekme her yapıldığında, nozül ve baskı arasında açıklık oluşturmak için yapı levhası indirilir. Yapı levhasından baskıya çarpma şansını azaltarak nozülün hareket sırasında baskıya değmesini önler." +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Radye Düzeltme" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Radye Üst Ekstrüderi" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Sadece Hareket Sırasında Yazdırılan Bölümleri Atlama yoluyla yatay hareket sayesinde atlanamayan yazdırılmış parçalar üzerinde hareket ederken Z Sıçramasını gerçekleştirin." +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Radye Üst Fan Hızı" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z Sıçraması Yüksekliği" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Radyenin Üst Katman Kalınlığı" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Radyenin Üst Katmanları" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Radyenin Üst Hat Genişliği" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Makine bir ekstruderden diğerine geçtikten sonra, nozül ve baskı arasında açıklık oluşması için yapı levhası indirilir. Nozülün baskı dışına malzeme sızdırmasını önler." +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Radye Üst Yazdırma İvmesi" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Radye Üst Yazdırma Salınımı" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı." +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Radye Üst Yazdırma Hızı" -msgctxt "cooling label" -msgid "Cooling" -msgstr "Soğuma" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Radyenin Üst Boşluğu" -msgctxt "cooling description" -msgid "Cooling" -msgstr "Soğuma" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Gelişigüzel" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Yazdırma Soğutmayı Etkinleştir" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Rastgele Boşluk Doldurma Başlat" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Yazdırma sırasında yazdırma soğutma fanlarını etkinleştirir. Fanlar, katman süresi kısa olan katmanlar ve kemerlerde/çıkıntılarda yazdırma kalitesini artırır." +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Önce hangi boşluk doldurma hattının yapılacağını rastgele belirler. Böylece tek bir segmentin en güçlü yapıda olması önlenir ancak bu işlem ilave gezinti hamlelerine neden olabilir." -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Fan Hızı" +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." -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Yazdırma soğutma fanlarının dönüş hızı." +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Dikdörtgen" msgctxt "cool_fan_speed_min label" msgid "Regular Fan Speed" msgstr "Olağan Fan Hızı" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Katmanların sınıra ulaşmadan önceki dönüş hızı Katman sınır değerinden daha hızlı yazdırdığında fan hızı giderek maksimum fan hızına yönelir." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maksimum Fan Hızı" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Yüksekteki Olağan Fan Hızı" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Katmanların minimum katman süresindeki dönüş hızı. Sınır değerine ulaşıldığında, fan hızı olağan ve maksimum fan hızı arasında kademeli artış gösterir." +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Katmandaki Olağan Fan Hızı" msgctxt "cool_min_layer_time_fan_speed_max label" msgid "Regular/Maximum Fan Speed Threshold" msgstr "Olağan/Maksimum Fan Hızı Sınırı" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Sınır değerini olağan ve maksimum fan hızı arasında ayarlayan katman süresi. Bundan daha kısa sürede yazdıran katmanlar olağan fan hızı kullanır. Daha hızlı katmanlar için, fan hızı maksimum fan hızına doğru kademeli olarak artar." +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Bağıl Ekstrüzyon" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "İlk Fan Hızı" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Tüm Boşlukları Kaldır" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Fanların, yazdırma işleminin başındaki dönme hızı. Sonraki katmanlarda fan hızı, Yüksekteki Olağan Fan Hızına karşılık gelen katmana kadar kademeli olarak artar." +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Boş İlk Katmanları Kaldır" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Yüksekteki Olağan Fan Hızı" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Bileşim Kesişimini Kaldırın" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Fanların olağan fan hızında döndüğü yükseklik. Alttaki katmanlarda fan hızı, İlk Fan Hızından Olağan Fan Hızına kadar kademeli olarak artar." +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Radye İç Köşelerini Kaldır" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Katmandaki Olağan Fan Hızı" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir." -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Fanların olağan fan hızında döndüğü katman Yüksekteki olağan fan hızı ayarlanırsa bu değer hesaplanır ve tam sayıya yuvarlanır." +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir." -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimum Katman Süresi" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Her katmandaki boşlukları ortadan kaldırır ve sadece dış şekli korur. Görünmez tüm iç geometriyi yok sayar. Bununla birlikte, üstten ve alttan görünebilen katman boşluklarını da göz ardı eder." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir." + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Yerleştirme Tercihi" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Dış Duvardan Önce Geri Çek" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Katman Değişimindeki Geri Çekme" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Bir katmanda harcanan minimum süre. Bu süre yazıcıyı yavaşlamaya ve burada en azından bir katmanda ayarlanan süreyi kullanmaya zorlar. Bir sonraki katman yazdırılmadan önce yazdırılan materyalin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılır ve Minimum Hız değeri başka bir şekilde ihlal edilmezse katmanlar yine de minimal katman süresinden daha kısa sürebilir." +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." -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimum Hız" +msgctxt "wipe_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." -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Düşük katman süresi nedeniyle yavaşlamaya karşın minimum yazdırma hızı. Yazıcı çok yavaşladığında nozüldeki basınç çok düşük olacak ve kötü yazdırma kalitesiyle sonuçlanacaktır." +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." -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Yazıcı Başlığını Kaldır" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Geri Çekme Mesafesi" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Düşük katman süresi nedeniyle minimum hıza inildiğinde yazıcı başlığını yazıcıdan kaldırıp düşük katman süresine ulaşana kadar olan ek süreyi bekleyin." +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Küçük Katman Yazdırma Sıcaklığı" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimum Geri Çekme Hareketi" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Minimum katman süresi nedeniyle düşük hızlarda yazdırırken bu sıcaklığa kademeli olarak düşürün." +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Geri Çekme Sırasındaki Astar Hızı" -msgctxt "support label" -msgid "Support" -msgstr "Destek" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Geri Çekme Sırasındaki Çekim Hızı" -msgctxt "support description" -msgid "Support" -msgstr "Destek" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Geri Çekme Hızı" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Oluşturma Desteği" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Sağ" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir." +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Destek Ekstruderi" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin." -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Ölçekleme Faktörü Büzülme Telafisi" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Destek Dolgu Ekstruderi" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Sahnede Destek Örgüsü Var" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Dikiş Köşesi Tercihi" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "İlk Katman Destek Ekstruderi" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin." -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Destek Arayüz Ekstruderi" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar." -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Desteğin çatıları ve zeminlerinin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Paylaşılan Nozül İlk Geri Çekme" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Destek Çatısı Ekstrüderi" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "En Keskin Köşe" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Desteğin çatısının yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." +msgctxt "shell description" +msgid "Shell" +msgstr "Kovan" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Destek Zemini Ekstrüderi" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "En kısa" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Makine Varyantlarını Göster" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Destek Yapısı" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Kaplamanın Kenar Desteği Katmanları" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Kaplamanın Kenar Desteği Kalınlığı" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Yüzey Genişleme Mesafesi" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Ağaç" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Yüzey Çakışması" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maksimum Dal Açısı" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Yüzey Çakışma Oranı" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Dalların modelin etrafında büyürken aldıkları maksimum açı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Yüzey Kaldırma Genişliği" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Dal Çapı" +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." -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Ağaç desteğin en ince dallarının çapı. Daha kalın dallar daha dayanıklı olur. Tabana doğru uzanan dallar bundan daha kalın olacaktır." +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın." -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Gövde Çapı" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Destek yapısının daha kolay kırılması için bazı destek hattı bağlantılarını atlayın. Bu ayar, Zikzak destek dolgusu şekli için geçerlidir." -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Ağaç desteğinin en geniş dallarının çapı. Daha kalın bir gövde daha sağlamdır; daha ince bir gövde, yapı plakasında daha az yer kaplar." +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Etek" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Dal Çapı Açısı" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Etek Mesafesi" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "Alta doğru gidildikçe kademeli olarak kalınlaşan dalların açısı. 0 derecelik bir açı dalların uzunluklarını gözetmeksizin tekdüze bir kalınlığa sahip olmalarını sağlayacaktır. Birazcık açı ağaç desteğin sabitliğini artırabilir." +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Etek Yüksekliği" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Destek Yerleştirme" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Etek Hattı Sayısı" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Yapı Levhasına Dokunma" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Etek/Kenar İvmesi" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Her bölüm" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Etek/Kenar Ekstrüderi" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Tercih Edilen Dal Açısı" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Etek/Kenar Akışı" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "Modelden kaçınmak zorunda olmadıklarında dalların tercih edilen açısı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Dalların daha hızlı birleşmesi için daha yüksek bir açı kullanın." +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Etek/Kenar İvmesi Değişimi" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Modele Göre Çap Artışı" +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Etek/Kenar Hattı Genişliği" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Modele bağlanması gereken dalın çapının, yapı levhasına erişebilecek dallarla birleşerek en fazla ne kadar artabileceği. Bunu artırmak baskı süresini azaltır, ancak modele dayanan destek alanını artırır" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimum Etek/Kenar Uzunluğu" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Etek/Kenar Hızı" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Modele Göre Minimum Yükseklik" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Dilimleme Toleransı" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Model üzerine yerleştirilmesi gereken bir dalın ne kadar uzun olması gerektiği. Küçük destek lekelerini önler. Bir dalın bir destek çatısını desteklemesi durumunda bu ayar göz ardı edilir." +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Küçük Özellik İlk Katman Hızı" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "İlk Katman Çapı" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maksimum Küçük Özellik Uzunluğu" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Her dalın yapı levhasına ulaşırken elde etmeye çalıştığı çap. Yatak yapışmasını geliştirir." +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Küçük Özellik Hızı" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Dal Yoğunluğu" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maksimum Küçük Delik Boyutu" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar sağlar, ancak desteklerin çıkarılması daha zordur. Çok yüksek değerler için Destek Çatısı’nı kullanın veya destek yoğunluğunun en üstte benzer şekilde yüksek olmasını sağlayın." +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Küçük Katman Yazdırma Sıcaklığı" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Uç Çapı" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Yüzeyde Küçük Üst/Alt" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Ağaç desteğinin dallarının ucunun en üstteki çapı." +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Küçük Üst/​Alt Genişlik" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Dal Erişimini Sınırla" +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 "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimum Dal Aralığı" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Küçük üst/alt bölgeler, varsayılan üst/alt deseni yerine duvarlarla doldurulur. Bu, sarsıntılı hareketleri önlemeye yardımcı olur. Varsayılan ayarda, en üstteki (havaya maruz kalan) katman için kapalıdır (bkz. 'Yüzeyde Küçük Üst/Alt')." -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Akıllı Kenar" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Yerleştirme Tercihi" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Akıllı Gizleme" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Destek yapılarının tercih edilen yerleşimi. Yapılar tercih edilen yere yerleştirilemiyorsa başka bir yere yerleştirilecektir. Bu, onları modelin üzerine yerleştirmek anlamına da gelebilir." +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Helezon Şeklinde Düzeltme" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Mümkün olduğunda yapı levhası üzerinde" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklindeki konturları düzeltin (Z dikişi baskıda zor görünmeli ancak katman görünümünde görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini göz önünde bulundurun." -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Gerektiğinde model üzerinde" +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." -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Destek Çıkıntı Açısı" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir." -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Desteğin eklendiği çıkıntıların minimum açısı. 0°’de tüm çıkıntılar desteklenirken 90°‘de destek sağlanmaz." +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Özel Modlar" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Destek Şekli" +msgctxt "speed description" +msgid "Speed" +msgstr "Hız" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir." +msgctxt "speed label" +msgid "Speed" +msgstr "Hız" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız." -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiral Dış Çevre" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Dış kenarın Z hareketini helezon şeklinde düzeltir. Böylece yazdırmanın tamamında sabit bir Z artışı oluşur. Bu özellik katı bir modeli, tabanı katı tek bir duvar yazdırmasına dönüştürür. Bu özelliğin sadece tek bir parça içeren tüm tabakalarda etkinleştirilmesi gerekir." -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Bekleme Sıcaklığı" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code’u Başlat" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Çapraz" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Bir katmandaki her yolun başlangıç noktası. Ardışık katmanlardaki yollar aynı noktadan başladığında, çıktıda dikey bir ek yeri görünebilir. Bunları kullanıcının belirlediği bir konumun yakınına hizalarken ek yerinin kaldırılması kolaylaşır. Gelişigüzel yerleştirildiğinde yolların başlangıcındaki düzensizlikler daha az fark edilecektir. En kısa yol kullanıldığında yazdırma hızlanacaktır." -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Milimetre Başına Adım (E)" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Duvar Hattı Sayısını Destekle" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Milimetre Başına Adım (X)" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek dolgusunun çevreleneceği duvar sayısı. Bir duvarın eklenmesi destek yazdırmasını daha güvenilir kılabilir ve çıkıntıları daha iyi destekleyebilir. Ancak yazdırma süresini ve kullanılan malzemeyi artırır." +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Milimetre Başına Adım (Y)" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Destek Arayüzü Duvar Hattı Sayısı" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Milimetre Başına Adım (Z)" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüzünü çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." +msgctxt "support description" +msgid "Support" +msgstr "Destek" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Destek Çatı Duvar Hattı Sayısı" +msgctxt "support label" +msgid "Support" +msgstr "Destek" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüz çatısını çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Destek İvmesi" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Destek Alt Mesafesi" msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Destek Alt Duvar Hattı Sayısı" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüz zeminini çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Destek Çizgilerini Bağla" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Destek Kenar Hattı Sayısı" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Destek çizgilerinin uçlarını birbirine bağlayın. Bu ayarın etkinleştirilmesi, desteğinizi daha sağlam hale getirebilir ve ekstruzyonu azaltabilir ancak bu daha fazla malzemeye mal olacaktır." +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Destek Kenar Genişliği" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Destek Zikzaklarını Bağla" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Destek Parçası Hattı Sayısı" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır." +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Destek Parçasının Boyutu" msgctxt "support_infill_rate label" msgid "Support Density" msgstr "Destek Yoğunluğu" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır." +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Destek Mesafesi Önceliği" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Destek Hattı Mesafesi" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Destek Ekstruderi" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Destek Zemini İvmesi" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Destek Zemini Yoğunluğu" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Destek Zemini Ekstrüderi" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Destek Zemin Akışı" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır." +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Destek Zemini Yatay Büyüme" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "İlk Katman Destek Hattı Mesafesi" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Destek Zemini Sarsıntısı" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır." +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Destek Zemin Hattı Yönleri" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Destek Dolgu Hattı Yönü" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Destek Zemini Çizgi Mesafesi" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar listenin boş olmasıdır ve bu durumda varsayılan açı 0'dır." +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Destek Zemini Çizgi Genişliği" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Destek Kenarını Etkinleştir" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Destek Zemini Deseni" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "İlk katmanın destek dolgu alanı içinde bir kenar oluşturun. Bu kenar, desteğin çevresine değil, altına yazdırılır. Bu ayarı etkinleştirmek, desteğin baskı tablasına yapışma alanını artırır." +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Destek Zemini Hızı" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Destek Kenar Genişliği" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Destek Zemini Kalınlığı" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Desteğin altına yazdırılacak kenarın genişliği. Daha geniş kenar, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Destek Akışı" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Destek Kenar Hattı Sayısı" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Destek Yatay Büyüme" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kenar hattı, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Destek Dolgusu İvmesi" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Destek Z Mesafesi" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Destek Dolgu Ekstruderi" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "Destek yapısının üst/alt kısmından baskıya olan mesafe. Bu boşluk, model yazdırıldıktan sonra desteklerin sökülmesi için açıklık sağlar. Bu değer, katman yüksekliğinin iki katına kadar yuvarlanır." +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Destek Dolgu İvmesi Değişimi" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Destek Üst Mesafesi" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Destek Dolgusu Katmanı Kalınlığı" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Yazdırılıcak desteğin üstüne olan mesafe." +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Destek Dolgu Hattı Yönü" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Destek Alt Mesafesi" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Destek Dolgu Hızı" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "Baskıdan desteğin altına olan mesafe." +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Destek Arayüzü İvmesi" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Destek X/Y Mesafesi" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Destek Arayüzü Yoğunluğu" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi." +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Destek Arayüz Ekstruderi" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Destek Mesafesi Önceliği" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Destek Ara Yüzeyi Akışı" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Destek X/Y Mesafesinin Destek Z Mesafesinden veya tersi yönde fazla olup olmadığı. X/Y, Z’den fazla olursa, X/Y mesafesi çıkıntıya olan asıl Z mesafesini etkileyerek desteği modelden iter. Çıkıntıların etrafına X/Y mesafesi uygulayarak bunu engelleyebiliriz." +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Destek Arayüzü Yatay Büyüme" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y, Z’den fazla" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Destek Arayüz Salınımı" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z, X/Y’den fazla" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Destek Arabirim Hattı Yönleri" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimum Destek X/Y Mesafesi" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Destek Arayüz Hattı Genişliği" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi." +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Destek Arayüzü Şekli" -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Destek Merdiveni Basamak Yüksekliği" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Destek Arayüzü Önceliği" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının basamak yüksekliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir. Merdiven benzeri davranışı kapatmak için sıfır değerine ayarlayın." +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "Destek Arayüz Çözünürlüğü" -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Destek Merdiveni Maksimum Basamak Genişliği" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Destek Arayüzü Hızı" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının maksimum basamak genişliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir." +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Destek Arayüzü Kalınlığı" -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Basamak Desteğinin Minimum Eğim Açısı" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Destek Arayüzü Duvar Hattı Sayısı" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Basamaklı alanın etkili olması için gereken minimum eğimdir. Düşük değerler, derinliği daha düşük olan eğimlerde desteğin kaldırılmasını kolaylaştırırken, gerçekten düşük değerler ise modelin diğer parçalarında tersine sonuçlar doğurabilir." +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Destek Salınımı" msgctxt "support_join_distance label" msgid "Support Join Distance" msgstr "Destek Birleşme Mesafesi" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "X/Y yönlerinde destek yapıları arasındaki maksimum mesafedir. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşerek tek bir yapı haline gelir." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Destek Yatay Büyüme" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Her katmandaki tüm destek poligonlarına uygulanan ofset miktarı. Pozitif değerler destek alanlarını pürüzsüzleştirebilir ve daha sağlam destek sağlayabilir." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Destek Dolgusu Katmanı Kalınlığı" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Destek Hattı Mesafesi" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Her katmandaki destek dolgusu malzemesinin kalınlığı. Bu değer her zaman katman yüksekliğinin bir katı olmalıdır, aksi takdirde değer yuvarlanır." +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Destek Hattı Genişliği" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Kademeli Destek Dolgusu Aşamaları" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Destek Örgüsü" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Üst yüzeylerin altına inerken destek dolgusu yoğunluğunu yarıya indirmek için inilecek yüzey sayısı. Üst yüzeylere daha yakın olan alanlarda yoğunluk daha fazladır ve Destek Dolgusu Yoğunluğuna kadar çıkabilir." +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Destek Çıkıntı Açısı" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Destek Şekli" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği." +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Destek Yerleştirme" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimum Destek Bölgesi" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Destek Çatısı İvmesi" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır." +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Destek Çatısı Yoğunluğu" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Destek Arayüzünü Etkinleştir" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Destek Çatısı Ekstrüderi" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Model ve destek arasında yoğun bir arayüz oluştur. Modelin yazdırıldığı desteğin üstünde ve modelin üzerinde durduğu desteğin altında bir yüzey oluşturur." +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Destek Çatı Akışı" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Destek Çatısını Etkinleştir" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Destek Çatısı Yatay Büyüme" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Desteğin üst kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Destek Çatısı Sarsıntısı" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Destek Zeminini Etkinleştir" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Destek Çatı Hattı Yönleri" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Desteğin alt kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Destek Çatısı Çizgi Mesafesi" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Destek Arayüzü Kalınlığı" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Destek Çatısı Çizgi Genişliği" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı." +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Destek Çatısı Deseni" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Destek Çatısı Hızı" msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Destek Tavanı Kalınlığı" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Destek tavanlarının kalınlığı. Modelin bulunduğu desteğin üst kısmındaki yoğun katmanların sayısını kontrol eder." +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Destek Çatı Duvar Hattı Sayısı" -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Destek Zemini Kalınlığı" +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Destek Hızı" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Destek Merdiveni Basamak Yüksekliği" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "Destek Arayüz Çözünürlüğü" +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Destek Merdiveni Maksimum Basamak Genişliği" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Basamak Desteğinin Minimum Eğim Açısı" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Destek Arayüzü Yoğunluğu" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Destek Yapısı" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısının çatılarının ve zeminlerinin yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Destek Üst Mesafesi" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Destek Çatısı Yoğunluğu" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Duvar Hattı Sayısını Destekle" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısı çatılarının yoğunluğu. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Destek X/Y Mesafesi" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Destek Çatısı Çizgi Mesafesi" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Destek Z Mesafesi" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Yazdırılan destek çatısı çizgileri arasındaki mesafe. Bu ayar Destek Çatısı Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Tercih edilen destek hatları" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Destek Zemini Yoğunluğu" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Tercih edilen destek" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Destek yapısı zeminlerinin yoğunluğu. Daha yüksek bir değer, desteğin modelin üzerine daha iyi yapışmasını sağlar." +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Desteklenen Yüzey Fan Hızı" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Destek Zemini Çizgi Mesafesi" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Yüzey" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Yüzey Enerjisi" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Destek Arayüzü Şekli" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Yüzey Modu" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil." +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Yüzeye yapışma eğilimi." -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Yüzey enerjisi." -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "En içteki ve ikinci en içteki kenar çizgilerinin baskı sırasını değiştirin. Bu, kenarın çıkarılmasını kolaylaştırır." -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Çakışan bileşimlerin birbirine karışması için her bir katmanda bileşim kesişimi hacimlerine göre değişiklik yapın. Bu ayarın kapatılması, bir bileşimin diğer bileşimlerden ayrılarak çakışmadaki tüm hacmi almasına neden olur." -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" +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." -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı." -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Destek Çatısı Deseni" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı." -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Destek çatısının yazdırıldığı desen." +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı." -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı." -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "İlk katmanın yazdırıldığı ivme." -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Destek Zemini Deseni" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "İlk katman için belirlenen ivme." -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Destek zeminlerinin yazdırıldığı desen." +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "İç duvarların yazdırıldığı ivme." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Dolgunun yazdırıldığı ivme." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ütülemenin gerçekleştiği ivme." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Yazdırmanın gerçekleştiği ivme." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivme." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Izgara" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Destek dolgusunun yazdırıldığı ivme." -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Orta radye katmanının yazdırıldığı ivme." -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "En dış duvarların yazdırıldığı ivme." -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "İlk direğin yazdırıldığı ivme." -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimum Destek Arayüzü Bölgesi" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Radyenin yazdırıldığı ivme." -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 "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Destek çatıları ve zeminlerinin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimum Destek Çatısı Bölgesi" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Destek çatısının yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." -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 "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Etek ve kenarın yazdırıldığı ivme. Bu işlem normalde ilk katman ivmesi ile yapılır, ama etek ve kenarı farklı bir ivmede yazdırmak isteyebilirsiniz." -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimum Destek Zemini Bölgesi" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Destek yapısının yazdırıldığı ivme." -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 "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı ivme." -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Destek Arayüzü Yatay Büyüme" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Destek Çatısı Yatay Büyüme" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Duvarların yazdırıldığı ivme." -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Destek çatılarına uygulanan ofset miktarı." +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı ivme." -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Destek Zemini Yatay Büyüme" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı ivme." -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Destek zeminlerine uygulanan ofset miktarı." +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Hareket hamlelerinin ivmesi." -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Destek Arayüzü Önceliği" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Ütüleme sırasında normal yüzey hattına göre ekstrude edilecek malzeme miktarı. Nozülü dolu tutmak üst yüzeyde oluşan çatlakların bir kısmının doldurulmasını sağlar fakat nozülün fazla dolu olması aşırı ekstrüzyona ve yüzey yanlarında noktalar oluşmasına neden olur." -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Destek arayüzü ve destek çakıştıklarında nasıl etkileşime girerler? Şu anda sadece destek çatısı için uygulanmaktadır." +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ve duvarların arasındaki çakışma miktarı. Ufak bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Tercih edilen destek" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Tercih edilen arayüz" +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." -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Tercih edilen destek hatları" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı." -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Tercih edilen arayüz hatları" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Direk tavanı açısı Yüksek bir değer, direk tavanını sivrileştirirken, daha düşük bir değer direk tavanlarını düzleştirir." -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Her ikisi de çakışıyor" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Kalıp için oluşturulan dış duvarların çıkıntı açısı. 0° kalıbın dış kovanını dikey hale getirirken, 90° ise modelin dış kısmının model konturunu takip etmesini sağlayacaktır." -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Destek Arabirim Hattı Yönleri" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "Alta doğru gidildikçe kademeli olarak kalınlaşan dalların açısı. 0 derecelik bir açı dalların uzunluklarını gözetmeksizin tekdüze bir kalınlığa sahip olmalarını sağlayacaktır. Birazcık açı ağaç desteğin sabitliğini artırabilir." -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Konik desteğin eğim açısı. Dikey 0 derece ve yatay 90 derece. Daha küçük açılar desteğin daha sağlam olmasını sağlar, ancak çok fazla malzeme içerir. Negatif açılar destek tabanının üst kısımdan daha geniş olmasına yol açar." -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Destek Çatı Hattı Yönleri" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Bir katmandaki her bir poligona tanınan noktaların ortalama yoğunluğu. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda düşük yoğunluk sonuçları çözünürlük azalmasıyla sonuçlanabilir." -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır." -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Destek Zemin Hattı Yönleri" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Listedeki öğeler katmanlar ilerledikçe sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Yazdırma için kullanılan varsayılan sıcaklık. Bu sıcaklık malzemenin “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Fan Hızı Geçersiz Kılma" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Isınan yapı levhası için kullanılan varsayılan sıcaklık. Bu sıcaklık yapı levhasının “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Bu ayar etkinleştirildiğinde, yazıcı soğutma fanının hızı desteğin hemen üzerindeki yüzey bölgeleri için değiştirilir." +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Desteklenen Yüzey Fan Hızı" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Destek yapısı zeminlerinin yoğunluğu. Daha yüksek bir değer, desteğin modelin üzerine daha iyi yapışmasını sağlar." -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Desteğin hemen üzerindeki yüzey bölgeleri yazdırılırken kullanılacak yüzdelik fan hızıdır. Yüksek fan hızı kullanmak desteğin daha kolay kaldırılmasını sağlayabilir." +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısı çatılarının yoğunluğu. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Direkleri kullan" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "İkinci köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Küçük çıkıntı alanlarını desteklemek için özel direkler kullanın. Bu direkler desteklediğimiz bölgeden daha büyük çaptadır. Çıkıntıyı yaklaştırırsanız direklerin çapı azalır ve bir tavan oluşturur." +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Üçüncü köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Direk Çapı" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Yazdırılabilir alan derinliği (Y yönü)." msgctxt "support_tower_diameter description" msgid "The diameter of a special tower." msgstr "Özel bir direğin çapı." -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Kule Destekli Maksimum Çap" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Ağaç desteğin en ince dallarının çapı. Daha kalın dallar daha dayanıklı olur. Tabana doğru uzanan dallar bundan daha kalın olacaktır." -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır." +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Ağaç desteğinin dallarının ucunun en üstteki çapı." -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Direk Tavanı Açısı" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Besleyiciye malzeme veren çarkın çapı." -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Direk tavanı açısı Yüksek bir değer, direk tavanını sivrileştirirken, daha düşük bir değer direk tavanlarını düzleştirir." +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Ağaç desteğinin en geniş dallarının çapı. Daha kalın bir gövde daha sağlamdır; daha ince bir gövde, yapı plakasında daha az yer kaplar." -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Alçalan Destek Örgüsü" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı." -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Destek örgüsünde askıda kalan herhangi bir kısım olmaması için destek örgüsünün altındaki her yere destek yapın." +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Ütüleme hatları arasında bulunan mesafe." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe." -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Sahnede Destek Örgüsü Var" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir." +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir." -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "İlk Damlayı Etkinleştir" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir." +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Yapı Levhası Türü" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "İç içe geçen yapı oluşturmak için modeller arası sınırdan hücre sayısı olarak ölçülen mesafe. Çok az hücre kullanmak zayıf yapışmaya neden olur." -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Ekstrüzyon işlemine hazırlamayı ve yapı levhasına yapışmayı artıran farklı seçenekler. Kenar, eğilmeyi önlemek için model tabanının etrafına tek katmanlı düz bir alan ekler. Radye, modelin altına çatısı olan kalın bir ızgara ekler. Etek modelin etrafına yazdırılan bir hattır fakat modele bağlı değildir." +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Modelin en dış kenar hattını olan mesafesi. Daha büyük kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Etek" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "İç içe geçen yapıların oluşturulmayacağı bir modelin dışından hücre cinsinden ölçülen mesafe." -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Kenar" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe." -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radye" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Alt yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yüzeyin aşağıdaki katmandaki duvara daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Hiçbiri" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi komşu katmanlardaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Yapı Levhası Yapıştırma Ekstruderi" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Üst yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yukarıdaki katmandaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi." -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Etek/Kenar Ekstrüderi" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır." -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Ekstrüzyon sırasında nozülün soğuduğu ilave hız. Aynı değer, ekstrüzyon sırasında ısınırken kaybedilen ısınma hızını göstermek için de kullanılır." -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Radye Taban Ekstrüderi" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." msgctxt "raft_base_extruder_nr description" msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." msgstr "Radyenin ilk katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Radye Orta Ekstrüderi" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." msgctxt "raft_interface_extruder_nr description" msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." msgstr "Radyenin orta katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Radye Üst Ekstrüderi" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Etek Hattı Sayısı" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Çoklu etek hatları küçük modeller için daha iyi ekstrüzyon işlemi hazırlanmasına yardımcı olur. Bu değeri 0’a ayarlamak eteği devre dışı bırakacaktır." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Etek Yüksekliği" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "En içteki etek çizgisinin birden fazla katmanla yazdırılması, eteğin çıkarılmasını kolaylaştırır." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Etek Mesafesi" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\nMinimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Desteğin çatıları ve zeminlerinin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimum Etek/Kenar Uzunluğu" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Desteğin çatısının yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Etek veya kenarın minimum uzunluğu. Tüm etek veya kenar hatları birlikte bu uzunluğa ulaşmazsa minimum uzunluğa ulaşılana kadar daha fazla etek veya kenar hattı eklenecektir. Not: Hat sayısı 0’a ayarlanırsa, bu yok sayılır." +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Kenar Genişliği" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Modelin en dış kenar hattını olan mesafesi. Daha büyük kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Kenar Hattı Sayısı" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." -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." +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Uç Mesafesi" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -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 "Baskının ilk katmanının uçtaki ilk hattı ile ana hattı arasındaki yatay mesafe. Küçük bir boşluk baskının uç kısmının kolayca çıkarılmasını sağlamasının yanı sıra ısı bakımından da avantajlıdır." +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Kenar, Desteği Değiştirir" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Üst ve alt yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "En üstteki yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "Sadece Dış Kısımdaki Kenar" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "Sadece modelin dış kısmındaki kenarı yazdırır. Yatak yapışmasını büyük oranda azaltmasa da daha sonra kaldırmanız gereken kenar sayısını azaltır." +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Radyenin taban katmanı için fan hızı." -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "Kenar İçi Kaçınma Payı" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Radyenin orta katmanı için fan hızı." -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "Bir başka parçanın içine tamamen kapatılmış bir parça, diğer parçanın içine temas eden bir dış kenar oluşturabilir. Bu, iç deliklerden bu mesafe içindeki tüm kenarları kaldırır." +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Radye için fan hızı." -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Akıllı Kenar" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Üst radye katmanları için fan hızı." -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "En içteki ve ikinci en içteki kenar çizgilerinin baskı sırasını değiştirin. Bu, kenarın çıkarılmasını kolaylaştırır." +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Ek Radye Boşluğu" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Yapı levhasına daha iyi yapışma sağlamak ve yazdırmanın genel başarı oranını artırmak için ilk birkaç katman modelin kalan kısmından daha yavaş yazdırılır. Bu hız katmanlar üzerinde giderek artar." -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Radye Düzeltme" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Son radye katmanı ve modelin ilk katmanı arasındaki boşluk. Radye katmanı ve model arasındaki yapışmayı azaltmak için sadece ilk katman yükseltilir. Radyeyi sıyırmayı kolaylaştırır." -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Radye Hava Boşluğu" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik." -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Son radye katmanı ve modelin ilk katmanı arasındaki boşluk. Radye katmanı ve model arasındaki yapışmayı azaltmak için sadece ilk katman yükseltilir. Radyeyi sıyırmayı kolaylaştırır." +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Fanların olağan fan hızında döndüğü yükseklik. Alttaki katmanlarda fan hızı, İlk Fan Hızından Olağan Fan Hızına kadar kademeli olarak artar." -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "İlk Katman Z Çakışması" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı." -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "Hava boşluğundaki filaman kaybını telafi etmek için Z yönünde modelin ilk ve ikinci katmanını çakıştırın. İlk model katmanının üstündeki tüm modeller bu miktara indirilecektir." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı." -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Radyenin Üst Katmanları" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı." -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Radyenin Üst Katman Kalınlığı" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Üst radye katmanlarının katman kalınlığı." +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Her katmanın milimetre cinsinden yüksekliği. Daha yüksek değerler düşük çözünürlükte hızlı baskılar üretir; daha düşük değerler ise yüksek çözünürlükte daha yavaş baskılar üretir." -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Radyenin Üst Hat Genişliği" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği." -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği." -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Radyenin Üst Boşluğu" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Radye Orta Katmanları" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır." -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Radyenin tabanı ve yüzeyi arasındaki katman sayısıdır. Bunlar radyenin temel kalınlığını oluşturur. Bu değerin artırılması daha kalın ve sağlam bir radye oluşturur." +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Radye Orta Kalınlığı" +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının basamak yüksekliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir. Merdiven benzeri davranışı kapatmak için sıfır değerine ayarlayın." -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Radyenin orta katmanının katman kalınlığı." +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 "Baskının ilk katmanının uçtaki ilk hattı ile ana hattı arasındaki yatay mesafe. Küçük bir boşluk baskının uç kısmının kolayca çıkarılmasını sağlamasının yanı sıra ısı bakımından da avantajlıdır." -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Radyenin Orta Hat Genişliği" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"Baskının eteği ve ilk katmanı arasındaki yatay mesafe.\n" +"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Radyenin orta katmanındaki hatların genişliği. İkinci katmanın daha fazla sıkılması hatların yapı levhasına yapışmasına neden olur." +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Radye Orta Boşluğu" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır." -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir." +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Radye Taban Kalınlığı" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Radyenin Taban Hat Genişliği" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Orta radye katmanının yazdırıldığı salınım." -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Radyenin yazdırıldığı salınım." -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Radye Taban Hat Genişliği" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı salınım." -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan alt yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Radye Yazdırma Hızı" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt/üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Radyenin yazdırıldığı hız." +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Radye Üst Yazdırma Hızı" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Fanların olağan fan hızında döndüğü katman Yüksekteki olağan fan hızı ayarlanırsa bu değer hesaplanır ve tam sayıya yuvarlanır." -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Sınır değerini olağan ve maksimum fan hızı arasında ayarlayan katman süresi. Bundan daha kısa sürede yazdıran katmanlar olağan fan hızı kullanır. Daha hızlı katmanlar için, fan hızı maksimum fan hızına doğru kademeli olarak artar." -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Radyenin Orta Yazdırma Hızı" +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." -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Radyenin Taban Yazdırma Hızı" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Yazıcıya takılı yapı levhasının malzemesi." -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik." -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Radye Yazdırma İvmesi" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Sızdırma kalkanında bir bölümün sahip olacağı en büyük açı. Dikey 0 derece ve yatay 90 derece. Daha küçük bir açı sızdırma kalkanının daha sorunsuz olmasını sağlarken daha fazla malzeme kullanılmasına yol açar." -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Radyenin yazdırıldığı ivme." +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Yazdırılabilir yapıldıktan sonra çıkıntıların en büyük açısı. 0° değerindeyken tüm modeller yapı levhasına bağlı bir model parçasıyla değiştirilirken 90° modeli hiçbir şekilde değiştirmez." -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Radye Üst Yazdırma İvmesi" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Dalların modelin etrafında büyürken aldıkları maksimum açı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı ivme." +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Çıkıntıyı Yazdırılabilir Yap işlemiyle çıkarılmadan önce modelin tabanındaki deliğin maksimum alanı. Bu değerden küçük delikler korunacaktır. 0 mm²'lik değer modellerin tabanındaki tüm delikleri dolduracaktır." -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Radyenin Orta Yazdırma İvmesi" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Maksimum Çözünürlük ayarı için çözünürlük azaltıldığında izin verilen maksimum sapma. Bu değeri artırırsanız baskının doğruluğu azalacak ancak g kodu daha küçük olacaktır. Maksimum Sapma, Maksimum Çözünürlük için sınırdır, dolayısıyla iki değer çelişirse Maksimum Sapma her zaman doğru kabul edilir." -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Orta radye katmanının yazdırıldığı ivme." +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "X/Y yönlerinde destek yapıları arasındaki maksimum mesafedir. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşerek tek bir yapı haline gelir." -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Radyenin Taban Yazdırma İvmesi" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe." -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivme." +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Ara noktaları düz bir hattan çıkarırken izin verilen maksimum ekstrüzyon alanı sapmasıdır. Bir ara nokta, uzun düz bir hatta genişlik değiştiren nokta olarak hizmet edebilir. Bu nedenle, ara noktanın çıkarılması hattın tek boyutlu bir genişliğe sahip olmasına ve dolayısıyla bir miktar ekstrüzyon alanı kaybetmesine (veya kazanmasına) neden olur. Bu değeri artırırsanız daha fazla ara genişlik değiştiren noktaların kaldırılmasına izin verileceğinden, düz paralel duvarlar arasında az (veya çok) ekstrüzyon görebilirsiniz. Baskının doğruluğu azalacak fakat g kodu daha küçük olacaktır." -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Radye Yazdırma Salınımı" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi." -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Radyenin yazdırıldığı salınım." +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Yazıcı başlığının maksimum anlık hız değişimi." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi." -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Radye Üst Yazdırma Salınımı" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı salınım." +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Radyenin Orta Yazdırma Salınımı" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Orta radye katmanının yazdırıldığı salınım." +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Radyenin Taban Yazdırma Salınımı" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Radye Fan Hızı" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Radye için fan hızı." +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Radye Üst Fan Hızı" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Üst radye katmanları için fan hızı." +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Radyenin Orta Fan Hızı" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Radyenin orta katmanı için fan hızı." +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Radyenin Taban Fan Hızı" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Radyenin taban katmanı için fan hızı." +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "İkili ekstrüzyon" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi." -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi." -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "İlk Direği Etkinleştir" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X yönü motoru için maksimum hız." -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y yönü motoru için maksimum hız." -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "İlk Direk Boyutu" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z yönü motoru için maksimum hız." -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "İlk Direk Genişliği." +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Filamanın maksimum hızı." -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "İlk Direğin Minimum Hacmi" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının maksimum basamak genişliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir." -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir." -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "İlk Direk X Konumu" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Yazıcı başlığının minimum hareket hızı." -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "İlk direk konumunun x koordinatı." +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık." -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "İlk Direk Y Konumu" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Nozül soğumadan önce ekstruderin etkin olmaması gerektiği minimum süre. Ekstruder sadece bu süreden daha uzun bir süre kullanılmadığında bekleme sıcaklığına inebilecektir." -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "İlk direk konumunun y koordinatı." +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz." -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "İlk Direkteki Sürme İnaktif Nozülü" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Desteğin eklendiği çıkıntıların minimum açısı. 0°’de tüm çıkıntılar desteklenirken 90°‘de destek sağlanmaz." -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin." +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." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "Astarlama Direği Kenarı" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Etek veya kenarın minimum uzunluğu. Tüm etek veya kenar hatları birlikte bu uzunluğa ulaşmazsa minimum uzunluğa ulaşılana kadar daha fazla etek veya kenar hattı eklenecektir. Not: Hat sayısı 0’a ayarlanırsa, bu yok sayılır." -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır." +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Orta hat boşluğunu dolduran çok hatlı duvarlar için minimum hat genişliğidir. Bu ayar, iki duvar hattı baskısının hangi model kalınlığında iki dış duvar ve tek bir merkezi orta duvar baskısına geçirileceğini belirler. Daha yüksek Minimum Tek Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum çift duvar hattı genişliği oluşturur. Maksimum tek duvar hattı genişliği, 2 * Minimum Çift Duvar Hattı Genişliği formülüyle hesaplanır." -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sızdırma Kalkanını Etkinleştir" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Normal çokgen duvarlar için minimum hat genişliğidir. Bu ayar, tek bir ince duvar hattının basılmasından iki duvar hattına hangi model kalınlığında geçileceğini belirler. Daha yüksek Minimum Çift Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum tek duvar hattı genişliği oluşmasına yol açar. Maksimum çift duvar hattı genişliği, Dış Duvar Hattı Genişliği + 0,5 * Minimum Tek Duvar Hattı Genişliği formülüyle hesaplanır." -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır." +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Düşük katman süresi nedeniyle yavaşlamaya karşın minimum yazdırma hızı. Yazıcı çok yavaşladığında nozüldeki basınç çok düşük olacak ve kötü yazdırma kalitesiyle sonuçlanacaktır." -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Sızdırma Kalkanı Açısı" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Bir çizginin dilimlemeden sonraki minimum boyutu. Bu değer artırıldıktan sonra örgünün çözünürlüğü düşer. Bu, yazıcının g-kodunu işlemek için gereken hıza yetişmesine olanak tanır ve örtünün zaten işlenemeyecek ayrıntılarını kaldırarak dilimleme hızını artırır." -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Sızdırma kalkanında bir bölümün sahip olacağı en büyük açı. Dikey 0 derece ve yatay 90 derece. Daha küçük bir açı sızdırma kalkanının daha sorunsuz olmasını sağlarken daha fazla malzeme kullanılmasına yol açar." +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Bir hareket çizgisinin dilimlemeden sonraki minimum boyutu. Bunu artırmanız durumunda, hareketlerde köşelerin yumuşaklığı azalır. Bu seçenek, yazıcının g-code işlemek için gereken hızı yakalamasına olanak tanıyabilir ancak model kaçınmasının doğruluğunu azaltabilir." -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Sızdırma Kalkanı Mesafesi" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Basamaklı alanın etkili olması için gereken minimum eğimdir. Düşük değerler, derinliği daha düşük olan eğimlerde desteğin kaldırılmasını kolaylaştırırken, gerçekten düşük değerler ise modelin diğer parçalarında tersine sonuçlar doğurabilir." -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." +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Bir katmanda harcanan minimum süre. Bu süre yazıcıyı yavaşlamaya ve burada en azından bir katmanda ayarlanan süreyi kullanmaya zorlar. Bir sonraki katman yazdırılmadan önce yazdırılan materyalin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılır ve Minimum Hız değeri başka bir şekilde ihlal edilmezse katmanlar yine de minimal katman süresinden daha kısa sürebilir." -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Nozül Anahtarı Geri Çekme Mesafesi" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." -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." +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Modele bağlanması gereken dalın çapının, yapı levhasına erişebilecek dallarla birleşerek en fazla ne kadar artabileceği. Bunu artırmak baskı süresini azaltır, ancak modele dayanan destek alanını artırır" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Nozül Anahtarı Geri Çekme Hızı" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3B yazıcı modelinin adı." -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." +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Nozül Değişiminin Geri Çekme Hızı" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Nozül hareket esnasında daha önce yazdırılmış bölümleri atlar. Bu seçenek sadece tarama etkinleştirildiğinde kullanılabilir." -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." +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir." -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Nozül Değişiminin İlk Hızı" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -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." +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." -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" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." -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." +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 "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ağ Onarımları" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Radyenin tabanı ve yüzeyi arasındaki katman sayısıdır. Bunlar radyenin temel kalınlığını oluşturur. Bu değerin artırılması daha kalın ve sağlam bir radye oluşturur." -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Kafesleri 3D baskı için daha uygun hale getirir." +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." -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Bağlantı Çakışma Hacimleri" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kenar hattı, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar." +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Tüm Boşlukları Kaldır" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Her katmandaki boşlukları ortadan kaldırır ve sadece dış şekli korur. Görünmez tüm iç geometriyi yok sayar. Bununla birlikte, üstten ve alttan görünebilen katman boşluklarını da göz ardı eder." +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "En üstteki yüzey katmanlarının sayısı. Yüksek kalitede üst yüzeyler oluşturmak için genellikle tek bir üst yüzey katmanı yeterlidir." -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Geniş Dikiş" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek dolgusunun çevreleneceği duvar sayısı. Bir duvarın eklenmesi destek yazdırmasını daha güvenilir kılabilir ve çıkıntıları daha iyi destekleyebilir. Ancak yazdırma süresini ve kullanılan malzemeyi artırır." -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık boşlukların dikmeye çalışır. Bu seçenek çok fazla işlem süresi ortaya çıkarabilir." +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüz zeminini çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Bağlı Olmayan Yüzleri Tut" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüz çatısını çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir g-code oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır." +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüzünü çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Birleştirilmiş Bileşim Çakışması" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "Varyasyonun yayılması gereken, merkezden itibaren sayılan duvar sayısı. Düşük değerler olması dış duvarların genişliğinin değişmeyeceğini gösterir." -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir." +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır." -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Bileşim Kesişimini Kaldırın" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Nozül ucunun dış çapı." -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir." +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır." -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternatif Örgü Giderimi" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir." -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Çakışan bileşimlerin birbirine karışması için her bir katmanda bileşim kesişimi hacimlerine göre değişiklik yapın. Bu ayarın kapatılması, bir bileşimin diğer bileşimlerden ayrılarak çakışmadaki tüm hacmi almasına neden olur." +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "En üst yüzeyin şekli." -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Boş İlk Katmanları Kaldır" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Üst/alt katmanların şekli." -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir." +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil." -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maksimum Çözünürlük" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Üst yüzeyleri ütülemek için kullanılacak model." -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Bir çizginin dilimlemeden sonraki minimum boyutu. Bu değer artırıldıktan sonra örgünün çözünürlüğü düşer. Bu, yazıcının g-kodunu işlemek için gereken hıza yetişmesine olanak tanır ve örtünün zaten işlenemeyecek ayrıntılarını kaldırarak dilimleme hızını artırır." +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Destek zeminlerinin yazdırıldığı desen." -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maksimum Hareket Çözünürlüğü" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil." -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Bir hareket çizgisinin dilimlemeden sonraki minimum boyutu. Bunu artırmanız durumunda, hareketlerde köşelerin yumuşaklığı azalır. Bu seçenek, yazıcının g-code işlemek için gereken hızı yakalamasına olanak tanıyabilir ancak model kaçınmasının doğruluğunu azaltabilir." +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Destek çatısının yazdırıldığı desen." -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maksimum Sapma" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum." -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Maksimum Çözünürlük ayarı için çözünürlük azaltıldığında izin verilen maksimum sapma. Bu değeri artırırsanız baskının doğruluğu azalacak ancak g kodu daha küçük olacaktır. Maksimum Sapma, Maksimum Çözünürlük için sınırdır, dolayısıyla iki değer çelişirse Maksimum Sapma her zaman doğru kabul edilir." +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "Modelden kaçınmak zorunda olmadıklarında dalların tercih edilen açısı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Dalların daha hızlı birleşmesi için daha yüksek bir açı kullanın." -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maksimum Ekstrüzyon Alanı Sapması" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Destek yapılarının tercih edilen yerleşimi. Yapılar tercih edilen yere yerleştirilemiyorsa başka bir yere yerleştirilecektir. Bu, onları modelin üzerine yerleştirmek anlamına da gelebilir." -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Ara noktaları düz bir hattan çıkarırken izin verilen maksimum ekstrüzyon alanı sapmasıdır. Bir ara nokta, uzun düz bir hatta genişlik değiştiren nokta olarak hizmet edebilir. Bu nedenle, ara noktanın çıkarılması hattın tek boyutlu bir genişliğe sahip olmasına ve dolayısıyla bir miktar ekstrüzyon alanı kaybetmesine (veya kazanmasına) neden olur. Bu değeri artırırsanız daha fazla ara genişlik değiştiren noktaların kaldırılmasına izin verileceğinden, düz paralel duvarlar arasında az (veya çok) ekstrüzyon görebilirsiniz. Baskının doğruluğu azalacak fakat g kodu daha küçük olacaktır." +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi." -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Akışkan Hareketini Etkinleştir" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli." -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Bu ayar etkinleştirildiğinde, düzgün hareket planlayıcıları olan yazıcılar için takım yolları düzeltilir. Genel takım yolu yönünden sapan küçük hareketler, akışkan hareketlerini iyileştirmek için düzeltilir." +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Baskı kafasının şekli. Bunlar baskı kafasının konumuna göre koordinatlardır ve genellikle ilk ekstrüderin konumunu gösterir. Baskı kafasının sol ve önündeki boyutlar negatif koordinatlar olmalıdır." -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Akışkan Hareketi Kaydırma Mesafesi" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur." -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Taramaya izin verilmeden önce ekstrüzyon yolunda olması gereken en küçük hacim. Daha küçük ekstrüzyon yolları için bowden tüpünde daha az basınç geliştirilir ve bu nedenle taranan hacim doğrusal olarak ölçeklendirilir. Bu değer her zaman Tarama Değerinden daha büyüktür." -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Akışkan Hareketi Küçük Mesafe" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Ortalama nozül soğumasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Ortalama nozül ısınmasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Akışkan Hareket Açısı" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır." -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Bir takım yolu parçası, genel harekete göre bu açıdan daha fazla bir sapma gösterirse düzeltilir." +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız." -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Özel Modlar" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Dolgunun gerçekleştiği hız." -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Yazdırmanın gerçekleştiği hız." -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Yazdırma Dizisi" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." -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 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 "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir." +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Köprü duvarlarının yazdırıldığı hız." -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "Tümünü birden" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Fanların, yazdırma işleminin başındaki dönme hızı. Sonraki katmanlarda fan hızı, Yüksekteki Olağan Fan Hızına karşılık gelen katmana kadar kademeli olarak artar." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Katmanların sınıra ulaşmadan önceki dönüş hızı Katman sınır değerinden daha hızlı yazdırdığında fan hızı giderek maksimum fan hızına yönelir." -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Birer Birer" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Katmanların minimum katman süresindeki dönüş hızı. Sınır değerine ulaşıldığında, fan hızı olağan ve maksimum fan hızı arasında kademeli artış gösterir." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Dolgu Ağı" +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." -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Çakıştığı diğer dolgu ağını düzeltmek için bu ağı kullanın. Bu birleşim için olan bölgelerle diğer birleşimlerin dolgu bölgelerini değiştirir. Bu birleşim için Üst/Alt Dış Katmanı değil sadece bir Duvarı yazdırmak önerilir." +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız." -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Örgü İşleme Sıralaması" +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." -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en yüksek sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir." +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." -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Kesme Örgüsü" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız." -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz." +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." -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Kalıp" +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." -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır." +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız." -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimum Kalıp Genişliği" +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." -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir." +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Kalıp Çatı Yüksekliği" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır." -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik." +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Kalıp Açısı" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "En dış duvarların yazdırıldığı hız. Dış duvarı düşük hızda yazdırmak son yüzey kalitesini artırır. Öte yandan, iç duvar hızı ve dış duvar hızı arasındaki farkın fazla olması kaliteyi olumsuz etkileyecektir." -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Kalıp için oluşturulan dış duvarların çıkıntı açısı. 0° kalıbın dış kovanını dikey hale getirirken, 90° ise modelin dış kısmının model konturunu takip etmesini sağlayacaktır." +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "İlk direğin yazdırıldığı hız. Farklı filamanlar arasındaki yapışma standardın altında olduğunda, ilk direği daha yavaş yazdırmak dayanıklılığı artırabilir." -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Destek Örgüsü" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Yazdırma soğutma fanlarının dönüş hızı." -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir." +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Radyenin yazdırıldığı hız." -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Çıkıntı Önleme Örgüsü" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Destek çatıları ve zeminlerinin yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Bu bileşimi, modelin hiçbir parçasının çıkıntı olarak algılanmadığı durumları belirlemek için kullanın. Bu, istenmeyen destek yapısını kaldırmak için kullanılabilir." +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Destek çatısının yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Yüzey Modu" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Etek ve kenarın yazdırıldığı hız. Bu işlem normalde ilk katman hızında yapılır, ama etek ve kenarı farklı hızlarda yazdırmak isteyebilirsiniz." -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Modeli sadece bir yüzey, gevşek yüzeyli hacim veya hacimler şeklinde işleyin. Normal yazdırma modu sadece kapalı hacimleri yazdırır. “Yüzey”, dolgusu ve üst/alt dış katmanı olmayan birleşim yüzeyini takip eden tek bir duvar yazdırır. “Her ikisi” kapalı hacimleri normal şekilde ve kalan poligonları yüzey şeklinde yazdırır." +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Destek yapısının yazdırıldığı hız. Yüksek hızlardaki yazdırma desteği yazdırma süresini büyük oranda azaltabilir. Destek yapısının yüzey kalitesi, yazdırma işleminden sonra çıkartıldığı için önemli değildir." -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Yüzey" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Her İkisi" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiral Dış Çevre" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z Atlamaları için yapılan dikey Z hareketinin gerçekleştirileceği hızdır. Yapı plakasının veya makine tezgahının hareket etmesi daha zor olduğundan genelde baskı hızından daha düşüktür." -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Dış kenarın Z hareketini helezon şeklinde düzeltir. Böylece yazdırmanın tamamında sabit bir Z artışı oluşur. Bu özellik katı bir modeli, tabanı katı tek bir duvar yazdırmasına dönüştürür. Bu özelliğin sadece tek bir parça içeren tüm tabakalarda etkinleştirilmesi gerekir." +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Duvarların yazdırıldığı hız." -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Helezon Şeklinde Düzeltme" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Üst yüzeyi geçmek için gereken süre." -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklindeki konturları düzeltin (Z dikişi baskıda zor görünmeli ancak katman görünümünde görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini göz önünde bulundurun." +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır." -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Bağıl Ekstrüzyon" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı hız." -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, g-code’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir g-code komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır." +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı hız." -msgctxt "experimental label" -msgid "Experimental" -msgstr "Deneysel" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Hareket hamlelerinin hızı." -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Ekstrüzyon yolu hızına göre tarama sırasındaki hareket hızı. Tarama hareketi sırasında bowden tüpündeki basınç düştüğü için değerin %100’ün altında olması öneriliyor." -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Dilimleme Toleransı" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "İlk katman için hız. Yapı plakasında yapışmayı iyileştirmek için düşük bir değer tavsiye edilir. Yapı plakasının kenar ve radye gibi yapışma yapılarını etkilemez." -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Dilimlenmiş katmanlardaki dikey tolerans. Bir katmanın konturları her katmanın kalınlığının ortasından enine kesitler (Ortalayan) alınarak normal şekilde oluşturulur. Alternatif olarak, her katman, katmanın tüm kalınlığı boyunca hacmin iç kısmına düşen alanlara (Dışlayan) sahip olabilir; veya bir katman, katman içinde herhangi bir yere düşen alanlara (İçeren) sahip olabilir. İçeren seçeneğinde katmandaki çoğu ayrıntı korunur, Dışlayan seçeneği en iyi uyum içindir ve Ortalayan seçeneği ise katmanı orijinal yüzeyin en yakınında tutar." +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "İlk katmanın yazdırılması için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir." -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Ortalayıcı" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "İlk katmandaki hareket hamlelerinin hızı. Daha önce yazdırılan bölümlerin yapı levhasından ayrılmasını önlemek için daha düşük bir değer kullanılması önerilir. Bu ayar değeri, Hareket Hızı ve Yazdırma Hızı arasındaki orana göre otomatik olarak hesaplanabilir." -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Dışlayıcı" +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." -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Kapsayıcı" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz." -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Dolgu Hareket Optimizasyonu" +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ığı." -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Aktifleştirildiğinde, dolgu hatlarının baskı düzeni, hareketi azaltmak için optimize edilir. Elde edilen hareket zamanındaki azalma dilimlenen modele, dolgu şekline ve yoğunluğuna vs. bağlıdır. Birçok ufak dolgu bölgesine sahip bazı modeller için modelin dilimlenme süresi önemli ölçüde artabilir." +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık." -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Akış Sıcaklık Grafiği" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri." +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Yazdırma için kullanılan sıcaklık." -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimum Poligon Çevre Uzunluğu" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "İlk katmanda ısıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ilk katman boyunca ısıtılmaz." -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Bu miktardan daha kısa çevre uzunluğuna sahip dilimlenmiş katmanlardaki poligonlar filtre ile elenecektir. Daha düşük değerler dilimleme süresini uzatacak ancak daha yüksek çözünürlükte bir ağ oluşturacaktır. Genellikle yüksek çözünürlüklü SLA yazıcılarına yöneliktir ve çok fazla detay içeren çok küçük 3D modellerinde kullanılır." +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz." -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "İç İçe Geçen Yapı Oluşturma" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Malzemeyi temizlemek için kullanılan sıcaklık; kabaca mümkün olan en yüksek baskı sıcaklığına eşit olmalıdır." -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Modellerin temas ettiği yerlerde, iç içe geçen bir kiriş yapısı oluşturun. Bu, özellikle farklı malzemelerden basılmış modellerde, modeller arasındaki yapışmayı iyileştirir." +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir." -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "İç İçe Geçme Genişliği" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı." -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "İç içe geçen yapı kirişlerinin genişliği." +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı." -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "İç İçe Geçen Yapı Uyumlaması" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Destek tavanlarının kalınlığı. Modelin bulunduğu desteğin üst kısmındaki yoğun katmanların sayısını kontrol eder." -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "İç İçe Geçen Kiriş Katman Sayısı" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir." -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Yazdırmadaki üst/alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst/alt katmanların sayısını belirtir." -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "İç İçe Geçme Derinliği" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler." -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "İç içe geçen yapı oluşturmak için modeller arası sınırdan hücre sayısı olarak ölçülen mesafe. Çok az hücre kullanmak zayıf yapışmaya neden olur." +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Dolgu malzemesinin her bir katmanının kalınlığı Bu değer her zaman katman yüksekliğinin katı olmalıdır, aksi takdirde yuvarlanır." -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "İç İçe Geçme Sınırından Kaçınma" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Her katmandaki destek dolgusu malzemesinin kalınlığı. Bu değer her zaman katman yüksekliğinin bir katı olmalıdır, aksi takdirde değer yuvarlanır." -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "İç içe geçen yapıların oluşturulmayacağı bir modelin dışından hücre cinsinden ölçülen mesafe." +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Oluşturulacak g-code türü." -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Parçalarda Döküm Desteği" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır." -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Destek yapısının daha kolay kırılması için bazı destek hattı bağlantılarını atlayın. Bu ayar, Zikzak destek dolgusu şekli için geçerlidir." +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Yazdırılabilir alan genişliği (X yönü)." -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Destek Parçasının Boyutu" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Desteğin altına yazdırılacak kenarın genişliği. Daha geniş kenar, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Destek yapısının daha kolay kırılması için her N milimetresinde bir destek hatları arasında bağlantı atlayın." +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "İç içe geçen yapı kirişlerinin genişliği." -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Destek Parçası Hattı Sayısı" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın." +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "İlk Direk Genişliği." -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Cereyan Kalkanını Etkinleştir" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor." -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Modelin etrafında (sıcak) hava ve kalkanlara dışarıdaki hava akımına karşı set çeken bir duvar oluşturur. Özellikle kolayca eğrilebilen malzemeler için kullanışlıdır." +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." -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Cereyan Kalkanı X/Y Mesafesi" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "İlk direk konumunun x koordinatı." -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi." +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "İlk direk konumunun y koordinatı." -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Cereyan Kalkanı Sınırlaması" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir." -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin." +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir." -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Tam" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Sınırlı" +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." -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Cereyan Kalkanı Yüksekliği" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Modelin etrafında (sıcak) hava ve kalkanlara dışarıdaki hava akımına karşı set çeken bir duvar oluşturur. Özellikle kolayca eğrilebilen malzemeler için kullanışlıdır." -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır." +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Uç Çapı" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Çıkıntıyı Yazdırılabilir Yap" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre XY yönünde (yatay olarak) ölçeklenecektir." -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "En az desteğin istenmesi için yazdırılan modelin geometrisini değiştirin. Dik çıkıntılar sığlaşacaktır. Çıkıntılı alanlar daha dikey biçimde olmak için alçalacaktır." +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre Z yönünde (dikey olarak) ölçeklenecektir." -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maksimum Model Açısı" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir." -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Yazdırılabilir yapıldıktan sonra çıkıntıların en büyük açısı. 0° değerindeyken tüm modeller yapı levhasına bağlı bir model parçasıyla değiştirilirken 90° modeli hiçbir şekilde değiştirmez." +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Üst Katmanlar" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maksimum Çıkıntı Deliği Alanı" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Üst Yüzey Genişleme Mesafesi" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Çıkıntıyı Yazdırılabilir Yap işlemiyle çıkarılmadan önce modelin tabanındaki deliğin maksimum alanı. Bu değerden küçük delikler korunacaktır. 0 mm²'lik değer modellerin tabanındaki tüm delikleri dolduracaktır." +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Üst Yüzey Kaldırma Genişliği" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Taramayı Etkinleştir" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Üst Yüzey İç Duvar Hızlanması" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Tarama, ekstrüzyon yolunun son parçasını hareket parça ile değiştirir. Dizimli azaltmak amacıyla sızdırılan malzeme ekstrüzyon yolunun son parçasını yazdırmak için kullanılır." +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Üst Yüzeyin En Dış Duvar Darbesi" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Tarama Hacmi" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Üst Yüzey İç Duvar Hızı" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır." +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Üst Yüzey İç Duvar Akışı" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Tarama Öncesi Minimum Hacim" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Üst Yüzey Dış Duvar Hızlanması" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Taramaya izin verilmeden önce ekstrüzyon yolunda olması gereken en küçük hacim. Daha küçük ekstrüzyon yolları için bowden tüpünde daha az basınç geliştirilir ve bu nedenle taranan hacim doğrusal olarak ölçeklendirilir. Bu değer her zaman Tarama Değerinden daha büyüktür." +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Üst Yüzeyin En Dış Duvar Akışı" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Tarama Hızı" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Üst Yüzeyin İç Duvar Darbesi" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Ekstrüzyon yolu hızına göre tarama sırasındaki hareket hızı. Tarama hareketi sırasında bowden tüpündeki basınç düştüğü için değerin %100’ün altında olması öneriliyor." +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Üst Yüzeyin En Dış Duvar Hızı" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Çapraz 3D Cebin Boyutu" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Üst Yüzey İvmesi" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur." +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Üst Yüzey Ekstruderi" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Üst Yüzeyin Dış Katman Akışı" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Üst Yüzey İvmesi Değişimi" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Üst Yüzey Katmanları" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Üst Yüzey Hat Yönleri" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konik Desteği Etkinleştir" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Üst Yüzey Hat Genişliği" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın." +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Üst Yüzey Şekli" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Konik Destek Açısı" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Üst Yüzey Hızı" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Konik desteğin eğim açısı. Dikey 0 derece ve yatay 90 derece. Daha küçük açılar desteğin daha sağlam olmasını sağlar, ancak çok fazla malzeme içerir. Negatif açılar destek tabanının üst kısımdan daha geniş olmasına yol açar." +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Üst Kalınlık" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Koni Desteğinin Minimum Genişliği" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır ve yüzey alanının genişlemesine neden olmaz; 90°’lik bir açı dikeydir ve tüm yüzey alanlarının genişlemesine neden olur." -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Koni desteği tabanının indirildiği minimum genişlik. Küçük genişlikler, destek tabanlarının dengesiz olmasına neden olur." +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Üst / Alt" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Belirsiz Dış Katman" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Üst / Alt" -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." +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Üst/Alt İvme" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Yalnızca Belirsiz Dış Katman" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Üst/Alt Ekstruderi" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir." +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Üst/Alt Akış" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Belirsiz Dış Katman Kalınlığı" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Üst/Alt Salınımı" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor." +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Üst/Alt Çizgi Yönleri" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Belirsiz Dış Katman Yoğunluğu" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Üst/Alt Hat Genişliği" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Bir katmandaki her bir poligona tanınan noktaların ortalama yoğunluğu. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda düşük yoğunluk sonuçları çözünürlük azalmasıyla sonuçlanabilir." +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Üst/Alt Şekil" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Belirsiz Dış Katman Noktası Mesafesi" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Üst/Alt Hız" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır." +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Üst/Alt Kalınlık" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Yapı Levhasına Dokunma" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe." +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Direk Çapı" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Akış hızı dengeleme çarpanı" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Direk Tavanı Açısı" -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." +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 "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uyarlanabilir Katmanların Kullanımı" +msgctxt "travel label" +msgid "Travel" +msgstr "Hareket" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar." +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Hareket İvmesi" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Uyarlanabilir Katmanların Azami Değişkenliği" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Hareket Atlama Mesafesi" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik." +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Hareket Salınımı" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Hareket Hızı" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı." +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Modeli sadece bir yüzey, gevşek yüzeyli hacim veya hacimler şeklinde işleyin. Normal yazdırma modu sadece kapalı hacimleri yazdırır. “Yüzey”, dolgusu ve üst/alt dış katmanı olmayan birleşim yüzeyini takip eden tek bir duvar yazdırır. “Her ikisi” kapalı hacimleri normal şekilde ve kalan poligonları yüzey şeklinde yazdırır." -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Uyarlanabilir Katman Topografisi Boyutu" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Ağaç" -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." +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Üçlü Altıgen" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Çıkıntılı Duvar Açısı" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -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." +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Çıkıntılı Duvar Hızı" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır." +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Köprü Ayarlarını Etkinleştir" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızını, akışı ve fan ayarlarını değiştirin." +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Gövde Çapı" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimum Köprü Duvarı Uzunluğu" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Bağlantı Çakışma Hacimleri" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." msgstr "Bundan daha kısa desteklenmeyen duvarlar normal duvar ayarları kullanılarak yazdırılacaktır. Daha uzun desteklenmeyen duvarlar köprü duvarı ayarları kullanılarak yazdırılacaktır." -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Köprü Yüzey Alanı Destek Eşiği" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uyarlanabilir Katmanların Kullanımı" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Direkleri kullan" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Hareket hamleleri için ayrı bir ivme oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Hareket hamleleri için ayrı bir salınım oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." -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." +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, g-code’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir g-code komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır." -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Küçük çıkıntı alanlarını desteklemek için özel direkler kullanın. Bu direkler desteklediğimiz bölgeden daha büyük çaptadır. Çıkıntıyı yaklaştırırsanız direklerin çapı azalır ve bir tavan oluşturur." -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 "Seyrek olması düşünülen dolgunun maksimum yoğunluğu. Seyrek dolgu üzerindeki kaplama, desteksiz olacağı düşünülerek köprü kaplaması olarak değerlendirilir." +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Çakıştığı diğer dolgu ağını düzeltmek için bu ağı kullanın. Bu birleşim için olan bölgelerle diğer birleşimlerin dolgu bölgelerini değiştirir. Bu birleşim için Üst/Alt Dış Katmanı değil sadece bir Duvarı yazdırmak önerilir." -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Köprü Duvarı Tarama" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir." -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir." +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Bu bileşimi, modelin hiçbir parçasının çıkıntı olarak algılanmadığı durumları belirlemek için kullanın. Bu, istenmeyen destek yapısını kaldırmak için kullanılabilir." -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Köprü Duvarı Hızı" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Kullanıcı Tarafından Belirtilen" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Köprü duvarlarının yazdırıldığı hız." +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Köprü Duvarı Akışı" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Dilimlenmiş katmanlardaki dikey tolerans. Bir katmanın konturları her katmanın kalınlığının ortasından enine kesitler (Ortalayan) alınarak normal şekilde oluşturulur. Alternatif olarak, her katman, katmanın tüm kalınlığı boyunca hacmin iç kısmına düşen alanlara (Dışlayan) sahip olabilir; veya bir katman, katman içinde herhangi bir yere düşen alanlara (İçeren) sahip olabilir. İçeren seçeneğinde katmandaki çoğu ayrıntı korunur, Dışlayan seçeneği en iyi uyum içindir ve Ortalayan seçeneği ise katmanı orijinal yüzeyin en yakınında tutar." -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Yapı Levhasının Isınmasını Bekle" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Köprü Yüzey Alanı Hızı" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Nozülün Isınmasını Bekle" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız." +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Duvar İvmesi" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Köprü Yüzey Alanı Akışı" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Duvar Dağılım Sayısı" -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Duvar Ekstruderi" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Köprü Yüzey Alanı Yoğunluğu" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Duvar Akışı" -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Duvar Salınımı" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Köprü Fan Hızı" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Duvar Hattı Sayısı" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı." +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Duvar Hattı Genişliği" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Köprüde Birden Fazla Katman Var" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Duvar Sıralaması" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Eğer etkinleştirilirse, havanın üzerindeki ikinci ve üçüncü katmanlar aşağıdaki ayarlar kullanılarak yazdırılır. Aksi halde bu katmanlar normal ayarlar kullanılarak yazdırılır." +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Duvar Hızı" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Köprü İkinci Yüzey Alanı Hızı" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Duvar Kalınlığı" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Duvar Geçişi Uzunluğu" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Köprü İkinci Yüzey Alanı Akışı" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Duvar Geçişi Filtresi Mesafesi" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Duvar Geçişi Eşik Açısı" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "İkinci köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." +msgctxt "shell label" +msgid "Walls" +msgstr "Duvarlar" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" +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." -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "Desteğin üstünde ve altında model bulunduğunda, kontrol sırasında verilen yükseklikte adımlar uygulayın. Daha yüksek değerler, destek arayüzü olması gereken yerlerde yazdırılacak normal destek oluştururken daha düşük değerler daha yavaş dilimler." -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Hızı" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Bu ayar etkinleştirildiğinde, düzgün hareket planlayıcıları olan yazıcılar için takım yolları düzeltilir. Genel takım yolu yönünden sapan küçük hareketler, akışkan hareketlerini iyileştirmek için düzeltilir." -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Aktifleştirildiğinde, dolgu hatlarının baskı düzeni, hareketi azaltmak için optimize edilir. Elde edilen hareket zamanındaki azalma dilimlenen modele, dolgu şekline ve yoğunluğuna vs. bağlıdır. Birçok ufak dolgu bölgesine sahip bazı modeller için modelin dilimlenme süresi önemli ölçüde artabilir." -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Köprü Üçüncü Yüzey Alanı Akışı" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Bu ayar etkinleştirildiğinde, yazıcı soğutma fanının hızı desteğin hemen üzerindeki yüzey bölgeleri için değiştirilir." -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Etkin olduğunda, z dikişi koordinatları her parçanın merkezine göre hizalıdır. Devre dışı olduğunda, koordinatlar yapı levhası üzerinde mutlak bir pozisyonu belirtir." -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz." -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Üçüncü köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Sıfırdan büyük olduğunda, Delik Yatay Büyüme küçük deliklere kademeli olarak uygulanır (küçük delikler daha fazla büyütülür). Sıfır olarak ayarlandığında Delik Yatay Büyüme tüm deliklere uygulanacaktır. Delik Yatay Büyüme Maksimum Çapı’ndan daha büyük delikler genişletilmez." -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Delik Yatay Genişlemesi, sıfırdan büyük olmak koşuluyla, her katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerlerde delikler büyür, negatif değerlerde ise küçülür. Bu ayar etkinleştirildiğinde, Delik Yatay Genişleme Maksimum Çapı ile daha detaylı bir ayarlama yapılabilir." -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Katmanlar Arasındaki Sürme Nozülü" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "clean_between_layers description" -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 "Katmanlar arasına nozül sürme G-Code'u eklenip eklenmeyeceği (katman başına maksimum 1). 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 "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." -msgctxt "max_extrusion_before_wipe description" -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 "Başka bir nozül sürme işlemi başlatılmadan önce ekstrüde edilebilecek maksimum malzeme miktarı. Bu değer, bir katmanda gereken malzeme hacminden daha düşükse ayarın bu katmanda bir etkisi olmayacaktır, yani katman başına bir sürme sınırı vardır." +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Düşük katman süresi nedeniyle minimum hıza inildiğinde yazıcı başlığını yazıcıdan kaldırıp düşük katman süresine ulaşana kadar olan ek süreyi bekleyin." -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Sürme Geri Çekmenin Etkinleştirilmesi" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Modelde yalnızca birkaç katmanda küçük dikey boşluklar varsa normal şartlarda dar alandaki bu katmanların etrafında dış bir katman olmalıdır. Dikey boşluğun çok küçük olduğu durumlarda dış katman oluşturulmaması için bu ayarı etkinleştirin. Böylece baskı ve dilimleme süresi kısalır ancak teknik olarak bakıldığında havayla temasa açık dolgular kalır." -msgctxt "wipe_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." +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "Çift ve tek sayıdaki duvarlar arasında ne zaman geçiş oluşturulacağını gösterir. Bu ayardan daha geniş açıya sahip bir kama şekline geçiş eklenmez ve kalan alanının doldurulması sırasında merkez noktada duvar baskısı yapılmaz. Bu ayarın düşürülmesi bu merkez duvarların sayısını ve uzunluğunu azaltır fakat boşluklara ve aşırı ekstrüzyona neden olabilir." + +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "Farkı sayıda duvar arasından geçerken parça daha ince hale geldiğinden duvar hatlarını bölmek veya birleştirmek için belirli bir alan ayrılır." -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Sürme Geri Çekme Mesafesi" +msgctxt "wipe_hop_enable description" +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 "Sürme sırasında yapı plakası nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu işlem, hareket sırasında nozülün baskıya çarpmasını önler ve baskının devrilerek yapı plakasından düşme olasılığını azaltır." -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı." +msgctxt "retraction_hop_enabled 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 "Geri çekme her yapıldığında, nozül ve baskı arasında açıklık oluşturmak için yapı levhası indirilir. Yapı levhasından baskıya çarpma şansını azaltarak nozülün hareket sırasında baskıya değmesini önler." -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Destek X/Y Mesafesinin Destek Z Mesafesinden veya tersi yönde fazla olup olmadığı. X/Y, Z’den fazla olursa, X/Y mesafesi çıkıntıya olan asıl Z mesafesini etkileyerek desteği modelden iter. Çıkıntıların etrafına X/Y mesafesi uygulayarak bunu engelleyebiliriz." -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir." +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı." -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Sürme Geri Çekme Hızı" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X ekseninin kapamasının pozitif yönde mi (yüksek X koordinatı) yoksa negatif yönde mi (düşük X koordinatı) olduğu." -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız." +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y ekseninin kapamasının pozitif yönde mi (yüksek Y koordinatı) yoksa negatif yönde mi (düşük Y koordinatı) olduğu." -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z ekseninin kapamasının pozitif yönde mi (yüksek Z koordinatı) yoksa negatif yönde mi (düşük Z koordinatı) olduğu." -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız." +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı." -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Ekstrüderlerin tek bir nozülü mü paylaşacağı yoksa her bir ekstrüderin kendi nozülü mü olacağıdır. True olarak ayarlandığında printer-start gcode betiğinin tüm ekstrüderleri bilinen ve karşılıklı olarak uyumlu olan bir ilk geri çekme durumunda (sıfır veya geri çekilmemiş bir filament) düzgün bir şekilde ayarlaması beklenir. Bu durumda ilk geri çekme, ekstrüder başına \"machine_extruders_shared_nozzle_initial_retraction\" parametresi ile açıklanır." -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız." +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı." -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Sürmeyi Durdurma" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği." -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Geri çekmenin geri alınmasından sonraki duraklama." +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi." -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Sürme Z Sıçraması" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Cura üzerinden sıcaklığın kontrol edilip edilmeme ayarı. Nozül sıcaklığını Cura dışından kontrol etmek için bu ayarı kapalı konuma getirin." -msgctxt "wipe_hop_enable description" -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 "Sürme sırasında yapı plakası nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu işlem, hareket sırasında nozülün baskıya çarpmasını önler ve baskının devrilerek yapı plakasından düşme olasılığını azaltır." +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Gcode başlangıcında yapı levhası sıcaklık komutlarını ekleyip eklememe. start_gcode zaten yapı levhası sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Sürme Z Sıçraması Yüksekliği" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Gcode başlangıcında nozül sıcaklık komutlarını ekleyip eklememe. start_gcode zaten nozül sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." +msgctxt "clean_between_layers description" +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 "Katmanlar arasına nozül sürme G-Code'u eklenip eklenmeyeceği (katman başına maksimum 1). 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 "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sürme Sıçrama Hızı" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe." -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız." +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir." -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Sürme Fırçası X Konumu" +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 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 "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir." -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Sürme komutunun başlatılacağı X konumu." +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi." -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Sürme Tekrar Sayısı" +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ğı." -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Nozülün fırçadan geçirilme sayısı." +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe." -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Sürme Hareket Mesafesi" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Tek bir dolgu hattının genişliği." -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi." +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Destek çatısı veya zemininin tek çizgi genişliği." -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maksimum Küçük Delik Boyutu" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği." -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır." +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Tek bir hattın genişliği Genellikle her hattın genişliği nozül genişliğine eşit olmalıdır. Ancak, bu değeri biraz azaltmak daha iyi baskılar üretilmesini sağlayabilir." -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maksimum Küçük Özellik Uzunluğu" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Tek bir ilk direk hattının genişliği." -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır." +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Tek bir etek veya kenar hattının genişliği." -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Küçük Özellik Hızı" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Tek bir destek zemininin çizgi genişliği." -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Tek bir destek çatısının çizgi genişliği." -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Küçük Özellik İlk Katman Hızı" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Tek bir destek yapısı hattının genişliği." -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 "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Tek bir üst/alt hattın genişliği." -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "Duvar Yönlerini Değiştir" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği." -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "Duvar yönlerini her katmanda ve iç dolguda değiştirin. Metal baskıdaki gibi stres oluşturabilen malzemeler için kullanışlıdır." +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Tek bir duvar hattının genişliği." -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Radye İç Köşelerini Kaldır" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Radyenin orta katmanındaki hatların genişliği. İkinci katmanın daha fazla sıkılması hatların yapı levhasına yapışmasına neden olur." -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Radye Tabanı Duvar Sayısı" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "En dıştaki duvar hattının genişliği. Bu değeri azaltarak daha yüksek seviyede ayrıntılar yazdırılabilir." -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Komut Satırı Ayarları" +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Modelin ince yüz hatlarının yerini alacak duvarın genişliğidir (Minimum Yüz Hattı Boyutuna göre). Minimum Duvar Hattı Genişliği, yüz hattının kalınlığından daha inceyse duvar da yüz hattının kendisi kadar kalınlaştırılacaktır." -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar." +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Sürme Fırçası X Konumu" -msgctxt "center_object label" -msgid "Center Object" -msgstr "Nesneyi ortalayın" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sürme Sıçrama Hızı" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi." +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "İlk Direkteki Sürme İnaktif Nozülü" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Sürme Hareket Mesafesi" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "Bileşim konumu X" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Katmanlar Arasındaki Sürme Nozülü" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Nesneye x yönünde uygulanan ofset." +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Sürmeyi Durdurma" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "Bileşim konumu Y" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Sürme Tekrar Sayısı" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Nesneye y yönünde uygulanan ofset." +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Sürme Geri Çekme Mesafesi" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "Bileşim konumu Z" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Sürme Geri Çekmenin Etkinleştirilmesi" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz." +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "Bileşim Rotasyon Matrisi" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı" -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 "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Kademeli akış etkin" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Sürme Geri Çekme Hızı" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Sürme Z Sıçraması" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Kademeli akış maksimum ivme" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Sürme Z Sıçraması Yüksekliği" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Kademeli akış değişiklikleri için maksimum ivme" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dolgu İçinde" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "İlk katman maksimum akış ivmesi" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Aktif olmayan araca geçici komut gönderildikten sonra aktif aracı yazın. Smoothie veya modal araç komutlarına sahip diğer donanım yazılımları ile Çift Ekstrüderli baskı için gereklidir." -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X Kapaması Pozitif Yönde" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Kademeli akış ayrıştırma adım boyutu" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Sürme komutunun başlatılacağı X konumu." -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Kademeli akış değişimindeki her adımın süresi" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y, Z’den fazla" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Akış süresini sıfırla" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y Kapaması Pozitif Yönde" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z Kapaması Pozitif Yönde" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z Sıçraması Yüksekliği" -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z Atlama Hızı" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Geri Çekildiğinde Z Sıçraması" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z Dikiş Hizalama" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z Dikişi Konumu" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z Dikişi Göreliliği" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z Dikişi X" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z Dikişi Y" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z, X/Y’den fazla" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "material label" -msgid "Material" -msgstr "Malzeme" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Dış Duvarları Grupla" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Üst Yüzeyin En Dış Duvar Akışı" +msgctxt "travel description" +msgid "travel" +msgstr "hareket" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "Baskıdan desteğin altına olan mesafe." -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Üst Yüzey İç Duvar Akışı" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "Destek yapısının üst/alt kısmından baskıya olan mesafe. Bu boşluk, model yazdırıldıktan sonra desteklerin sökülmesi için açıklık sağlar. Bu değer, katman yüksekliğinin iki katına kadar yuvarlanır." -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "Kademeli akış değişimindeki her adımın süresi" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Üst Yüzeyin En Dış Duvar Hızı" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "Kademeli akış değişikliklerini etkinleştir. Bu ayar etkinleştirildiğinde, akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, ekstruder motoru çalıştırıldığında/durdurulduğunda akışın hemen değişmediği, bowden tüplü yazıcılar için kullanışlı bir özelliktir." -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "Bu değerden daha uzun herhangi bir hareket için, malzeme akışı hedef akışına sıfırlanır" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Üst Yüzey İç Duvar Hızı" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "Kademeli akış ayrıştırma adım boyutu" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "Kademeli akış etkin" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Üst Yüzey Dış Duvar Hızlanması" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "Kademeli akış maksimum ivme" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "İlk katman maksimum akış ivmesi" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Üst Yüzey İç Duvar Hızlanması" +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "Kademeli akış değişiklikleri için maksimum ivme" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "İlk katmandaki kademeli akış değişiklikleri için minimum hız" -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Üst Yüzeyin İç Duvar Darbesi" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "Astarlama Direği Kenarı" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "Model ihtiyaç duymasa da astarlama direkleri bir kenarın sağladığı ekstra yapışkanlığa ihtiyaç duyabilir. Şu anda \"radye\" yapışma tipi ile birlikte kullanılamamaktadır." -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Üst Yüzeyin En Dış Duvar Darbesi" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "Akış süresini sıfırla" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "İlk katmanı yazdırmak için kullanılan sıcaklık. İlk katmanın özel kullanımını devre dışı bırakmak için 0’a ayarlayın." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 7a2268de52c..ee4a7db83bc 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,6 +12,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -135,8 +136,14 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*需重新启动该应用程序,这些更改才能生效。" msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- 从 Marketplace 添加材料配置文件和插件\n- 备份和同步材料配置文件和插件\n- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- 从 Marketplace 添加材料配置文件和插件\n" +"- 备份和同步材料配置文件和插件\n" +"- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" msgctxt "@heading" msgid "-- incomplete --" @@ -162,6 +169,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 文件" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 读取器" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 写入器" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF 编写器插件已损坏。" @@ -182,29 +197,57 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "只有用户更改的设置才会保存在自定义配置文件中。
    对于支持材料,新的自定义配置文件将从 %1 继承属性。" +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL 渲染器: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 供应商: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 版本: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

    \n

    请使用“发送报告”按钮将错误报告自动发布到我们的服务器

    \n " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

    \n" +"

    请使用“发送报告”按钮将错误报告自动发布到我们的服务器

    \n" +" " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    糟糕,Ultimaker Cura 似乎遇到了问题。

    \n

    在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

    \n

    您可在配置文件夹中找到备份。

    \n

    请向我们发送此错误报告,以便解决问题。

    \n " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    糟糕,Ultimaker Cura 似乎遇到了问题。

    \n" +"

    在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

    \n" +"

    您可在配置文件夹中找到备份。

    \n" +"

    请向我们发送此错误报告,以便解决问题。

    \n" +" " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

    \n

    {model_names}

    \n

    找出如何确保最好的打印质量和可靠性.

    \n

    查看打印质量指南

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

    \n" +"

    {model_names}

    \n" +"

    找出如何确保最好的打印质量和可靠性.

    \n" +"

    查看打印质量指南

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -223,6 +266,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF 文件" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 读取器" + msgctxt "@label" msgid "Abort" msgstr "中止" @@ -259,6 +306,10 @@ msgctxt "@button" msgid "Accept" msgstr "接受" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" + msgctxt "@label" msgid "Account synced" msgstr "帐户已同步" @@ -351,6 +402,7 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手动添加打印机" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "正在从您的帐户添加打印机 {name} ({model})" @@ -387,10 +439,23 @@ msgctxt "@button" msgid "Agree" msgstr "同意" +msgctxt "@item:inlistbox" +msgid "All Files (*)" +msgstr "所有文件 (*)" + +#, python-brace-format +msgctxt "@item:inlistbox" +msgid "All Supported Types ({0})" +msgstr "所有支持的文件类型 ({0})" + msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "允许发送匿名数据" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "允许加载和显示 G-code 文件。" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "总是询问" @@ -463,6 +528,7 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "您确定要将 %1 移至队列顶部吗?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "是否确实要暂时删除 {printer_name}?" @@ -471,6 +537,11 @@ msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." msgstr "你确定要开始一个新项目吗?这将清除打印平台及任何未保存的设置。" +msgctxt "@label (%1 is object name)" +msgid "Are you sure you wish to remove %1? This cannot be undone!" +msgstr "您确认要删除 %1?该操作无法恢复!" + +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "是否确实要删除 {0}?此操作无法撤消!" @@ -483,6 +554,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "排列网格中的所有模型" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "" + msgctxt "@label:button" msgid "Ask a question" msgstr "提问" @@ -531,6 +606,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "备份并重置配置" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "备份和还原配置。" + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "备份和同步材料设置和插件" @@ -543,6 +622,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "备份" +msgctxt "@label" +msgid "Balanced" +msgstr "平衡" + msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" @@ -619,10 +702,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "无法连接到 UltiMaker 打印机?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "无法在添加打印机前从 {0} 导入配置文件。" +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "如果加载 G-code,则无法打开其他任何文件。{0} 已跳过导入" @@ -631,6 +716,10 @@ msgctxt "@info:error" msgid "Can't write to UFP file:" msgstr "无法写入到 UFP 文件:" +msgctxt "@action:button" +msgid "Cancel" +msgstr "取消" + msgctxt "@button" msgid "Cancel" msgstr "取消" @@ -691,8 +780,21 @@ msgctxt "@label" msgid "Checking..." msgstr "正在检查..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "检查以进行固件更新。" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" msgctxt "@action:inmenu menubar:edit" @@ -771,6 +873,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "压缩 G-code 文件" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "压缩 G-code 读取器" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "压缩 G-code 写入器" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "配置更改" @@ -807,6 +917,10 @@ msgctxt "@title:window" msgid "Confirm Diameter Change" msgstr "确认直径更改" +msgctxt "@title:window" +msgid "Confirm Remove" +msgstr "确认删除" + msgctxt "@action:button" msgid "Connect" msgstr "连接" @@ -839,6 +953,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "通过云连接" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "咨询 UltiMaker 社区。" @@ -879,6 +997,7 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "不能从用户数据目录创建存档: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "尝试写入到 {device} 时找不到文件名。" @@ -891,6 +1010,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "无法解释服务器的响应。" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "无法连接到市场。" @@ -903,6 +1026,12 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "未能将材料存档保存到 {}:" +#, python-brace-format +msgctxt "@info:status Don't translate the XML tags or !" +msgid "Could not save to {0}: {1}" +msgstr "无法保存到 {0}{1}" + +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "无法保存到可移动磁盘 {0}:{1}" @@ -911,17 +1040,32 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "无法将数据上传到打印机。" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "无法启用 EnginePlugin:{self._plugin_id}\n没有执行进程的权限。" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"无法启用 EnginePlugin:{self._plugin_id}\n" +"没有执行进程的权限。" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "无法启用 EnginePlugin:{self._plugin_id}\n操作系统正在阻止它(杀毒软件?)" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"无法启用 EnginePlugin:{self._plugin_id}\n" +"操作系统正在阻止它(杀毒软件?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "无法启用 EnginePlugin:{self._plugin_id}\n资源暂时不可用" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"无法启用 EnginePlugin:{self._plugin_id}\n" +"资源暂时不可用" msgctxt "@title:window" msgid "Crash Report" @@ -963,6 +1107,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "在 Digital Library 中创建打印项目。" +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "正在创建您的备份..." @@ -975,10 +1123,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura 备份" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 备份" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 配置文件" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 配置文件读取器" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 配置文件写入器" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 项目 3MF 文件" @@ -991,13 +1151,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 无法启动" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。" msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "Cura 由 Ultimaker B.V. 与社区合作开发。\nCura 使用以下开源项目:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"Cura 由 Ultimaker B.V. 与社区合作开发。\n" +"Cura 使用以下开源项目:" msgctxt "@label" msgid "Cura language" @@ -1007,6 +1172,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 后端" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "币种:" @@ -1087,10 +1264,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "默认" -msgctxt "@label" -msgid "Default" -msgstr "默认" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "切换到不同配置文件时对设置值更改的默认操作: " @@ -1263,10 +1436,12 @@ msgctxt "@action:button" msgid "Eject" msgstr "弹出" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "弹出可移动设备 {0}" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" @@ -1291,6 +1466,10 @@ msgctxt "@label" msgid "Enabled" msgstr "已启用" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" + msgctxt "@title:label" msgid "End G-code" msgstr "结束 G-code" @@ -1319,6 +1498,10 @@ msgctxt "@text" msgid "Enter your printer's IP address." msgstr "输入您打印机的 IP 地址。" +msgctxt "@info:title" +msgid "Error" +msgstr "错误" + msgctxt "@title:groupbox" msgid "Error traceback" msgstr "错误追溯" @@ -1363,6 +1546,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "导出成功" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "配置文件已导出至: {0} " @@ -1371,6 +1555,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "用插件和材料配置文件扩展 UltiMaker Cura。" +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "扩展程序(允许用户创建脚本进行后期处理)" + msgctxt "@label" msgid "Extruder" msgstr "挤出机" @@ -1407,6 +1595,7 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "无法创建材料存档以与打印机同步。" +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" @@ -1415,22 +1604,27 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "无法导出材料至 %1%2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "无法将配置文件导出至 {0} {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "无法将配置文件导出至 {0} : 写入器插件报告故障。" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "无法从 {0} 导入配置文件:{1}" @@ -1463,6 +1657,15 @@ msgctxt "@label" msgid "Filament weight" msgstr "耗材重量" +msgctxt "@title:window" +msgid "File Already Exists" +msgstr "文件已存在" + +msgctxt "@info:title" +msgid "File Saved" +msgstr "文件已保存" + +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "文件 {0} 不包含任何有效的配置文件。" @@ -1495,6 +1698,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "固件升级" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "固件更新检查程序" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "固件更新程序" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。" @@ -1591,6 +1802,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "GCode 文件" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code 配置文件读取器" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code 读取器" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 写入器" + msgctxt "@label" msgid "G-code flavor" msgstr "G-code 风格" @@ -1623,6 +1846,10 @@ msgctxt "@label" msgid "Gantry Height" msgstr "十字轴高度" +msgctxt "@title:tab" +msgid "General" +msgstr "基本" + msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" @@ -1655,6 +1882,7 @@ msgctxt "@label" msgid "Grid Placement" msgstr "网格放置" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "组 #{group_nr}" @@ -1727,6 +1955,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" +msgctxt "name" +msgid "Image Reader" +msgstr "图像读取器" + msgctxt "@action:button" msgid "Import" msgstr "导入" @@ -1975,6 +2207,10 @@ msgctxt "@action" msgid "Learn more" msgstr "了解详情" +msgctxt "@action:button" +msgid "Learn more" +msgstr "详细了解" + msgctxt "@button" msgid "Learn more" msgstr "详细了解" @@ -2003,6 +2239,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "左视图" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "旧版 Cura 配置文件读取器" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "向开发人员报错。" @@ -2083,6 +2323,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "日志" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "记录某些事件,以使其可供崩溃报告器使用" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "与打印机的连接中断" @@ -2091,6 +2335,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "打印机设置" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "打印机设置操作" + msgctxt "@backuplist:label" msgid "Machines" msgstr "机器" @@ -2103,6 +2351,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "发送文件之前,请确保 G-code 适用于当前打印机和打印机配置。当前 G-code 文件可能不准确。" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理材料..." @@ -2151,6 +2415,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "在此处管理您的 UltiMaker Cura 插件和材料配置文件。请确保将插件保持为最新,并定期备份设置。" +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "管理 UltiMaker 联网打印机的网络连接。" + msgctxt "@label" msgid "Manufacturer" msgstr "制造商" @@ -2163,6 +2435,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "市场" +msgctxt "name" +msgid "Marketplace" +msgstr "市场" + msgctxt "@action:label" msgid "Material" msgstr "材料" @@ -2179,6 +2455,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "材料颜色" +msgctxt "name" +msgid "Material Profiles" +msgstr "材料配置文件" + msgctxt "@label" msgid "Material Type" msgstr "材料类型" @@ -2223,6 +2503,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "模式" +msgctxt "name" +msgid "Model Checker" +msgstr "模型检查器" + msgctxt "@info:title" msgid "Model Errors" msgstr "模型错误" @@ -2239,6 +2523,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "监控" +msgctxt "name" +msgid "Monitor Stage" +msgstr "监视阶段" + msgctxt "@action:button" msgid "Monitor print" msgstr "监控打印" @@ -2312,6 +2600,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "网络错误" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "新 %s 稳定固件可用" @@ -2324,6 +2613,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "新的 UltiMaker 打印机可连接到 Digital Factory,用户可对其进行远程监控。" +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将其更新为 {latest_version} 版。" @@ -2369,6 +2659,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "无可用成本估计" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "没有可导入文件 {0} 的自定义配置文件" @@ -2477,6 +2768,10 @@ msgctxt "@label" msgid "Number of Extruders" msgstr "挤出机数目" +msgctxt "@action:button" +msgid "OK" +msgstr "确定" + msgctxt "@label" msgid "OS language" msgstr "操作系统语言" @@ -2497,6 +2792,7 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "只显示顶层" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "一次只能加载一个 G-code 文件。{0} 已跳过导入" @@ -2629,7 +2925,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" msgstr "从剪贴板粘贴" -#. @Lokalise Translation Team Is this a verb? msgctxt "@label" msgid "Pause" msgstr "暂停" @@ -2654,6 +2949,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "单一模型设置" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "单一模型设置工具" + msgid "Perspective" msgstr "透视" @@ -2690,8 +2989,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "在授权此应用程序时,须提供所需权限。" msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "请确保您的打印机已连接:\n- 检查打印机是否已启动。\n- 检查打印机是否连接至网络。\n- 检查您是否已登录查找云连接的打印机。" +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"请确保您的打印机已连接:\n" +"- 检查打印机是否已启动。\n" +"- 检查打印机是否连接至网络。\n" +"- 检查您是否已登录查找云连接的打印机。" msgctxt "@text" msgid "Please name your printer" @@ -2705,6 +3012,10 @@ msgctxt "@info" msgid "Please provide a name for this profile." msgstr "请为此配置文件提供名称。" +msgctxt "@info" +msgid "Please provide a new name." +msgstr "" + msgctxt "@text" msgid "Please read and agree with the plugin licence." msgstr "请阅读并同意插件许可。" @@ -2714,8 +3025,16 @@ msgid "Please remove the print" msgstr "请取出打印件" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "请检查设置并检查您的模型是否:\n- 适合构建体积\n- 分配给了已启用的挤出器\n- 尚未全部设置为修改器网格" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"请检查设置并检查您的模型是否:\n" +"- 适合构建体积\n" +"- 分配给了已启用的挤出器\n" +"- 尚未全部设置为修改器网格" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2765,6 +3084,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "后期处理" +msgctxt "name" +msgid "Post Processing" +msgstr "后期处理" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "后期处理插件" @@ -2781,6 +3104,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "准备" +msgctxt "name" +msgid "Prepare Stage" +msgstr "准备阶段" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "初始化中..." @@ -2801,6 +3128,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "预览" +msgctxt "name" +msgid "Preview Stage" +msgstr "预览阶段" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "装填塔" @@ -2927,6 +3258,10 @@ msgctxt "@info:tooltip" msgid "Printer settings will be updated to match the settings saved with the project." msgstr "打印机设置将更新,以便与项目一起保存的设置相一致。" +msgctxt "@title:tab" +msgid "Printers" +msgstr "打印机" + msgctxt "info:status" msgid "Printers added from Digital Factory:" msgstr "从 Digital Factory 添加的打印机:" @@ -2987,6 +3322,7 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "配置文件设置" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "配置 {0} 文件类型未知或已损坏。" @@ -3011,18 +3347,22 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "编程语言" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "项目文件 {0} 包含未知机器类型 {1}。无法导入机器。将改为导入模型。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "项目文件 {0} 损坏: {1}。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "项目文件 {0} 是用此 UltiMaker Cura 版本未识别的配置文件制作的。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "突然无法访问项目文件 {0}{1}。" @@ -3031,6 +3371,106 @@ msgctxt "@label" msgid "Properties" msgstr "属性" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "为固件更新提供操作选项。" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 Cura 中提供监视阶段。" + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "提供一个基本的实体网格视图。" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "在 Cura 中提供准备阶段。" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 中提供预览阶段。" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供可移动磁盘热插拔和写入文件的支持。" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "提供了对导出 Cura 配置文件的支持。" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "提供了对导入 Cura 配置文件的支持。" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供了从 GCode 文件中导入配置文件的支持。" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "支持从 Cura 旧版本导入配置文件。" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供对读取 3MF 格式文件的支持。" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供对读取 AMF 文件的支持。" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "为读取 Ultimaker 格式包提供支持。" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "支持读取 X3D 文件。" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供对读取模型文件的支持。" + +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "提供对写入 3MF 文件的支持。" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "为写入 Ultimaker 格式包提供支持。" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "提供对每个模型的单独设置。" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透视视图。" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供 CuraEngine 切片后端的路径。" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "提供切片层数据的预览。" + msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" @@ -3051,6 +3491,7 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。" @@ -3067,6 +3508,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "退出 %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "从压缩存档文件读取 G-code。" + msgctxt "@button" msgid "Recommended" msgstr "推荐" @@ -3119,6 +3564,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "可移动磁盘" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "可移动磁盘输出设备插件" + msgctxt "@action:button" msgid "Remove" msgstr "删除" @@ -3135,6 +3584,10 @@ msgctxt "@action:button" msgid "Rename" msgstr "重命名" +msgctxt "@title:window" +msgid "Rename" +msgstr "" + msgctxt "@title:window" msgid "Rename Profile" msgstr "重命名配置文件" @@ -3271,14 +3724,21 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "保存至可移动磁盘" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "保存到可移动磁盘 {0}" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "保存到可移动磁盘 {0} :{1}" +msgctxt "@info:title" +msgid "Saving" +msgstr "正在保存" + +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "保存到可移动磁盘 {0} " @@ -3371,6 +3831,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "正在将材料发送到打印机" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry 日志记录" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "串口通讯库" @@ -3403,6 +3867,10 @@ msgctxt "@label" msgid "Settings" msgstr "设置" +msgctxt "@title:tab" +msgid "Settings" +msgstr "设置" + msgctxt "@info:message Followed by a list of settings." msgid "Settings have been changed to match the current availability of extruders:" msgstr "已根据挤出机的当前可用性更改设置:" @@ -3563,6 +4031,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "登录 UltiMaker 平台" +msgctxt "name" +msgid "Simulation View" +msgstr "仿真视图" + msgctxt "@tooltip" msgid "Skin" msgstr "表层" @@ -3591,6 +4063,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "当设置被更改时自动进行切片。" +msgctxt "name" +msgid "Slice info" +msgstr "切片信息" + msgctxt "@message:title" msgid "Slicing failed" msgstr "切片失败" @@ -3607,13 +4083,23 @@ msgctxt "@action:label" msgid "Smoothing" msgstr "平滑" +msgctxt "name" +msgid "Solid View" +msgstr "实体视图" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "实体视图" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "一些隐藏设置正在使用有别于一般设置的计算值。\n\n单击以使这些设置可见。" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"一些隐藏设置正在使用有别于一般设置的计算值。\n" +"\n" +"单击以使这些设置可见。" msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3628,8 +4114,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "在 %1 中定义的一些设置值已被覆盖。" msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "某些设置/重写值与存储在配置文件中的值不同。\n\n点击打开配置文件管理器。" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"某些设置/重写值与存储在配置文件中的值不同。\n" +"\n" +"点击打开配置文件管理器。" msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3655,8 +4147,6 @@ msgctxt "@action:inmenu" msgid "Sponsor Cura" msgstr "赞助 Cura" -#. @Lokalise Translation Team "Sponsor" as "refer" ? -#. @Lokalise Translation Team "Sponsor" as "refer" ? msgctxt "@label:button" msgid "Sponsor Cura" msgstr "赞助 Cura" @@ -3701,6 +4191,10 @@ msgctxt "@label" msgid "Strength" msgstr "强度" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "成功导出材料至: %1" @@ -3709,6 +4203,7 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "成功导入材料 %1" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" @@ -3729,6 +4224,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "支撑拦截器" +msgctxt "name" +msgid "Support Eraser" +msgstr "支持橡皮擦" + msgctxt "@tooltip" msgid "Support Infill" msgstr "支撑填充" @@ -3834,6 +4333,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "备份超过了最大文件大小。" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "平衡配置旨在在生产力、表面质量、机械性能和尺寸精度之間取得平衡。" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "距离打印平台的底板高度,以毫米为单位。" @@ -3890,6 +4393,11 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "用于打印支撑的挤出机组。 用于多重挤出。" +#, python-brace-format +msgctxt "@label Don't translate the XML tag !" +msgid "The file {0} already exists. Are you sure you want to overwrite it?" +msgstr "文件 {0} 已存在。您确定要覆盖它吗?" + msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." msgstr "新打印机出厂配备的固件完全可以正常使用,但新版本往往具有更多的新功能和改进。" @@ -3948,8 +4456,22 @@ msgid "The nozzle inserted in this extruder." msgstr "该挤出机所使用的喷嘴。" msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "打印的填充材料的图案:\n\n对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 \n\n对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。\n\n对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"打印的填充材料的图案:\n" +"\n" +"对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 \n" +"\n" +"对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。\n" +"\n" +"对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4100,6 +4622,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "这台打印机是一组共 %1 台打印机的主机。" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "此配置文件 {0} 包含错误数据,无法导入。" @@ -4113,8 +4636,14 @@ msgid "This project contains materials or plugins that are currently not install msgstr "此项目包含 Cura 目前未安装的材料或插件。
    请安装缺失程序包,然后重新打开项目。" msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "此设置的值与配置文件不同。\n\n单击以恢复配置文件的值。" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"此设置的值与配置文件不同。\n" +"\n" +"单击以恢复配置文件的值。" msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4130,8 +4659,14 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。" msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "此设置通常可被自动计算,但其当前已被绝对定义。\n\n单击以恢复自动计算的值。" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"此设置通常可被自动计算,但其当前已被绝对定义。\n" +"\n" +"单击以恢复自动计算的值。" msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4157,6 +4692,7 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "要自动将材料配置文件与连接到 Digital Factory 的所有打印机同步,您需要登录 Cura。" +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "要建立连接,请访问 {website_link}" @@ -4169,6 +4705,7 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}" @@ -4217,6 +4754,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 阅读器" + msgctxt "@button" msgid "Troubleshooting" msgstr "故障排除" @@ -4233,10 +4774,26 @@ msgctxt "@action:label" msgid "Type" msgstr "类型" +msgctxt "@label" +msgid "Type" +msgstr "类型" + +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 读取器" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 写入器" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 联机打印" +msgctxt "name" +msgid "USB printing" +msgstr "USB 联机打印" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker 帐户" @@ -4253,6 +4810,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker 格式包" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 网络连接" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker 验证包" @@ -4261,6 +4822,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker 验证插件" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 车床操作" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker 打印机" @@ -4273,6 +4838,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "无法添加配置文件。" @@ -4281,13 +4850,19 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "无法在成形空间体积内放下全部模型" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "无法为以下对象找到本地 EnginePlugin 服务器可执行文件:{self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "无法关闭正在运行的 EnginePlugin:{self._plugin_id}\n访问被拒。" +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"无法关闭正在运行的 EnginePlugin:{self._plugin_id}\n" +"访问被拒。" msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4309,10 +4884,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "无法切片(原因:主塔或主位置无效)。" +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "因部分特定模型设置而无法切片。 以下设置在一个或多个模型上存在错误: {error_labels}" @@ -4321,6 +4898,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" @@ -4369,6 +4947,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "未知包" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "上传打印作业时出现未知错误代码:{0}" @@ -4433,13 +5012,117 @@ msgctxt "@button" msgid "Updating..." msgstr "正在更新..." -msgctxt "@action:button" -msgid "Upload custom Firmware" -msgstr "上传自定义固件" - -msgctxt "@info:status" -msgid "Uploading print job to printer." -msgstr "正在将打印作业上传至打印机。" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "从Cura 3.3升级到Cura 3.4。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" + +msgctxt "@action:button" +msgid "Upload custom Firmware" +msgstr "上传自定义固件" + +msgctxt "@info:status" +msgid "Uploading print job to printer." +msgstr "正在将打印作业上传至打印机。" msgctxt "@info:backup_status" msgid "Uploading your backup..." @@ -4465,6 +5148,110 @@ msgctxt "@label Description for application dependency" msgid "Utility library, including Voronoi generation" msgstr "实用程序库,包括 Voronoi 图生成" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "版本自 2.1 升级到 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "版本自 2.2 升级到 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "版本自 2.5 升级到 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "版本自 2.6 升级到 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "版本自 2.7 升级到 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "版本自 3.0 升级到 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "版本自 3.2 升级到 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "版本升级3.3到3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "版本自 3.4 升级到 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "版本自 3.5 升级到 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "版本自 4.0 升级到 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "版本自 4.1 升级到 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "版本从 4.11 升级到 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "版本从 4.13 升级到 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "版本自 4.2 升级至 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "版本自 4.3 升级至 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "版本从 4.4 升级至 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "版本从 4.5 升级至 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "版本从 4.6.0 升级到 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "版本从 4.6.2 升级到 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "将版本从 4.7 升级到 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "版本从 4.8 升级到 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "版本从 4.9 升级到 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "版本自 5.2 升级到 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "版本 5.3 升级到 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "版本 5.4 升级到 5.5" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "在 Digital Factory 中查看打印机" @@ -4513,6 +5300,11 @@ msgctxt "@button" msgid "Want more?" msgstr "想要更多?" +msgctxt "@info:title" +msgid "Warning" +msgstr "警告" + +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。" @@ -4573,6 +5365,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "宽度 (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "将 G-code 写入至压缩存档文件。" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "将 G-code 写入至文件。" + msgctxt "@label" msgid "X (Width)" msgstr "X (宽度)" @@ -4585,6 +5385,10 @@ msgctxt "@label" msgid "X min" msgstr "X 最小值" +msgctxt "name" +msgid "X-Ray View" +msgstr "透视视图" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "透视视图" @@ -4597,6 +5401,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D 文件" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 读取器" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (深度)" @@ -4614,18 +5422,30 @@ msgid "Yes" msgstr "是" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "您即将从 Cura 中删除所有打印机。此操作无法撤消。\n是否确定继续?" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"您即将从 Cura 中删除所有打印机。此操作无法撤消。\n" +"是否确定继续?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n是否确实要继续?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n" +"是否确实要继续?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "您正在尝试连接未运行 UltiMaker Connect 的打印机。请将打印机升级到最新固件。" +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。" @@ -4636,7 +5456,10 @@ msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "您已经自定义了若干配置文件设置。\n是否要在切换配置文件后保留这些更改的设置?\n或者,也可舍弃更改以从“%1”加载默认值。" +msgstr "" +"您已经自定义了若干配置文件设置。\n" +"是否要在切换配置文件后保留这些更改的设置?\n" +"或者,也可舍弃更改以从“%1”加载默认值。" msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4666,9 +5489,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "新打印机将自动出现在 Cura 中" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "未能通过云连接您的打印机 {printer_name}。\n只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" +" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"未能通过云连接您的打印机 {printer_name}。\n" +"只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" msgctxt "@label" msgid "Z" @@ -4726,6 +5554,7 @@ msgctxt "@label" msgid "version: %1" msgstr "版本: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "将删除 {printer_name},直到下次帐户同步为止。" @@ -4734,630 +5563,9 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} 个插件下载失败" -msgid "Provides support for exporting Cura profiles." -msgstr "为导出 Cura 配置文件提供支持。" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 配置文件写入器" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" - -msgctxt "name" -msgid "Slice info" -msgstr "切片信息" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "默认" -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "支持从 Cura 旧版本导入配置文件。" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "旧版 Cura 配置文件读取器" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "支持读取 X3D 文件。" - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 读取器" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "为写入 Ultimaker 格式包提供支持。" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 写入器" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "版本自 3.5 升级到 4.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "版本自 4.1 升级到 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "将版本从 4.7 升级到 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "版本从 4.9 升级到 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "版本自 3.2 升级到 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "版本自 2.7 升级到 3.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "版本从 4.11 升级到 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "版本自 2.6 升级到 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "版本从 4.8 升级到 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "版本自 4.3 升级至 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "从Cura 3.3升级到Cura 3.4。" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "版本升级3.3到3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "版本从 4.4 升级至 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "版本自 2.5 升级到 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "版本自 2.1 升级到 2.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "版本自 4.2 升级至 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "版本自 5.2 升级到 5.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "版本自 4.0 升级到 4.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "版本自 2.2 升级到 2.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "版本自 3.4 升级到 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "版本从 4.13 升级到 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "版本 5.4 升级到 5.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "版本从 4.5 升级至 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "版本自 3.0 升级到 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "版本从 4.6.0 升级到 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "版本从 4.6.2 升级到 4.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "版本 5.3 升级到 5.4" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "扩展程序(允许用户创建脚本进行后期处理)" - -msgctxt "name" -msgid "Post Processing" -msgstr "后期处理" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "提供切片层数据的预览。" - -msgctxt "name" -msgid "Simulation View" -msgstr "仿真视图" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供了对导入 Cura 配置文件的支持。" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 配置文件读取器" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供对每个模型的单独设置。" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "单一模型设置工具" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 中提供预览阶段。" - -msgctxt "name" -msgid "Preview Stage" -msgstr "预览阶段" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" - -msgctxt "name" -msgid "Support Eraser" -msgstr "支持橡皮擦" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允许加载和显示 G-code 文件。" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 读取器" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "备份和还原配置。" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 备份" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供可移动磁盘热插拔和写入文件的支持。" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "可移动磁盘输出设备插件" - -#. Shall I keep CuraEngine together and untranslated? Until further notice I will keep it as is. -#. Same question. -#. +1 -#. +1 -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" - -#. @Lokalise Translation Team Is this translatable? -#. +1 -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" - -msgctxt "name" -msgid "Material Profiles" -msgstr "材料配置文件" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 车床操作" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透视视图。" - -msgctxt "name" -msgid "X-Ray View" -msgstr "透视视图" - -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "管理 UltiMaker 联网打印机的网络连接。" - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker 网络连接" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "打印机设置操作" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供对读取模型文件的支持。" - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 阅读器" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" - -msgctxt "name" -msgid "Marketplace" -msgstr "市场" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 Cura 中提供监视阶段。" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "监视阶段" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" - -msgctxt "name" -msgid "Image Reader" -msgstr "图像读取器" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "为固件更新提供操作选项。" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "固件更新程序" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供 CuraEngine 切片后端的路径。" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 后端" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 Cura 中提供准备阶段。" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "准备阶段" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "检查以进行固件更新。" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "固件更新检查程序" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "将 G-code 写入至文件。" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 写入器" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" - -msgctxt "name" -msgid "Model Checker" -msgstr "模型检查器" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供对读取 3MF 格式文件的支持。" - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 读取器" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" - -msgctxt "name" -msgid "USB printing" -msgstr "USB 联机打印" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供对读取 AMF 文件的支持。" - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 读取器" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "提供了从 GCode 文件中导入配置文件的支持。" - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code 配置文件读取器" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一个基本的实体网格视图。" - -msgctxt "name" -msgid "Solid View" -msgstr "实体视图" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "记录某些事件,以使其可供崩溃报告器使用" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry 日志记录" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "从压缩存档文件读取 G-code。" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "压缩 G-code 读取器" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "为读取 Ultimaker 格式包提供支持。" - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 读取器" - -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "提供对写入 3MF 文件的支持。" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 写入器" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "将 G-code 写入至压缩存档文件。" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "压缩 G-code 写入器" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "提供了对导出 Cura 配置文件的支持。" - -msgctxt "@info:title" -msgid "Error" -msgstr "错误" - -msgctxt "@action:button" -msgid "Cancel" -msgstr "取消" - -msgctxt "@title:tab" -msgid "Settings" -msgstr "设置" - -#, python-brace-format -msgctxt "@label Don't translate the XML tag !" -msgid "The file {0} already exists. Are you sure you want to overwrite it?" -msgstr "文件 {0} 已存在。您确定要覆盖它吗?" - -msgctxt "@action:button" -msgid "Learn more" -msgstr "详细了解" - -msgctxt "@title:tab" -msgid "General" -msgstr "基本" - -msgctxt "@label (%1 is object name)" -msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "您确认要删除 %1?该操作无法恢复!" - -msgctxt "@label" -msgid "Type" -msgstr "类型" - -msgctxt "@info:title" -msgid "Saving" -msgstr "正在保存" - -msgctxt "@title:window" -msgid "File Already Exists" -msgstr "文件已存在" - -#, python-brace-format -msgctxt "@item:inlistbox" -msgid "All Supported Types ({0})" -msgstr "所有支持的文件类型 ({0})" - -#, python-brace-format -msgctxt "@info:status Don't translate the XML tags or !" -msgid "Could not save to {0}: {1}" -msgstr "无法保存到 {0}{1}" - -msgctxt "@action:button" -msgid "OK" -msgstr "确定" - -msgctxt "@info:title" -msgid "Warning" -msgstr "警告" - -msgctxt "@title:tab" -msgid "Printers" -msgstr "打印机" - -msgctxt "@info:title" -msgid "File Saved" -msgstr "文件已保存" - -msgctxt "@title:window" -msgid "Confirm Remove" -msgstr "确认删除" - -msgctxt "@item:inlistbox" -msgid "All Files (*)" -msgstr "所有文件 (*)" - -msgctxt "@label" -msgid "Balanced" -msgstr "平衡" - -msgctxt "@text" -msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "平衡配置旨在在生产力、表面质量、机械性能和尺寸精度之間取得平衡。" +#~ msgid "Provides support for exporting Cura profiles." +#~ msgstr "为导出 Cura 配置文件提供支持。" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 84f2f59e15e..f7f4772e6f7 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-06-08 16:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,242 +12,242 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" - -msgctxt "extruder_nr label" -msgid "Extruder" -msgstr "挤出机" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "用于打印的挤出机,在多挤出机情况下适用。" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "挤出机打印冷却风扇" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "在切离此挤出机时执行的结束 G-code。" -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。" +msgctxt "extruder_nr label" +msgid "Extruder" +msgstr "挤出机" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "挤出机的结束 G-code" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "在切离此挤出机时执行的结束 G-code。" - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "挤出机终点绝对位置" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "挤出机结束位置 X 坐标" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 X 坐标。" - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "挤出机终点位置 Y 坐标" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 Y 坐标。" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "挤出机打印冷却风扇" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "挤出机的开始 G-code" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "在切换到此挤出机时执行的开始 G-code。" - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "挤出机起点绝对位置" -msgctxt "machine_extruder_start_pos_abs description" -msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" - msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" msgstr "挤出机起始位置 X 坐标" -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "打开挤出机时起始位置的 X 坐标。" - msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" msgstr "挤出机起始位置 Y 坐标" -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "打开挤压机时的起始位置 Y 坐标。" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" + +msgctxt "machine_extruder_start_pos_abs description" +msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." +msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" + +msgctxt "material description" +msgid "Material" +msgstr "材料" + +msgctxt "material label" +msgid "Material" +msgstr "材料" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "喷嘴 ID" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "喷嘴 X 轴偏移量" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "喷嘴 X 轴坐标偏移。" - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "喷嘴 Y 轴偏移量" -msgctxt "machine_nozzle_offset_y description" -msgid "The y-coordinate of the offset of the nozzle." -msgstr "喷嘴 Y 轴坐标偏移。" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "在切换到此挤出机时执行的开始 G-code。" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "用于打印的挤出机,在多挤出机情况下适用。" msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" -msgctxt "material label" -msgid "Material" -msgstr "材料" - -msgctxt "material description" -msgid "Material" -msgstr "材料" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 X 坐标。" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "喷嘴 X 轴坐标偏移。" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "打开挤出机时起始位置的 X 坐标。" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 Y 坐标。" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" +msgctxt "machine_nozzle_offset_y description" +msgid "The y-coordinate of the offset of the nozzle." +msgstr "喷嘴 Y 轴坐标偏移。" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "打开挤压机时的起始位置 Y 坐标。" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "群組外牆" +#~ msgctxt "wall_0_material_flow_roofing description" +#~ msgid "Flow compensation on the top surface outermost wall line." +#~ msgstr "頂部最外牆流量補償" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "在相同層中,不同島嶼的外牆按順序印製。啟用時,減少流量變化的量,因為牆壁一次印刷一種類型;停用時,減少島嶼之間的行程數,因為相同島嶼的牆壁被分組。" +#~ msgctxt "wall_x_material_flow_roofing description" +#~ msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +#~ msgstr "所有牆線,除了最外面的牆線,頂部牆線的流動補償" -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "頂部最外牆流" +#~ msgctxt "group_outer_walls label" +#~ msgid "Group Outer Walls" +#~ msgstr "群組外牆" -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "頂部最外牆流量補償" +#~ msgctxt "group_outer_walls description" +#~ msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +#~ msgstr "在相同層中,不同島嶼的外牆按順序印製。啟用時,減少流量變化的量,因為牆壁一次印刷一種類型;停用時,減少島嶼之間的行程數,因為相同島嶼的牆壁被分組。" -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "頂部內壁流" +#~ msgctxt "acceleration_wall_x_roofing description" +#~ msgid "The acceleration with which the top surface inner walls are printed." +#~ msgstr "頂部內壁印製時的加速度" -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "所有牆線,除了最外面的牆線,頂部牆線的流動補償" +#~ msgctxt "acceleration_wall_0_roofing description" +#~ msgid "The acceleration with which the top surface outermost walls are printed." +#~ msgstr "頂部最外牆的印刷加速度" -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "頂部外牆速度" +#~ msgctxt "jerk_wall_x_roofing description" +#~ msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +#~ msgstr "印刷頂部最外牆的最大瞬時速度變化。" -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "頂部最外牆印製時的速度" +#~ msgctxt "jerk_wall_0_roofing description" +#~ msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +#~ msgstr "印刷頂部內壁的最大瞬時速度變化。" -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "頂部內壁速度" +#~ msgctxt "speed_wall_x_roofing description" +#~ msgid "The speed at which the top surface inner walls are printed." +#~ msgstr "頂部內壁印製時的速度" -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "頂部內壁印製時的速度" +#~ msgctxt "speed_wall_0_roofing description" +#~ msgid "The speed at which the top surface outermost wall is printed." +#~ msgstr "頂部最外牆印製時的速度" -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "頂部外牆加速度" +#~ msgctxt "acceleration_wall_x_roofing label" +#~ msgid "Top Surface Inner Wall Acceleration" +#~ msgstr "頂部內壁加速度" -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "頂部最外牆的印刷加速度" +#~ msgctxt "jerk_wall_x_roofing label" +#~ msgid "Top Surface Inner Wall Jerk" +#~ msgstr "頂部最外牆突變" -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "頂部內壁加速度" +#~ msgctxt "speed_wall_x_roofing label" +#~ msgid "Top Surface Inner Wall Speed" +#~ msgstr "頂部內壁速度" -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "頂部內壁印製時的加速度" +#~ msgctxt "wall_x_material_flow_roofing label" +#~ msgid "Top Surface Inner Wall(s) Flow" +#~ msgstr "頂部內壁流" -msgctxt "jerk_wall_0_roofing label" -msgid "頂部內壁突變" -msgstr "Saccade de la paroi externe de la surface supérieure" +#~ msgctxt "acceleration_wall_0_roofing label" +#~ msgid "Top Surface Outer Wall Acceleration" +#~ msgstr "頂部外牆加速度" -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "印刷頂部內壁的最大瞬時速度變化。" +#~ msgctxt "wall_0_material_flow_roofing label" +#~ msgid "Top Surface Outer Wall Flow" +#~ msgstr "頂部最外牆流" -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "頂部最外牆突變" +#~ msgctxt "speed_wall_0_roofing label" +#~ msgid "Top Surface Outer Wall Speed" +#~ msgstr "頂部外牆速度" -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "印刷頂部最外牆的最大瞬時速度變化。" +#~ msgctxt "jerk_wall_0_roofing label" +#~ msgid "頂部內壁突變" +#~ msgstr "Saccade de la paroi externe de la surface supérieure" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index bc387cc497d..7d2c837e5c8 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 15:53+0200\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,5398 +12,5538 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "机器类型" +msgctxt "ironing_inset description" +msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." +msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "您的 3D 打印机型号的名称。" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "显示打印机变体" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "开始 G-code" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。" -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "在开始时执行的 G-code 命令 - 以 \n 分行。" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "结束 G-code" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "在结束前执行的 G-code 命令 - 以 \n 分行。" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "材料 GUID" +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。" -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "材料 GUID,此项为自动设置。" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "包含不允许喷嘴进入区域的多边形列表。" -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "等待打印平台加热" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "包含不允许打印头进入区域的多边形列表。" -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "是否插入一条命令,等待开始时达到打印平台温度。" +msgctxt "brim_inside_margin description" +msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." +msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。" -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "等待喷嘴加热" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)" -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "是否等待开始时达到喷嘴温度。" +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "绝对挤出机主要位置" -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "包含材料温度" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "自适应图层最大变化" -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。" +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "自适应图层地形尺寸" -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "包含打印平台温度" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "自适应图层变化步长" -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "自适应图层根据模型形状计算图层高度。" -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "机器宽度" +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。\n" +"在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "机器可打印区域宽度(X 坐标)" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "机器深度" +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "附着倾向" -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "机器可打印区域深度(Y 坐标)" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "机器高度" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "机器可打印区域高度(Z 坐标)" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "调整打印填充的密度。" -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "打印平台形状" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "打印平台形状(不考虑不可打印区域)。" +msgctxt "support_tree_top_rate description" +msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "调整用于生成分支顶端的支撑结构的密度。高数值可以确保悬垂质量更好,但支撑结构会更难去除。用支撑顶板获取极高数值,或者确保顶层的支撑密度同样高。" -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "矩形" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "类圆形" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "打印平台材料" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "打印平台材料已安装在打印机上。" +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "玻璃" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "铝" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "所有" -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "有加热打印平台" +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "同时打印" -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "机器是否有加热打印平台。" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "具有构建体积温度稳定性" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "交替备用壁" -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "机器是否能够稳定构建体积温度。" +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "交替网格移除" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "交替壁方向" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "铝" msgctxt "machine_always_write_active_tool label" msgid "Always Write Active Tool" msgstr "始终写入活动工具" -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "在移动开始打印外壁时始终回抽。" -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "位于中心" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "挤出机数目" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "应用到支撑底板的偏移量。" -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "已启用的挤出机数目" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "应用到支撑顶板的偏移量。" -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "已启用的挤出机组数目;软件自动设置" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "应用到支撑接触面多边形的偏移量。" -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "喷嘴外径" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "喷嘴尖端的外径。" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "喷嘴长度" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "防悬网格" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "喷嘴尖端与打印头最低部分之间的高度差。" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "防渗出回抽位置" -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "喷嘴角度" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "防渗出回抽速度" -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "加热区长度" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。" -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "空驶时避开已打印部分" -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "启用喷嘴温度控制" +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "避免移动时支撑" -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。" +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "返回" -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "升温速度" +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "左后方" -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "右后方" -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "两者都" -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "最短时间待机温度" +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "两者重叠" -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底部层数" -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code 风格" +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底层图案起始层" -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "需要生成的 G-code 类型。" +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底部皮肤扩展距离" -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底部皮肤移除宽度" -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin(容积)" +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底层厚度" -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "分支密度" -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "分支直径" -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "分支直径角度" -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "断裂缓冲期回抽位置" -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "断裂缓冲期回抽速度" -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "断裂缓冲期温度" -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "断裂回抽位置" -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "固件收回" +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "断裂回抽速度" -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 属性来收回材料。" +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "折断温度" -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "挤出器共用加热器" +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "将支撑结构分拆成块状" -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "连桥风扇速度" -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "挤出器共用喷嘴" +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "连桥有多层" -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。" +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "连桥第二层表面密度" -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共用喷嘴初始缩回" +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "连桥第二层表面风扇速度" -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "连桥第二层表面流量" -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "不允许区域" +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "连桥第二层表面速度" -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "包含不允许打印头进入区域的多边形列表。" +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "连桥表面密度" -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "喷嘴不允许区域" +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "连桥表面流量" -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "包含不允许喷嘴进入区域的多边形列表。" +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "连桥表面速度" -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "机器头和风扇多边形" +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "连桥表面支撑阈值" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "连桥稀疏填充物最大密度" -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "十字轴高度" +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "连桥第三层表面密度" -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。" +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "连桥第三层表面风扇速度" -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "挤出机偏移量" +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "连桥第三层表面流量" -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "连桥第三层表面速度" -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "绝对挤出机主要位置" +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "桥壁滑行" -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "桥壁流量" -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 轴最大速度" +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "桥壁速度" -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 轴方向电机的最大速度。" +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 轴最大速度" +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "边沿距离" -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大速度。" +msgctxt "brim_inside_margin label" +msgid "Brim Inside Avoid Margin" +msgstr "修剪内部对象避免留白" -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 轴最大速度" +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Brim 走线计数" -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大速度。" +msgctxt "brim_outside_only label" +msgid "Brim Only on Outside" +msgstr "仅在外部打印 Brim" -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "E 轴最大速度" +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim 替换支撑" -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "耗材的最大速度。" +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Brim 宽度" -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "X 轴最大加速度" +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 轴方向电机的最大加速度" +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "打印平台附着挤出机" -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "轴最大加速度" +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "打印平台附着类型" -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大加速度。" +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "打印平台材料" -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 轴最大加速度" +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "打印平台形状" -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大加速度。" +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "打印平台温度" -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "挤出电机最大加速度" +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "打印平台温度起始层" -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "耗材电机的最大加速度。" +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "打印体积温度" -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "默认加速度" +msgctxt "center_object label" +msgid "Center Object" +msgstr "中心点" -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "打印头移动的默认加速度。" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "默认 X-Y 平面抖动速度(Jerk)" +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "水平面移动的默认抖动速度。" +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "滑行速度" -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "默认 Z 轴抖动速度(Jerk)" +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "滑行体积" -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 轴方向电机的默认抖动速度。" +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "默认挤出电机 Jerk" +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "梳理模式" -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "耗材电机的默认抖动速度。" +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "每毫米步数 (X)" +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "命令行设置" -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。" +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "每毫米步数 (Y)" +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。" +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "每毫米步数 (Z)" +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。" +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "每毫米步数 (E)" +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心" -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "正向 X 限位开关" +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。" +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心圆" -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "正向 Y 限位开关" +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "锥形支撑角度" -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。" +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "锥形支撑最小宽度" -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "正向 Z 限位开关" +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "连接填充走线" -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。" +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "连接填充多边形" -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小进料速率" +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "连接支撑线" -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "打印头的最低移动速度。" +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "连接支撑锯齿形" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "连接顶部/底部多边形" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "进料装置驱动轮的直径" +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "进料装置中材料驱动轮的直径。" +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "在 0 到 1 范围内设置风扇速度" +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。" +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" -msgctxt "resolution label" -msgid "Quality" -msgstr "质量" +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "交叉" -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "交叉" -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "层高" +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "交叉 3D" -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "交叉 3D 气槽大小" -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "起始层高" +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "交叉填充密度图象" -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "交叉加密图像密度" -msgctxt "line_width label" -msgid "Line Width" -msgstr "走线宽度" +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "晶体材料" -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "立方体" -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "走线宽度(壁)" +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "立方体分区" -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "单一壁线宽度。" +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "立方体分区外壳" -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "走线宽度(外壁)" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "切割网格" -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "走线宽度(内壁)" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "默认加速度" -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "默认打印平台温度" -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "走线宽度(顶层 / 底层)" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "默认挤出电机 Jerk" -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "单一顶层/底层走线宽度。" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "默认打印温度" -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "走线宽度(填充)" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "默认 X-Y 平面抖动速度(Jerk)" -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "单一填充走线宽度。" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "默认 Z 轴抖动速度(Jerk)" -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "走线宽度(Skirt / Brim)" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "水平面移动的默认抖动速度。" -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 轴方向电机的默认抖动速度。" -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "走线宽度(支撑结构)" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "耗材电机的默认抖动速度。" -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "单一支撑结构走线宽度。" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "走线宽度(支撑接触面)" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。" -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "支撑顶板或底板单一走线宽度。" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "支撑顶板走线宽度" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "单一支撑顶板走线宽度。" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "支撑底板走线宽度" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "单一支撑底板走线宽度。" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "扩大直径以匹配模型" -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "装填塔走线宽度" +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "接触打印平台时,每个分支可能达到的直径。提高床附着力。" -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "单一装填走线宽度。" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。" -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "起始层走线宽度" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "不允许区域" -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" -msgctxt "shell label" -msgid "Walls" -msgstr "墙" +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" -msgctxt "shell description" -msgid "Shell" -msgstr "外壳" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "壁挤出机" +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "用于打印壁的挤出机组。 用于多重挤出。" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁挤出机" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "用于打印外壁的挤出机组。 用于多重挤出。" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "从支撑顶部到打印品的距离。" -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁挤出机" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "用于打印内壁的挤出机组。 用于多重挤出。" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁厚" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。" -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "防风罩在 X/Y 方向与打印品的距离。" -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "壁走线次数" +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "渗出罩在 X/Y 方向距打印品的距离。" -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距悬垂的距离。" -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "壁过渡长度" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距打印品的距离。" -msgctxt "wall_transition_length description" -msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." -msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "移动距离点,使路径平滑" -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "壁分派次数" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "移动距离点,使路径平滑" -msgctxt "wall_distribution_count description" -msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "壁过渡阈值角度" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "防风罩高度" -msgctxt "wall_transition_angle description" -msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." -msgstr "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "防风罩限制" -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "壁过渡筛选距离" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "防风罩 X/Y 距离" -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "下拉式支撑网格" -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "壁过渡筛选边距" +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "双重挤出" -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "类圆形" -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁擦嘴长度" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "启用加速度控制" -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "启用连桥设置" -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁嵌入" +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "启用滑行" -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "启用锥形支撑" -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "优化壁打印顺序" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "启用防风罩" -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "启用流体运动" -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "壁顺序" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "启用熨平" -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "启用抖动速度控制" -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "从内到外" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "启用喷嘴温度控制" -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "从外到内" +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "启用渗出罩" -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "交替备用壁" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "启用装填光点" -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "启用装填塔" -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小壁走线宽度" +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "开启打印冷却" -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "启用回抽" -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数壁走线宽度" +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "启用支撑 Brim" -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。" +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "启用支撑底板" -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数壁走线宽度" +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "启用支撑接触面" -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。" +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "启用支撑顶板" -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "打印薄壁" +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "启用空驶加速度" -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "启用空驶抖动速度" -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小特征尺寸" +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" -msgctxt "min_feature_size description" -msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." -msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。" -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄壁走线宽度" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平扩展" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "结束 G-code" -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "起始层水平扩展" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "耗材末端清除长度" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "耗材末端清除速度" -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "孔洞水平扩展" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全部支撑" -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "当大于零时,“孔水平膨胀”是应用于每层所有孔的偏移量。正值会增加孔的大小,负值会减少孔的大小。当此设置启用时,可以使用“孔水平膨胀最大直径”进一步细化。" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "不包含" -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "孔洞水平扩展最大直径" +msgctxt "experimental label" +msgid "Experimental" +msgstr "实验性" -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "大于零时,孔洞水平扩展会逐渐适应小孔洞(小孔洞可以扩展更多)。设为零时,孔洞水平扩展可以应用于所有孔洞。大于孔洞水平扩展最大直径时,孔洞不会被扩展。" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "外露缝隙" -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 缝对齐" +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "广泛缝合" -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "用户指定" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "额外填充壁计数" -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "额外皮肤壁计数" -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "随机" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "喷嘴切换后的额外装填材料。" -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "最尖角" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 缝位置" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "在该位置附近开始打印层中各个部分。" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "左后方" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "挤出器共用加热器" -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "返回" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "挤出器共用喷嘴" -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "右后方" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "挤出冷却速度调节器" -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右侧" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。" -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "右前方" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "风扇速度" -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前方" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "风扇速度覆盖" -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "左前方" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左侧" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "尚未完全充实的功能。" -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 缝 X" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "进料装置驱动轮的直径" -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最终打印温度" -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 缝 Y" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "固件收回" -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "第一层支撑挤出机" -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "缝隙角偏好设置" +msgctxt "material_flow label" +msgid "Flow" +msgstr "流量" -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "流量均衡比" -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "无" +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量补偿因子" -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "隐藏缝隙" +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量补偿最大挤出偏移值" -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "外露缝隙" +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "流量温度图" -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "隐藏或外露缝隙" +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 "第一层的流量补偿:起始层挤出的材料量乘以此值。" -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "智能隐藏" +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "第一层底部走线的流量补偿" -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z 缝相对" +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "填充走线的流量补偿。" -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支撑顶板或底板走线的流量补偿。" -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "顶 / 底层" +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "打印顶部区域走线的流量补偿。" -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "顶 / 底层" +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "装填塔走线的流量补偿。" -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "顶部皮肤挤出机" +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "裙边或边缘走线的流量补偿。" -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支撑底板走线的流量补偿。" -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "顶部表面皮肤层" +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支撑顶板走线的流量补偿。" -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支撑结构走线的流量补偿。" -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "顶部表面皮肤线宽" +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "第一层最外壁走线的流量补偿。" -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "打印顶部区域单一走线宽度。" +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最外壁走线的流量补偿。" -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "顶部表面皮肤图案" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "" -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "最顶层图案。" +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "" -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "顶部/底部走线的流量补偿。" -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。" -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "单调顶部表面顺序" +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "壁走线的流量补偿。" -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流量补偿:挤出的材料量乘以此值。" -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "顶部表面皮肤走线方向" +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "流体运动角" -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "流体运动移动距离" -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "顶部/底部挤出机" +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "流体运动小距离" -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "冲洗清除长度" -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "顶层 / 底层厚度" +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "冲洗清除速度" -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "顶层厚度" +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前方" -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "左前方" -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "顶部层数" +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "右前方" -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "完整" -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底层厚度" +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "模糊皮肤" -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。" +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "模糊皮肤密度" -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底部层数" +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "仅外部模糊皮肤" -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。" +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "模糊皮肤点距离" -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初始底层数" +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "模糊皮肤厚度" -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 "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code 风格" -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "顶部 / 底部走线图案" +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "" +"在结束前执行的 G-code 命令 - 以 \n" +" 分行。" -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "顶层/底层图案。" +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "" +"在开始时执行的 G-code 命令 - 以 \n" +" 分行。" -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直线" +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "材料 GUID,此项为自动设置。" -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "十字轴高度" -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "生成互锁结构" -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底层图案起始层" +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "生成支撑" -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "打印品底部第一层上的图案。" +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直线" +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "连接顶部/底部多边形" +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "玻璃" -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "单调顶部/底部顺序" +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "渐进填充步阶高度" -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "顶层/底层走线方向" +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "渐进填充步阶" -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "渐进支撑填充步阶高度" -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "顶宽/底宽较小" +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "渐进支撑填充步阶" -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "顶部/底部小区域用墙壁填充,而不是默认顶部/底部图案。这有助于避免剧烈运动。最顶层(暴露在空气中)默认关闭此选项(见“表面顶部/底部小区域”)。" +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。" -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "表面顶部/底部小区域" +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。" +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 间隙内无表层" +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。" +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "额外皮肤壁计数" +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "网格" -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "启用熨平" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "" -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "仅熨平最高层" +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "具有构建体积温度稳定性" -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "熨平图案" +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "有加热打印平台" -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "用于熨平顶部表面的图案。" +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "升温速度" -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "加热区长度" -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "单调熨平顺序" +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "隐藏缝隙" -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "隐藏或外露缝隙" -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "熨平走线间距" +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "孔洞水平扩展" -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "熨平走线之间的距离。" +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "孔洞水平扩展最大直径" -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "熨平流量" +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平扩展" -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "熨平嵌入" +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平缩放因子收缩补偿" -msgctxt "ironing_inset description" -msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." -msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "耗材受热拉伸但不断裂的极限长度。" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "熨平速度" +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "材料在停止渗出前所需的回抽长度。" -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "通过顶部表面的速度。" +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 "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "熨平加速度" +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的长度。" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "执行熨平的加速度。" +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "耗材在回抽过程中恰好折断的回抽速率。" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "熨平抖动速度" +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "执行熨平时的最大瞬时速度变化。" +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "皮肤重叠百分比" +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "切换到其他材料后,装填材料的速度如何。" -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料能在干燥存储区之外安全存放多长时间。" -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "皮肤重叠" +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。" -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。" -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "肤移除宽度" +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。" -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "顶部皮肤移除宽度" +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底部皮肤移除宽度" +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "重叠时支撑接触面和支撑的交互方式。目前仅对支撑顶板实施。" -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "皮肤扩展距离" +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "将分支放在模型上时,分支的必要高度。防止出现小的支撑光点。分支支撑着支撑顶板时,此设置将被忽略。" -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" +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 "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "顶部皮肤扩展距离" +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "如果刀具路径段偏离一般运动的角度大于这个角度,使路径平滑。" -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底部皮肤扩展距离" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "最大扩展皮肤角度" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "包含打印平台温度" -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "最小扩展皮肤宽度" +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "包含材料温度" -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 "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包含" -msgctxt "infill label" +msgctxt "infill description" msgid "Infill" msgstr "填充" -msgctxt "infill description" +msgctxt "infill label" msgid "Infill" msgstr "填充" -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "填充挤出机" +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "填充加速度" -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "用于打印填充的挤出机组。 用于多重挤出。" +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "先填充物后壁" msgctxt "infill_sparse_density label" msgid "Infill Density" msgstr "填充密度" -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "调整打印填充的密度。" +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "填充挤出机" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "填充流量" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "填充抖动速度" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "填充层厚度" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "填充走线方向" msgctxt "infill_line_distance label" msgid "Infill Line Distance" msgstr "填充走线距离" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "填充走线乘数" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "走线宽度(填充)" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "填充网格" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "填充悬垂角" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "填充重叠" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "填充重叠百分比" msgctxt "infill_pattern label" msgid "Infill Pattern" msgstr "填充图案" -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "填充速度" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "填充支撑" -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "直线" +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "填充物空驶优化" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "填充物擦拭距离" -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "内六角" +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "填充 X 轴偏移量" -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "立方体" +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "填充 Y 轴偏移量" -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "立方体分区" +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初始底层数" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "八角形" +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "起始风扇速度" -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "四面体" +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "起始层加速度" -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "起始层底部流量" -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "起始层直径" -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "交叉" +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "起始层流量" -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "交叉 3D" +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "起始层高" -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "起始层水平扩展" -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "闪电形" +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "起始层内壁流量" -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "连接填充走线" +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "起始层抖动速度" -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "起始层走线宽度" -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "连接填充多边形" +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "起始层外壁流量" -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "起始层打印加速度" -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "填充走线方向" +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "起始层打印抖动速度" -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。" +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "起始层打印速度" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "填充 X 轴偏移量" +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "起始层速度" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "填充图案沿 X 轴移动此距离。" +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "起始层支撑走线距离" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "填充 Y 轴偏移量" +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "起始层空驶加速度" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "填充图案沿 Y 轴移动此距离。" +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "起始层空驶抖动速度" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "起始层空驶速度" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "起始层 Z 重叠" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "起始打印温度" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内壁加速度" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内壁挤出机" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内壁抖动速度" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "速度(内壁)" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内壁流量" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "开始随机化填充" +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "走线宽度(内壁)" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。" +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "填充走线乘数" +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "从内到外" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "偏好接触面走线" -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "额外填充壁计数" +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "偏好接触面" -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。\n在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "互锁梁层数" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "立方体分区外壳" +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "互锁梁宽度" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "互锁边界回避" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "填充重叠百分比" +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "互锁深度" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "互锁结构方向" -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "填充重叠" +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "仅熨平最高层" -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "熨平加速度" -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "填充物擦拭距离" +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "熨平流量" -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "熨平嵌入" -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "填充层厚度" +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "熨平抖动速度" -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "熨平走线间距" -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "渐进填充步阶" +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "熨平图案" -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "熨平速度" -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "渐进填充步阶高度" +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "位于中心" -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的填充高度。" +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "支撑材料" -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "先填充物后壁" +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "这种材料通常被用作打印的支撑材料吗" -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小填充区域" +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "保留断开连接的面" -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "填充支撑" +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "层高" -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "层开始 X" -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "填充悬垂角" +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "层开始 Y" -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。" +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "皮肤边缘支撑厚度" +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中间 Raft 层的层厚度。" -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "支撑皮肤边缘的额外填充物的厚度。" +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "顶部 Raft 层的层厚度。" -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "皮肤边缘支撑层数" +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "支撑皮肤边缘的填充物的层数。" +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左侧" -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "闪电形填充支撑角" +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "打印头提升" -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "闪电形" msgctxt "lightning_infill_overhang_angle label" msgid "Lightning Infill Overhang Angle" msgstr "闪电形填充悬垂角" -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" - msgctxt "lightning_infill_prune_angle label" msgid "Lightning Infill Prune Angle" msgstr "闪电形填充修剪角" -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" - msgctxt "lightning_infill_straightening_angle label" msgid "Lightning Infill Straightening Angle" msgstr "闪电形填充矫直角" -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "默认打印温度" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "闪电形填充支撑角" -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "打印体积温度" +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "限制分支长度" -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "打印环境温度。若为 0,将不会调整构建体积温度。" +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)" -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "打印温度" +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "用于打印的温度。" +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "有限" -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "打印温度起始层" +msgctxt "line_width label" +msgid "Line Width" +msgstr "走线宽度" -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。" +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "直线" -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "起始打印温度" +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加热到可以开始打印的打印温度时的最低温度。" +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最终打印温度" +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "打印结束前开始冷却的温度。" +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "走线" -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "挤出冷却速度调节器" +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "直线" -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直线" -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "默认打印平台温度" +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直线" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "打印平台温度" +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。" +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "机器深度" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "打印平台温度起始层" +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "机器头和风扇多边形" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。" +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "机器高度" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "附着倾向" +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "机器类型" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "表面附着倾向。" +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "机器宽度" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "表面能" +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面能。" +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "使悬垂可打印" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "缩放因子收缩补偿" +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "使底部的支撑区域小于悬垂处的支撑区域。" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平缩放因子收缩补偿" +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。" +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直缩放因子收缩补偿" +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." +msgstr "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。" +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "使网格更适合 3D 打印。" -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "晶体材料" +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "防渗出回抽位置" +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin(容积)" -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "材料在停止渗出前所需的回抽长度。" +msgctxt "material description" +msgid "Material" +msgstr "材料" -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "防渗出回抽速度" +msgctxt "material label" +msgid "Material" +msgstr "材料" -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "材料 GUID" -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "断裂缓冲期回抽位置" +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "擦拭之间的材料量" -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "耗材受热拉伸但不断裂的极限长度。" +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "最大梳距,无收缩" -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "断裂缓冲期回抽速度" +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "X 轴最大加速度" -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "耗材在回抽过程中恰好折断的回抽速率。" +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "轴最大加速度" -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "断裂缓冲期温度" +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 轴最大加速度" -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "最大分支角度" -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "断裂回抽位置" +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏移量" -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的长度。" +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大挤出面积偏移量" -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "断裂回抽速度" +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大风扇速度" -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的速度。" +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "挤出电机最大加速度" -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "折断温度" +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大模型角度" -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "耗材在完全脱落时的温度。" +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "最大悬垂孔面积" -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "冲洗清除速度" +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最长停放持续时间" -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "切换到其他材料后,装填材料的速度如何。" +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大分辨率" -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "冲洗清除长度" +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大回抽计数" -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "最大扩展皮肤角度" -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "耗材末端清除速度" +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "E 轴最大速度" -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 轴最大速度" -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "耗材末端清除长度" +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 轴最大速度" -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 轴最大速度" -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最长停放持续时间" +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大塔支撑直径" -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料能在干燥存储区之外安全存放多长时间。" +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "空走的最大分辨率" -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "空载移动系数" +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 轴方向电机的最大加速度" -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大加速度。" -msgctxt "material_flow label" -msgid "Flow" -msgstr "流量" +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大加速度。" -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流量补偿:挤出的材料量乘以此值。" +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "耗材电机的最大加速度。" -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁流量" +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 "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁走线的流量补偿。" +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。" -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁流量" +msgctxt "max_extrusion_before_wipe description" +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 "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁走线的流量补偿。" +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "合并网格重叠" -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁流量" +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "网格修复" -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "网格X位置" -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "顶部/底部流量" +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "网格Y位置" -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "顶部/底部走线的流量补偿。" +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "网格Z位置" -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "顶部表层流量" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "网格处理等级" -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "打印顶部区域走线的流量补偿。" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "网格旋转矩阵" -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "填充流量" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Middle" -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "填充走线的流量补偿。" +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小模具宽度" -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "裙边/边缘流量" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "最短时间待机温度" -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "裙边或边缘走线的流量补偿。" +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "最小桥壁长度" -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支撑流量" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数壁走线宽度" -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支撑结构走线的流量补偿。" +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小挤出距离范围" -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支撑接触面流量" +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小特征尺寸" -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支撑顶板或底板走线的流量补偿。" +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小进料速率" -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支撑顶板流量" +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "模型的最小高度" -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支撑顶板走线的流量补偿。" +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小填充区域" -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支撑底板流量" +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最短单层冷却时间" -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支撑底板走线的流量补偿。" +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数壁走线宽度" -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "装填塔流量" +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小多边形周长" -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "装填塔走线的流量补偿。" +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "最小扩展皮肤宽度" -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "起始层流量" +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最小风扇速度" -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 "第一层的流量补偿:起始层挤出的材料量乘以此值。" +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小支撑面积" -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "起始层内壁流量" +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小支撑底板面积" -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。" +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小支撑接触面面积" -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "起始层外壁流量" +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小支撑顶板面积" -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "第一层最外壁走线的流量补偿。" +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小支撑 X/Y 距离" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄壁走线宽度" -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "起始层底部流量" +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "滑行前最小体积" -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "第一层底部走线的流量补偿" +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小壁走线宽度" -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "待机温度" +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 "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "支撑材料" +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 "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "这种材料通常被用作打印的支撑材料吗" +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 "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" -msgctxt "speed label" -msgid "Speed" -msgstr "速度" +msgctxt "min_feature_size description" +msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width." +msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" -msgctxt "speed description" -msgid "Speed" -msgstr "速度" +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "打印速度" +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "模具" -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "打印发生的速度。" +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "模具角度" -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "填充速度" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "模具顶板高度" -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "打印填充的速度。" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "单调熨平顺序" -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "速度(壁)" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "单调顶部表面顺序" -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "打印壁的速度。" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "单调顶部/底部顺序" -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "速度(外壁)" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。" -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "速度(内壁)" +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "空载移动系数" -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 间隙内无表层" -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "顶部表面皮肤速度" +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "打印模型的非传统方式。" -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的速度。" +msgctxt "adhesion_type option none" +msgid "None" +msgstr "无" -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "速度(顶部 / 底部)" +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "无" -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "打印顶部/底部层的速度。" +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "正常" -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "速度(支撑结构)" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "正常" -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。" -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "速度(支撑填充)" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "除了皮肤" -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "不在外表面上" -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "支撑接触面速度" +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "喷嘴角度" -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "支撑顶板速度" +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "喷嘴不允许区域" -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "支撑底板速度" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "喷嘴长度" -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "喷嘴切换额外装填量" -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "装填塔速度" +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "喷嘴切换装填速度" -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "喷嘴切换回抽速度" -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "空驶速度" +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "喷嘴切换回抽距离" -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "进行空驶的速度。" +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "喷嘴切换回抽速度" -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "起始层速度" +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "挤出机数目" -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "已启用的挤出机数目" -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "起始层打印速度" +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "较慢层的数量" -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "已启用的挤出机组数目;软件自动设置" -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "起始层空驶速度" +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "在擦拭刷上移动喷嘴的次数。" + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt/Brim 速度" +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。" +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "八角形" -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 抬升速度" +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "关" -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "应用在模型 x 方向上的偏移量。" -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "较慢层的数量" +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "应用在模型 y 方向上的偏移量。" -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。" -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "流量均衡比" +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "挤出机偏移量" -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。" +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "在打印平台上(如可能)" -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "启用加速度控制" +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "在模型上(如需要)" -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "排队打印" -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "启用空驶加速度" +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。" -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。" +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "打印加速度" +msgctxt "brim_outside_only description" +msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." +msgstr "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "打印发生的加速度。" +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "渗出罩角度" -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "填充加速度" +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "渗出罩距离" -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "打印填充物的加速度。" +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "最佳分支范围" -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "壁加速度" +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "优化壁打印顺序" -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "打印壁的加速度。" +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "喷嘴外径" msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" msgstr "外壁加速度" -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "打印最外壁的加速度。" +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁挤出机" -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁流量" -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "打印所有内壁的加速度。" +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁嵌入" -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "顶部表面皮肤加速度" +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外壁抖动速度" -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的加速度。" +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "走线宽度(外壁)" -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "顶部/底部加速度" +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "速度(外壁)" -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "打印顶部/底部层的加速度。" +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁擦嘴长度" -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "支撑加速度" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "" -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "打印支撑结构的加速度。" +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "从外到内" -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "支撑填充加速度" +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "悬垂壁角度" -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "打印支撑填充物的加速度。" +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "悬垂壁速度" -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "支撑接触面加速度" +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "悬垂壁将以其正常打印速度的此百分比打印。" -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "在未回抽后暂停。" -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "支撑顶板加速度" +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "支撑底板加速度" +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。" + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "偏好分支角度" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" msgctxt "acceleration_prime_tower label" msgid "Prime Tower Acceleration" msgstr "装填塔加速度" -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "打印装填塔的加速度。" - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "空驶加速度" +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "" -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "进行空驶的加速度。" +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "起始层加速度" +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "起始层的加速度。" +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "起始层打印加速度" +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "装填塔流量" -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "打印起始层时的加速度。" +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "装填塔抖动速度" -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "起始层空驶加速度" +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "装填塔走线宽度" -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "装填塔最小体积" -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 加速度" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。" +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "装填塔尺寸" -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "启用抖动速度控制" +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "装填塔速度" -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "装填塔 X 位置" -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "启用空驶抖动速度" +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "装填塔 Y 位置" -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。" +msgctxt "prime_tower_brim_enable description" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "打印加速度" msgctxt "jerk_print label" msgid "Print Jerk" msgstr "打印抖动速度" -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "打印头的最大瞬时速度变化。" - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "填充抖动速度" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "打印填充物时的最大瞬时速度变化。" +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "打印序列" -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "壁抖动速度" +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "打印速度" -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "打印壁时的最大瞬时速度变化。" +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "打印薄壁" -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁抖动速度" +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "打印最外壁时的最大瞬时速度变化。" +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁抖动速度" +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "打印所有内壁时的最大瞬时速度变化。" +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "顶部表面皮肤抖动速度" +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的打印速度。" -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "顶部/底部抖动速度" +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的打印速度。" -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "打印顶部/底部层时的最大瞬时速度变化。" +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "支撑抖动速度" +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "打印支撑结构时的最大瞬时速度变化。" +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "支撑填充抖动速度" +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "打印温度" -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "打印支撑填充物时的最大瞬时速度变化。" +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "打印温度起始层" -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "支撑接触面抖动速度" +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "多层打印最内层裙边走线,便于移除裙边。" -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "打印支撑顶板和底板的最大瞬时速度变化。" +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "支撑顶板抖动速度" +msgctxt "resolution label" +msgid "Quality" +msgstr "质量" -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "打印支撑顶板的最大瞬时速度变化。" +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "四面体" -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "支撑底板抖动速度" +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "打印支撑底板时的最大瞬时速度变化。" +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Raft 空隙" -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "装填塔抖动速度" +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft 底层挤出器" -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "打印装填塔时的最大瞬时速度变化。" +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Raft 基础风扇速度" -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "空驶抖动速度" +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Raft 基础走线间距" -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "进行空驶时的最大瞬时速度变化。" +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Raft 基础走线宽度" -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "起始层抖动速度" +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Raft 基础打印加速度" -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "起始层的打印最大瞬时速度变化。" +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Raft 基础打印抖动速度" -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "起始层打印抖动速度" +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Raft 基础打印速度" -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "打印起始层时的最大瞬时速度变化。" +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Raft 基础厚度" -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "起始层空驶抖动速度" +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Raft 底板壁数" -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Raft 留白" -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim 抖动速度" +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Raft 风扇速度" -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft 中间挤出器" -msgctxt "travel label" -msgid "Travel" -msgstr "移动" +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Raft 中间风扇速度" -msgctxt "travel description" -msgid "travel" -msgstr "空驶" +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft 中间层" -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "启用回抽" +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Raft 中间线宽度" -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Raft 中间打印加速度" -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "层变化时回抽" +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Raft 中间打印抖动速度" -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "当喷嘴移动到下一层时回抽耗材。" +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Raft 中间打印速度" -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "回抽距离" +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Raft 中间间距" -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "回抽移动期间回抽的材料长度。" +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Raft 中间厚度" -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "回抽速度" +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Raft 打印加速度" -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "回抽移动期间耗材回抽和装填的速度。" +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Raft 打印抖动速度" -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "回抽速度" +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft 打印速度" -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "回抽移动期间耗材回抽的速度。" +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft 平滑度" -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "回抽装填速度" +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft 顶层挤出器" -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "回抽移动期间耗材装填的速度。" +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Raft 顶部风扇速度" -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "回抽额外装填量" +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Raft 顶层厚度" -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Raft 顶层" -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "回抽最小空驶" +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Raft 顶线宽度" -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 "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Raft 顶部打印加速度" -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大回抽计数" +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Raft 顶部打印抖动速度" -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 "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Raft 顶部打印速度" -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小挤出距离范围" +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Raft 顶部间距" -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 "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "随机" -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "梳理模式" +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "开始随机化填充" -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。" -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "关" +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 "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" -msgctxt "retraction_combing option all" -msgid "All" -msgstr "所有" +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "矩形" -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "不在外表面上" +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "正常风扇速度" -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "除了皮肤" +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "正常风扇速度(高度)" -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "在填充物内" +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "正常风扇速度(层)" -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "最大梳距,无收缩" +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "正常/最大风扇速度阈值" -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相对挤出" -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "在外壁前回抽" +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "移除所有孔洞" -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "在移动开始打印外壁时始终回抽。" +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "移除空白第一层" -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "空驶时避开已打印部分" +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "移除网格交叉" -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "移除 Raft 内侧角" -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "避免移动时支撑" +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "空驶避让距离" +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "层开始 X" +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。" +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "层开始 Y" +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "停留偏好" -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。" +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "在外壁前回抽" -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "回抽时 Z 抬升" +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "层变化时回抽" -msgctxt "retraction_hop_enabled 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 "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "仅在已打印部分上 Z 抬升" +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。" +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "当喷嘴移动到下一层时回抽耗材。" -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 抬升高度" +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "回抽距离" -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "回抽额外装填量" -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "挤出机切换后的 Z 抬升" +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "回抽最小空驶" -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "回抽装填速度" -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "挤出机切换后的 Z 抬升高度" +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "回抽速度" -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "挤出机切换后执行 Z 抬升的高度差。" +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "回抽速度" -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右侧" -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "在 0 到 1 范围内设置风扇速度" -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "开启打印冷却" +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。" -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "缩放因子收缩补偿" -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "风扇速度" +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "场景具有支撑网格" -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "打印冷却风扇旋转的速度。" +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "缝隙角偏好设置" -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "正常风扇速度" +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "利用多个挤出机进行打印所用的设置。" -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大风扇速度" +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共用喷嘴初始缩回" -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "正常/最大风扇速度阈值" +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "最尖角" -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" +msgctxt "shell description" +msgid "Shell" +msgstr "外壳" -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "起始风扇速度" +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "显示打印机变体" -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "正常风扇速度(高度)" +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "皮肤边缘支撑层数" -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "皮肤边缘支撑厚度" -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "正常风扇速度(层)" +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "皮肤扩展距离" -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "皮肤重叠" -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最短单层冷却时间" +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "皮肤重叠百分比" -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "肤移除宽度" -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最小风扇速度" +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 "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。" -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "打印头提升" +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "小型层打印温度" +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt 距离" -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。" +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "裙边高度" -msgctxt "support label" -msgid "Support" -msgstr "支撑" +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Skirt 走线计数" -msgctxt "support description" -msgid "Support" -msgstr "支撑" +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 加速度" -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "生成支撑" +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim 挤出器" -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "裙边/边缘流量" -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "支撑用挤出机" +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Skirt/Brim 抖动速度" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "走线宽度(Skirt / Brim)" -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "用于打印支撑的挤出机组。 用于多重挤出。" +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Skirt/Brim 最小长度" -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "支撑填充挤出机" +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt/Brim 速度" -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。" +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "切片公差" -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "第一层支撑挤出机" +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "微小特征初始层速度" -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "微小特征最大长度" -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "支撑接触面挤出机" +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "微小特征速度" -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小孔最大尺寸" -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "支撑顶板挤出机" +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小型层打印温度" -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。" +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "表面顶部/底部小区域" -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "支撑底板挤出机" +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "顶宽/底宽较小" -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。" +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 "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "支撑结构" +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 "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "顶部/底部小区域用墙壁填充,而不是默认顶部/底部图案。这有助于避免剧烈运动。最顶层(暴露在空气中)默认关闭此选项(见“表面顶部/底部小区域”)。" -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "正常" +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "智能边缘" -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "树形" +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "智能隐藏" -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "最大分支角度" +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "平滑螺旋轮廓" -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "围绕模型扩大时,分支的最大角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更多结构。" +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "分支直径" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "主干直径" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特殊模式" -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。" +msgctxt "speed description" +msgid "Speed" +msgstr "速度" -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "分支直径角度" +msgctxt "speed label" +msgid "Speed" +msgstr "速度" -msgctxt "support_tree_branch_diameter_angle description" -msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." -msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "抬升期间移动 Z 轴的速度。" -msgctxt "support_type label" -msgid "Support Placement" -msgstr "支撑放置" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "螺旋打印外轮廓" -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "支撑打印平台" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全部支撑" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "待机温度" -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "偏好分支角度" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "开始 G-code" -msgctxt "support_tree_angle_slow description" -msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." -msgstr "不必避开模型时,分支的偏好角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可以更快合并分支。" +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "扩大直径以匹配模型" +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "每毫米步数 (E)" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "与接触打印平台的分支合并时,模型必连分支的最大直径可能会扩大。扩大直径可减少打印时间,但会增加模型上的支撑区域" +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "每毫米步数 (X)" -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "模型的最小高度" +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "每毫米步数 (Y)" -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "将分支放在模型上时,分支的必要高度。防止出现小的支撑光点。分支支撑着支撑顶板时,此设置将被忽略。" +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "每毫米步数 (Z)" -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "起始层直径" +msgctxt "support description" +msgid "Support" +msgstr "支撑" -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "接触打印平台时,每个分支可能达到的直径。提高床附着力。" +msgctxt "support label" +msgid "Support" +msgstr "支撑" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "分支密度" +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "支撑加速度" -msgctxt "support_tree_top_rate description" -msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "调整用于生成分支顶端的支撑结构的密度。高数值可以确保悬垂质量更好,但支撑结构会更难去除。用支撑顶板获取极高数值,或者确保顶层的支撑密度同样高。" +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "支撑底部距离" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "顶端直径" +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "支撑底层墙线条数" -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "树形支撑的分支顶端的直径。" +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "支撑 Brim 走线次数" -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "限制分支长度" +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "支撑 Brim 宽度" -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)" +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "支撑块走线数" -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "最佳分支范围" +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "支撑块大小" -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)" +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "支撑密度" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "支撑距离优先级" -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "停留偏好" +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "支撑用挤出机" -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "支撑结构的偏好位置。只要结构不在偏好位置,它们就可能被放在其他区域,即使这意味着它们可能被放在模型上。" +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "支撑底板加速度" -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "在打印平台上(如可能)" +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "支撑底板密度" -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "在模型上(如需要)" +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "支撑底板挤出机" -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "支撑悬垂角度" +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支撑底板流量" -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。" +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "支撑底板水平扩展" -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "支撑图案" +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "支撑底板抖动速度" -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "支撑底板走线方向" -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "支撑底板走线距离" -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "支撑底板走线宽度" -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "支撑底板图案" -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "支撑底板速度" -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "支撑底板厚度" -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "交叉" +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支撑流量" -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "支撑水平扩展" -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "支撑墙行数" +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "支撑填充加速度" -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "支撑填充挤出机" -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "支撑接触面墙线条数" +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "支撑填充抖动速度" -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "支撑填充层厚度" -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "支撑顶板墙线条数" +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "支撑填充走线方向" -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "速度(支撑填充)" -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "支撑底层墙线条数" +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "支撑接触面加速度" -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "支撑接触面密度" -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "连接支撑线" +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "支撑接触面挤出机" -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支撑接触面流量" -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "连接支撑锯齿形" +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "支撑接触面水平扩展" -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "支撑接触面抖动速度" -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "支撑密度" +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "支撑接触面走线方向" -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "走线宽度(支撑接触面)" -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "支撑走线距离" +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "支撑接触面图案" -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "支撑接触面优先级" -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "起始层支撑走线距离" +msgctxt "support_interface_skip_height label" +msgid "Support Interface Resolution" +msgstr "支撑接触面分辨率" -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "支撑接触面速度" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "支撑填充走线方向" +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "支撑接触面厚度" -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。" +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "支撑接触面墙线条数" -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "启用支撑 Brim" +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "支撑抖动速度" -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "支撑结合部距离" -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "支撑 Brim 宽度" +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "支撑走线距离" -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。" +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "走线宽度(支撑结构)" -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "支撑 Brim 走线次数" +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "支撑网格" -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "支撑悬垂角度" -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "支撑 Z 距离" +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "支撑图案" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "支撑放置" -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "支撑结构顶部/底部到打印品之间的距离。 该间隙提供了在模型打印完成后移除支撑的空隙。 该值舍入为层高的倍数。" +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "支撑顶板加速度" -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "支撑顶部距离" +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "支撑顶板密度" -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "从支撑顶部到打印品的距离。" +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "支撑顶板挤出机" -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "支撑底部距离" +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支撑顶板流量" -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "从打印品到支撑底部的距离。" +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "支撑顶板水平扩展" -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "支撑 X/Y 距离" +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "支撑顶板抖动速度" -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距打印品的距离。" +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "支撑顶板走线方向" -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "支撑距离优先级" +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "支撑顶板走线距离" -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。" +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "支撑顶板走线宽度" -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y 覆盖 Z" +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "支撑顶板图案" -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z 覆盖 X/Y" +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "支撑顶板速度" -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小支撑 X/Y 距离" +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "支撑顶板厚度" -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距悬垂的距离。" +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "支撑顶板墙线条数" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "速度(支撑结构)" msgctxt "support_bottom_stair_step_height label" msgid "Support Stair Step Height" msgstr "支撑梯步阶高度" -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" - msgctxt "support_bottom_stair_step_width label" msgid "Support Stair Step Maximum Width" msgstr "支撑梯步阶最大宽度" -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" - msgctxt "support_bottom_stair_step_min_slope label" msgid "Support Stair Step Minimum Slope Angle" msgstr "支撑阶梯最小坡度角" -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "支撑结构" -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "支撑结合部距离" +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "支撑顶部距离" -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "支撑墙行数" -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "支撑水平扩展" +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "支撑 X/Y 距离" -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "支撑 Z 距离" -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "支撑填充层厚度" +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "偏好支撑线" -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "偏好支撑" -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "渐进支撑填充步阶" +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "支撑的表面风扇速度" -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "渐进支撑填充步阶高度" +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面能" -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的支撑填充高度。" +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面模式" -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小支撑面积" +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面附着倾向。" -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面能。" -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "启用支撑接触面" +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "变换最内层和第二内层侧裙走线的打印顺序。这样可改善侧裙移除。" -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "启用支撑顶板" +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 "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。" -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "启用支撑底板" +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "支撑接触面厚度" +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。" -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "支撑与模型在底部或顶部接触的接触面厚度。" +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "支撑顶板厚度" +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "支撑底板厚度" +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "打印起始层时的加速度。" -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "起始层的加速度。" -msgctxt "support_interface_skip_height label" -msgid "Support Interface Resolution" -msgstr "支撑接触面分辨率" +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" -msgctxt "support_interface_skip_height description" -msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." -msgstr "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "支撑接触面密度" +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "打印所有内壁的加速度。" + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "打印填充物的加速度。" -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "执行熨平的加速度。" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "支撑顶板密度" +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "打印发生的加速度。" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "打印基础 Raft 层的加速度。" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "支撑顶板走线距离" +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "打印支撑填充物的加速度。" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "支撑底板密度" +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的加速度。" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "打印最外壁的加速度。" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "支撑底板走线距离" +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "打印装填塔的加速度。" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "打印 Raft 的加速度。" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "支撑接触面图案" +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "支撑与模型之间接触面的打印图案。" +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "打印支撑结构的加速度。" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的加速度。" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "支撑顶板图案" +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "打印壁的加速度。" -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "打印支撑顶板的图案。" +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的加速度。" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "直线" +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "打印顶部/底部层的加速度。" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "进行空驶的加速度。" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "支撑底板图案" +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,不进行任何回抽。该值通常应与加热区的长度相同。" -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "打印支撑底板的图案。" +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。" -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "走线" +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "网格" +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。" -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "三角形" +msgctxt "support_tree_branch_diameter_angle description" +msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support." +msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心" +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小支撑接触面面积" +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" -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 "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "打印头移动的默认加速度。" -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小支撑顶板面积" +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" -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 "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小支撑底板面积" +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。" -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 "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "支撑接触面水平扩展" +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "应用到支撑接触面多边形的偏移量。" +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "支撑顶板水平扩展" +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "应用到支撑顶板的偏移量。" +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "机器可打印区域深度(Y 坐标)" -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "支撑底板水平扩展" +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "特殊塔的直径。" -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "应用到支撑底板的偏移量。" +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "支撑接触面优先级" +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "树形支撑的分支顶端的直径。" -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "重叠时支撑接触面和支撑的交互方式。目前仅对支撑顶板实施。" +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "进料装置中材料驱动轮的直径。" -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "偏好支撑" +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。" -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "偏好接触面" +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "下一层与前一层的高度差。" -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "偏好支撑线" +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "熨平走线之间的距离。" -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "偏好接触面走线" +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "两者重叠" +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "支撑接触面走线方向" +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。" -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "支撑顶板走线方向" +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。" -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "支撑底板走线方向" +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。" -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。" -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "风扇速度覆盖" +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "支撑的表面风扇速度" +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用塔" +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "在擦拭刷上来回移动喷嘴头的距离。" -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "塔直径" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "特殊塔的直径。" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大塔支撑直径" +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "用于打印 Raft 第一层的挤出器组。用于多重挤出。" -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。" -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "塔顶板角度" +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。" -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "用于打印 Raft 中间层的挤出器组。用于多重挤出。" -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "下拉式支撑网格" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。" -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "场景具有支撑网格" +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。" -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "场景中存在支撑网格。此设置受 Cura 控制。" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。" -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "启用装填光点" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "用于打印支撑的挤出机组。 用于多重挤出。" -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "用于打印 Raft 顶层的挤出器组。用于多重挤出。" -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "打印平台附着类型" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "用于打印填充的挤出机组。 用于多重挤出。" -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "用于打印内壁的挤出机组。 用于多重挤出。" -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "用于打印外壁的挤出机组。 用于多重挤出。" -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" -msgctxt "adhesion_type option none" -msgid "None" -msgstr "无" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "用于打印壁的挤出机组。 用于多重挤出。" -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "打印平台附着挤出机" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "基础 Raft 层的风扇速度。" -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "中间 Raft 层的风扇速度。" -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim 挤出器" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Raft 的风扇速度。" -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "顶部 Raft 层的风扇速度。" -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft 底层挤出器" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "用于打印 Raft 第一层的挤出器组。用于多重挤出。" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft 中间挤出器" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "用于打印 Raft 中间层的挤出器组。用于多重挤出。" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。" -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft 顶层挤出器" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "机器可打印区域高度(Z 坐标)" -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "用于打印 Raft 顶层的挤出器组。用于多重挤出。" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "用于打印模具的模型水平部分上方的高度。" -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Skirt 走线计数" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。" -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "裙边高度" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "喷嘴尖端与打印头最低部分之间的高度差。" -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "多层打印最内层裙边走线,便于移除裙边。" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "挤出机切换后执行 Z 抬升的高度差。" -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt 距离" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "skirt 和打印第一层之间的水平距离。\n这是最小距离。多个 skirt 走线将从此距离向外延伸。" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Skirt/Brim 最小长度" +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的填充高度。" -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Brim 宽度" +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的支撑填充高度。" -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。" +msgctxt "interlocking_beam_layer_count description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Brim 走线计数" +msgctxt "interlocking_orientation description" +msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." +msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" -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 走线可增强与打印平台的附着,但也会减少有效打印区域。" +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "边沿距离" +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" 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 "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。" -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim 替换支撑" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" - -msgctxt "brim_outside_only label" -msgid "Brim Only on Outside" -msgstr "仅在外部打印 Brim" - -msgctxt "brim_outside_only description" -msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." -msgstr "仅在模型外部打印 brim。 这会减少您之后需要移除的 brim 量,而不会过度影响热床附着。" +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"skirt 和打印第一层之间的水平距离。\n" +"这是最小距离。多个 skirt 走线将从此距离向外延伸。" -msgctxt "brim_inside_margin label" -msgid "Brim Inside Avoid Margin" -msgstr "修剪内部对象避免留白" +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" -msgctxt "brim_inside_margin description" -msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." -msgstr "一个零件完全封闭在另一个零件内部会生成与另一个零件内部相接触的边沿。这可从内孔移除此距离内的所有边沿。" +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "填充图案沿 X 轴移动此距离。" -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "智能边缘" +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "填充图案沿 Y 轴移动此距离。" -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "变换最内层和第二内层侧裙走线的打印顺序。这样可改善侧裙移除。" +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Raft 留白" +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "打印基础 Raft 层的抖动速度。" -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的抖动速度。" -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft 平滑度" +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "打印 Raft 的抖动速度。" -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的抖动速度。" -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Raft 空隙" +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。" +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "起始层 Z 重叠" +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." -msgstr "使模型的第一层和第二层在 Z 方向上重叠以补偿在空隙中损失的耗材。 第一个模型层上方的所有模型将向下移动此重叠量。" +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Raft 顶层" +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "回抽移动期间回抽的材料长度。" -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Raft 顶层厚度" +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "顶部 Raft 层的层厚度。" +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "打印平台材料已安装在打印机上。" -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Raft 顶线宽度" +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "最大允许高度与基层高度不同。" -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Raft 顶部间距" +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。" -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "围绕模型扩大时,分支的最大角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更多结构。" -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft 中间层" +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。" -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。" +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Raft 中间厚度" +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中间 Raft 层的层厚度。" +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。" -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Raft 中间线宽度" +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。" -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "打印起始层时的最大瞬时速度变化。" -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Raft 中间间距" +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "打印头的最大瞬时速度变化。" -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。" +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "执行熨平时的最大瞬时速度变化。" -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Raft 基础厚度" +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "打印所有内壁时的最大瞬时速度变化。" -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "打印填充物时的最大瞬时速度变化。" -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Raft 基础走线宽度" +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "打印支撑底板时的最大瞬时速度变化。" -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "打印支撑填充物时的最大瞬时速度变化。" -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Raft 基础走线间距" +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "打印最外壁时的最大瞬时速度变化。" -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "打印装填塔时的最大瞬时速度变化。" -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft 打印速度" +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "打印支撑顶板和底板的最大瞬时速度变化。" -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "打印 Raft 的速度。" +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "打印支撑顶板的最大瞬时速度变化。" -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Raft 顶部打印速度" +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "打印支撑结构时的最大瞬时速度变化。" -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Raft 中间打印速度" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "" -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "" -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Raft 基础打印速度" +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "打印壁时的最大瞬时速度变化。" -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Raft 打印加速度" +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "打印顶部/底部层时的最大瞬时速度变化。" -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "打印 Raft 的加速度。" +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "进行空驶时的最大瞬时速度变化。" -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Raft 顶部打印加速度" +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 轴方向电机的最大速度。" -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的加速度。" +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大速度。" -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Raft 中间打印加速度" +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大速度。" -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的加速度。" +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "耗材的最大速度。" -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Raft 基础打印加速度" +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "打印基础 Raft 层的加速度。" +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "模具外侧与模型外侧之间的最短距离。" -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Raft 打印抖动速度" +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "打印头的最低移动速度。" -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "打印 Raft 的抖动速度。" +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加热到可以开始打印的打印温度时的最低温度。" -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Raft 顶部打印抖动速度" +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的抖动速度。" +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。" -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Raft 中间打印抖动速度" +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。" -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的抖动速度。" +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 "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Raft 基础打印抖动速度" +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。" -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "打印基础 Raft 层的抖动速度。" +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。" -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Raft 风扇速度" +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。" -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Raft 的风扇速度。" +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Raft 顶部风扇速度" +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "顶部 Raft 层的风扇速度。" +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。" -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Raft 中间风扇速度" +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "中间 Raft 层的风扇速度。" +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Raft 基础风扇速度" +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "为了清除足够的材料,装填塔每层的最小体积。" -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "基础 Raft 层的风扇速度。" +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "与接触打印平台的分支合并时,模型必连分支的最大直径可能会扩大。扩大直径可减少打印时间,但会增加模型上的支撑区域" -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "双重挤出" +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "您的 3D 打印机型号的名称。" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "利用多个挤出机进行打印所用的设置。" +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "启用装填塔" +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "装填塔尺寸" +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "装填塔的宽度。" +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "支撑皮肤边缘的填充物的层数。" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "装填塔最小体积" +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 "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "为了清除足够的材料,装填塔每层的最小体积。" +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。" -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "装填塔 X 位置" +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 走线可增强与打印平台的附着,但也会减少有效打印区域。" -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "装填塔位置的 X 坐标。" +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "装填塔 Y 位置" +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "装填塔位置的 y 坐标。" +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "擦拭装填塔上的不活动喷嘴" +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "装填塔 Brim" +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" -msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。" +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "启用渗出罩" +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" +msgctxt "wall_distribution_count description" +msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." +msgstr "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "渗出罩角度" +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "喷嘴尖端的外径。" -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "渗出罩距离" +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "渗出罩在 X/Y 方向距打印品的距离。" +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "喷嘴切换回抽距离" +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "最顶层图案。" -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,不进行任何回抽。该值通常应与加热区的长度相同。" +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "顶层/底层图案。" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "喷嘴切换回抽速度" +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "打印品底部第一层上的图案。" -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 "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "用于熨平顶部表面的图案。" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "喷嘴切换回抽速度" +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "打印支撑底板的图案。" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "喷嘴切换回抽期间耗材回抽的速度。" +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "支撑与模型之间接触面的打印图案。" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "喷嘴切换装填速度" +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "打印支撑顶板的图案。" -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "喷嘴切换回抽后耗材被推回的速度。" +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "在该位置附近开始打印层中各个部分。" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "喷嘴切换额外装填量" +msgctxt "support_tree_angle_slow description" +msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster." +msgstr "不必避开模型时,分支的偏好角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可以更快合并分支。" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "喷嘴切换后的额外装填材料。" +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "支撑结构的偏好位置。只要结构不在偏好位置,它们就可能被放在其他区域,即使这意味着它们可能被放在模型上。" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "网格修复" +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "起始层的打印最大瞬时速度变化。" -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "使网格更适合 3D 打印。" +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "打印平台形状(不考虑不可打印区域)。" -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "联合覆盖体积" +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "移除所有孔洞" +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "广泛缝合" +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "保留断开连接的面" +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "打印连桥表面区域的速度。" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。" +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "打印填充的速度。" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "合并网格重叠" +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "打印发生的速度。" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "移除网格交叉" +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "打印桥壁的速度。" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "交替网格移除" +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "移除空白第一层" +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "回抽移动期间耗材装填的速度。" -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材装填的速度。" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大分辨率" +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "喷嘴切换回抽后耗材被推回的速度。" -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "回抽移动期间耗材回抽和装填的速度。" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "空走的最大分辨率" +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。" +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "喷嘴切换回抽期间耗材回抽的速度。" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏移量" +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "回抽移动期间耗材回抽的速度。" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽的速度。" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大挤出面积偏移量" +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 "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。" +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "启用流体运动" +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。" +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "流体运动移动距离" +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "移动距离点,使路径平滑" +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "流体运动小距离" +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "打印冷却风扇旋转的速度。" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "移动距离点,使路径平滑" +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "打印 Raft 的速度。" -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "流体运动角" +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "如果刀具路径段偏离一般运动的角度大于这个角度,使路径平滑。" +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特殊模式" +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。" -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "打印模型的非传统方式。" +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "打印序列" +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" -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 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 "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "" -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "同时打印" +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "排队打印" +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "填充网格" +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "打印壁的速度。" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "通过顶部表面的速度。" -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "网格处理等级" +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的速度。" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的速度。" -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "切割网格" +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "打印顶部/底部层的速度。" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "进行空驶的速度。" -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "模具" +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。" -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小模具宽度" +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "模具外侧与模型外侧之间的最短距离。" +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "模具顶板高度" +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "耗材在完全脱落时的温度。" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "用于打印模具的模型水平部分上方的高度。" +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "打印环境温度。若为 0,将不会调整构建体积温度。" -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "模具角度" +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。" +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "打印结束前开始冷却的温度。" -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "支撑网格" +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "" + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "用于打印的温度。" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。" -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "防悬网格" +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面模式" +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。" -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "支撑皮肤边缘的额外填充物的厚度。" -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "正常" +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "支撑与模型在底部或顶部接触的接触面厚度。" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "两者都" +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "螺旋打印外轮廓" +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "平滑螺旋轮廓" +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相对挤出" +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。" +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "需要生成的 G-code 类型。" -msgctxt "experimental label" -msgid "Experimental" -msgstr "实验性" +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "尚未完全充实的功能。" +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "机器可打印区域宽度(X 坐标)" -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "切片公差" +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。" -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "互锁结构梁的宽度。" -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Middle" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "不包含" +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "装填塔的宽度。" -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包含" +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "填充物空驶优化" +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 "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "装填塔位置的 X 坐标。" -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "流量温度图" +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "装填塔位置的 y 坐标。" -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "场景中存在支撑网格。此设置受 Cura 控制。" -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小多边形周长" +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。" +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "生成互锁结构" +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 "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。" +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "互锁梁宽度" +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "顶端直径" -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "互锁结构梁的宽度。" +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。" -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "互锁结构方向" +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。" -msgctxt "interlocking_orientation description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "互锁梁层数" +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "顶部层数" -msgctxt "interlocking_beam_layer_count description" -msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects." -msgstr "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "顶部皮肤扩展距离" -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "互锁深度" +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "顶部皮肤移除宽度" -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "" -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "互锁边界回避" +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "" -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。" +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "" -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "将支撑结构分拆成块状" +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "" -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "" -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "支撑块大小" +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "" -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "" -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "支撑块走线数" +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。" +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "顶部表面皮肤加速度" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "顶部皮肤挤出机" -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "启用防风罩" +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "顶部表层流量" -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "顶部表面皮肤抖动速度" -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "防风罩 X/Y 距离" +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "顶部表面皮肤层" -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "防风罩在 X/Y 方向与打印品的距离。" +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "顶部表面皮肤走线方向" -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "防风罩限制" +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "顶部表面皮肤线宽" -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "顶部表面皮肤图案" -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "完整" +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "顶部表面皮肤速度" -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "有限" +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "顶层厚度" -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "防风罩高度" +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。" -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "顶 / 底层" -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "使悬垂可打印" +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "顶 / 底层" -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "顶部/底部加速度" -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大模型角度" +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "顶部/底部挤出机" -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。" +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "顶部/底部流量" -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "最大悬垂孔面积" +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "顶部/底部抖动速度" -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。" +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "顶层/底层走线方向" -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "启用滑行" +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "走线宽度(顶层 / 底层)" -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "顶部 / 底部走线图案" -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "滑行体积" +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "速度(顶部 / 底部)" -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "顶层 / 底层厚度" -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "滑行前最小体积" +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "支撑打印平台" -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "塔直径" -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "滑行速度" +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "塔顶板角度" -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。" +msgctxt "mesh_rotation_matrix description" +msgid "Transformation matrix to be applied to the model when loading it from file." +msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "交叉 3D 气槽大小" +msgctxt "travel label" +msgid "Travel" +msgstr "移动" -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "空驶加速度" -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "交叉加密图像密度" +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "空驶避让距离" -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "空驶抖动速度" -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "交叉填充密度图象" +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "空驶速度" -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "启用锥形支撑" +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "树形" -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "使底部的支撑区域小于悬垂处的支撑区域。" +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "内六角" -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "锥形支撑角度" +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "锥形支撑最小宽度" +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "模糊皮肤" +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "三角形" -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 "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "主干直径" -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "仅外部模糊皮肤" +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "联合覆盖体积" -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "模糊皮肤厚度" +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "使用自适应图层" -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "模糊皮肤密度" +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用塔" -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。" -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "模糊皮肤点距离" +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。" -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。" -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量补偿最大挤出偏移值" +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。" +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量补偿因子" +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" -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 "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "使用自适应图层" +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "用户指定" -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "自适应图层根据模型形状计算图层高度。" +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直缩放因子收缩补偿" -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "自适应图层最大变化" +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "最大允许高度与基层高度不同。" +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "等待打印平台加热" -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "自适应图层变化步长" +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "等待喷嘴加热" -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "下一层与前一层的高度差。" +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "壁加速度" -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "自适应图层地形尺寸" +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "壁分派次数" -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 "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "壁挤出机" -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "悬垂壁角度" +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁流量" -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 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "壁抖动速度" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "悬垂壁速度" +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "壁走线次数" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "悬垂壁将以其正常打印速度的此百分比打印。" +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "走线宽度(壁)" -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "启用连桥设置" +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "壁顺序" -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "速度(壁)" -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "最小桥壁长度" +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁厚" -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "壁过渡长度" -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "连桥表面支撑阈值" +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "壁过渡筛选距离" -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 "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "壁过渡筛选边距" -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "连桥稀疏填充物最大密度" +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "壁过渡阈值角度" -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 "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" +msgctxt "shell label" +msgid "Walls" +msgstr "墙" -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "桥壁滑行" +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 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" +msgctxt "support_interface_skip_height description" +msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." +msgstr "在检查支撑上方或下方是否有模型时,采用指定高度的步阶。 值越低切片速度越慢,而较高的值会导致在部分应有支撑接触面的位置打印一般的支撑。" -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "桥壁速度" +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。" -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "打印桥壁的速度。" +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "桥壁流量" +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "打印桥壁时,将挤出的材料量乘以此值。" +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "连桥表面速度" +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "打印连桥表面区域的速度。" +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "大于零时,孔洞水平扩展会逐渐适应小孔洞(小孔洞可以扩展更多)。设为零时,孔洞水平扩展可以应用于所有孔洞。大于孔洞水平扩展最大直径时,孔洞不会被扩展。" -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "连桥表面流量" +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "当大于零时,“孔水平膨胀”是应用于每层所有孔的偏移量。正值会增加孔的大小,负值会减少孔的大小。当此设置启用时,可以使用“孔水平膨胀最大直径”进一步细化。" msgctxt "bridge_skin_material_flow description" msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。" -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "连桥表面密度" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。" +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "打印桥壁时,将挤出的材料量乘以此值。" -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "连桥风扇速度" +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。" -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。" -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "连桥有多层" +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。" -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "连桥第二层表面速度" +msgctxt "wall_transition_angle description" +msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude." +msgstr "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的打印速度。" +msgctxt "wall_transition_length description" +msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines." +msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "连桥第二层表面流量" +msgctxt "wipe_hop_enable description" +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 "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。" +msgctxt "retraction_hop_enabled 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 "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "连桥第二层表面密度" +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。" -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。" -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "连桥第二层表面风扇速度" +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。" -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。" -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "连桥第三层表面速度" +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。" -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的打印速度。" +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "连桥第三层表面流量" +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。" -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。" +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "机器是否有加热打印平台。" -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "连桥第三层表面密度" +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "机器是否能够稳定构建体积温度。" -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。" -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "连桥第三层表面风扇速度" +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。" -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。" -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "图层切换后擦拭喷嘴" +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。" msgctxt "clean_between_layers description" 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 "是否包括图层切换后擦拭喷嘴的 G-Code(每层最多 1 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "擦拭之间的材料量" +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "是否插入一条命令,等待开始时达到打印平台温度。" -msgctxt "max_extrusion_before_wipe description" -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 "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。" -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -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 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 "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。" -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "擦拭回抽距离" +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 属性来收回材料。" -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "是否等待开始时达到喷嘴温度。" -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "擦拭回抽额外装填量" +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "单一填充走线宽度。" -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "支撑顶板或底板单一走线宽度。" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "擦拭回抽速度" +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "打印顶部区域单一走线宽度。" -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "擦拭回抽期间的回抽速度" +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "单一装填走线宽度。" -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽的速度。" +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "擦拭回抽装填速度" +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "单一支撑底板走线宽度。" -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材装填的速度。" +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "单一支撑顶板走线宽度。" -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "擦拭暂停" +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "单一支撑结构走线宽度。" -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "在未回抽后暂停。" +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "单一顶层/底层走线宽度。" -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "擦拭 Z 抬升" +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" -msgctxt "wipe_hop_enable description" -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 "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "单一壁线宽度。" -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "擦拭 Z 抬升高度" +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "擦拭抬升速度" +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "抬升期间移动 Z 轴的速度。" +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。" + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" msgctxt "wipe_brush_pos_x label" msgid "Wipe Brush X Position" msgstr "擦拭刷 X 轴坐标" -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "擦拭开始处的 X 轴坐标。" - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "擦拭重复计数" +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "擦拭抬升速度" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "在擦拭刷上移动喷嘴的次数。" +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "擦拭装填塔上的不活动喷嘴" msgctxt "wipe_move_distance label" msgid "Wipe Move Distance" -msgstr "擦拭移动距离" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "在擦拭刷上来回移动喷嘴头的距离。" +msgstr "擦拭移动距离" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小孔最大尺寸" +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "图层切换后擦拭喷嘴" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "擦拭暂停" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "微小特征最大长度" +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "擦拭重复计数" -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "擦拭回抽距离" -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "微小特征速度" +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "启用擦拭回抽" -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 "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "擦拭回抽额外装填量" -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "微小特征初始层速度" +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "擦拭回抽装填速度" -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 "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "擦拭回抽期间的回抽速度" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "交替壁方向" +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "擦拭回抽速度" -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "擦拭 Z 抬升" -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "移除 Raft 内侧角" +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "擦拭 Z 抬升高度" -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "在填充物内" -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Raft 底板壁数" +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "正向 X 限位开关" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "命令行设置" +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "擦拭开始处的 X 轴坐标。" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y 覆盖 Z" -msgctxt "center_object label" -msgid "Center Object" -msgstr "中心点" +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "正向 Y 限位开关" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。" +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "正向 Z 限位开关" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "网格X位置" +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "挤出机切换后的 Z 抬升" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "应用在模型 x 方向上的偏移量。" +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "挤出机切换后的 Z 抬升高度" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "网格Y位置" +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 抬升高度" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "应用在模型 y 方向上的偏移量。" +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "仅在已打印部分上 Z 抬升" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "网格Z位置" +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 抬升速度" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。" +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "回抽时 Z 抬升" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "网格旋转矩阵" +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 缝对齐" -msgctxt "mesh_rotation_matrix description" -msgid "Transformation matrix to be applied to the model when loading it from file." -msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 缝位置" -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "渐变流量已启用" +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z 缝相对" -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 缝 X" -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "渐变流量最大加速度" +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 缝 Y" -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "渐变流量的最大加速度" +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z 覆盖 X/Y" -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初始层最大流量加速度" +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第一层渐变流量的最小速度" +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "渐变流量离散步长" +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "渐变流量每一步的持续时间" +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "重置流量持续时间" +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" -msgctxt "material description" -msgid "Material" -msgstr "材料" +msgctxt "travel description" +msgid "travel" +msgstr "空驶" -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "从打印品到支撑底部的距离。" -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "支撑结构顶部/底部到打印品之间的距离。 该间隙提供了在模型打印完成后移除支撑的空隙。 该值舍入为层高的倍数。" -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" +#~ msgctxt "gradual_flow_discretisation_step_size description" +#~ msgid "Duration of each step in the gradual flow change" +#~ msgstr "渐变流量每一步的持续时间" -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" +#~ msgctxt "gradual_flow_enabled description" +#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +#~ msgstr "启用渐变流量。当启用时,流量逐渐增加/降低到目标流量。这对于有鲍登管的打印机很有用,当挤出机电机启动/停止时,流量不会立即改变。" -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" +#~ msgctxt "reset_flow_duration description" +#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +#~ msgstr "对于任何超过此值的行程移动,材料流量将重置为路径目标流量" -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" +#~ msgctxt "gradual_flow_discretisation_step_size label" +#~ msgid "Gradual flow discretisation step size" +#~ msgstr "渐变流量离散步长" -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" +#~ msgctxt "gradual_flow_enabled label" +#~ msgid "Gradual flow enabled" +#~ msgstr "渐变流量已启用" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" +#~ msgctxt "max_flow_acceleration label" +#~ msgid "Gradual flow max acceleration" +#~ msgstr "渐变流量最大加速度" -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" +#~ msgctxt "layer_0_max_flow_acceleration label" +#~ msgid "Initial layer max flow acceleration" +#~ msgstr "初始层最大流量加速度" -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." +#~ msgctxt "max_flow_acceleration description" +#~ msgid "Maximum acceleration for gradual flow changes" +#~ msgstr "渐变流量的最大加速度" -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" +#~ msgctxt "layer_0_max_flow_acceleration description" +#~ msgid "Minimum speed for gradual flow changes for the first layer" +#~ msgstr "第一层渐变流量的最小速度" -msgctxt "material label" -msgid "Material" -msgstr "材料" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "装填塔 Brim" -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "装填塔可能需要 Brim 提供额外附着力,无论模型是否需要。目前不可与 'Raft' 附着类型配合使用。" -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" +#~ msgctxt "reset_flow_duration label" +#~ msgid "Reset flow duration" +#~ msgstr "重置流量持续时间" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "用于打印第一层的温度。 设为 0 即禁用对起始层的特别处理。" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 7f5cb3bb562..a461fd1fa35 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-20 14:03+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0100\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -560,6 +560,10 @@ msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" msgstr "" +msgctxt "@action:inmenu menubar:edit" +msgid "Arrange Selection" +msgstr "排列所選模型" + msgctxt "@label:button" msgid "Ask a question" msgstr "提出問題" @@ -624,6 +628,10 @@ msgctxt "@info:title" msgid "Backups" msgstr "備份" +msgctxt "@label" +msgid "Balanced" +msgstr "" + msgctxt "@action:label" msgid "Base (mm)" msgstr "底板 (mm)" @@ -1008,6 +1016,10 @@ msgctxt "@info:error" msgid "Could not interpret the server's response." msgstr "" +msgctxt "@error:load" +msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin." +msgstr "" + msgctxt "@info:error" msgid "Could not reach Marketplace." msgstr "" @@ -1252,10 +1264,6 @@ msgctxt "@info:No intent profile selected" msgid "Default" msgstr "預設值" -msgctxt "@label" -msgid "Default" -msgstr "預設值" - msgctxt "@window:text" msgid "Default behavior for changed setting values when switching to a different profile: " msgstr "當切換到另一組列印參數時,對於被修改過的設定的預設行為: " @@ -2344,6 +2352,22 @@ msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." msgstr "發送檔案之前,請確保 G-code 適用於目前印表機和印表機設定。目前 G-code 檔案可能不準確。" +msgctxt "@item:inlistbox" +msgid "Makerbot Printfile" +msgstr "" + +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "" + +msgctxt "@error" +msgid "MakerbotWriter could not save to the designated path." +msgstr "" + +msgctxt "@error:not supported" +msgid "MakerbotWriter does not support text mode." +msgstr "" + msgctxt "@action:inmenu" msgid "Manage Materials..." msgstr "管理線材..." @@ -3424,6 +3448,10 @@ msgctxt "description" msgid "Provides support for writing 3MF files." msgstr "提供寫入 3MF 檔案的支援。" +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "" + msgctxt "description" msgid "Provides support for writing Ultimaker Format Packages." msgstr "" @@ -4306,6 +4334,10 @@ msgctxt "@error:file_size" msgid "The backup exceeds the maximum file size." msgstr "備份超過了最大檔案大小。" +msgctxt "@text" +msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." +msgstr "" + msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." msgstr "距離列印平台的底板高度,以毫米為單位。" @@ -5894,10 +5926,6 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Arrange All Models To All Build Plates" #~ msgstr "將所有模型排列到所有列印平台上" -#~ msgctxt "@action:inmenu menubar:edit" -#~ msgid "Arrange Selection" -#~ msgstr "排列所選模型" - #~ msgctxt "@action:button" #~ msgid "Arrange current build plate" #~ msgstr "擺放到目前的列印平台" @@ -6350,6 +6378,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Decline" #~ msgstr "拒絕" +#~ msgctxt "@label" +#~ msgid "Default" +#~ msgstr "預設值" + #~ msgctxt "@title:column" #~ msgid "Default" #~ msgstr "預設" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index bff087e082a..e73b1021a55 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-09-12 17:04+0000\n" +"POT-Creation-Date: 2023-10-31 19:13+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -746,16 +746,16 @@ msgid "Distance between the printed support structure lines. This setting is cal msgstr "支撐結構線條之間的距離。該設定通過支撐密度計算。" msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support." -msgstr "從列印品到支撐底部的距離。" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "" msgctxt "support_top_distance description" msgid "Distance from the top of the support to the print." msgstr "從支撐頂部到列印品的距離。" msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." -msgstr "支撐結構距離模型頂部/底部的距離。這一個小的差距使得它更容易被去除,這個數值會被無條件進位到層高的倍數。" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "" msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." @@ -1097,6 +1097,14 @@ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." msgstr "外壁線條的流量補償。" +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." msgstr "頂部/底部線條的流量補償。" @@ -1285,6 +1293,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "" + msgctxt "infill_pattern option gyroid" msgid "Gyroid" msgstr "螺旋形" @@ -2449,6 +2461,10 @@ msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "外壁擦拭噴頭長度" +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "" + msgctxt "inset_direction option outside_in" msgid "Outside To Inside" msgstr "" @@ -2502,8 +2518,20 @@ msgid "Prime Tower Acceleration" msgstr "換料塔加速度" msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Brim" -msgstr "換料塔邊緣" +msgid "Prime Tower Base" +msgstr "" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Curve Magnitude" +msgstr "" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "" msgctxt "prime_tower_flow label" msgid "Prime Tower Flow" @@ -2521,6 +2549,10 @@ msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "換料塔最小體積" +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "" + msgctxt "prime_tower_size label" msgid "Prime Tower Size" msgstr "換料塔尺寸" @@ -2538,8 +2570,8 @@ msgid "Prime Tower Y Position" msgstr "換料塔 Y 位置" msgctxt "prime_tower_brim_enable description" -msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." -msgstr "即使模型沒有開啟邊緣功能,裝填塔也列印邊緣以提供額外的附著力。目前無法與「木筏」的平台附著類型同時使用。" +msgid "Prime-towers might need the extra adhesion afforded by a brim or raft, even if the model doesn't." +msgstr "" msgctxt "acceleration_print label" msgid "Print Acceleration" @@ -3609,6 +3641,14 @@ msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." msgstr "列印木筏頂部的加速度。" +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." msgstr "列印牆壁的加速度。" @@ -3749,6 +3789,10 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "木筏頂部線條之間的距離。間距應等於線寬,以便打造堅固表面。" +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "" + msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." msgstr "" @@ -3945,6 +3989,10 @@ msgctxt "layer_height_0 description" msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." msgstr "起始層高(以毫米為單位)。起始層越厚,與列印平台的附著越輕鬆。" +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base." +msgstr "" + msgctxt "support_bottom_stair_step_height description" msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." msgstr "模型上的支撐階梯狀底部的階梯高度。較低的值會使支撐更難於移除,但過高的值可能導致不穩定的支撐結構。設為零可以關閉階梯狀行為。" @@ -4017,6 +4065,10 @@ msgctxt "retraction_amount description" msgid "The length of material retracted during a retraction move." msgstr "回抽移動期間回抽的線材長度。" +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the curve of the prime tower foot." +msgstr "" + msgctxt "machine_buildplate_type description" msgid "The material of the build plate installed on the printer." msgstr "印表機上列印平台的材質。" @@ -4109,6 +4161,14 @@ msgctxt "jerk_support description" msgid "The maximum instantaneous velocity change with which the support structure is printed." msgstr "列印支撐結構時的最大瞬時速度變化。" +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "" + msgctxt "jerk_wall description" msgid "The maximum instantaneous velocity change with which the walls are printed." msgstr "列印牆壁時的最大瞬時速度變化。" @@ -4493,6 +4553,14 @@ msgctxt "raft_surface_speed description" msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." msgstr "列印木筏頂部的速度。這些層應以稍慢的速度列印,以便噴頭緩慢地整平臨近的表面線條。" +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "" + msgctxt "speed_z_hop description" msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." msgstr "Z 抬升時 Z 軸垂直移動的速度。這通常低於列印速度,因為列印平台或機器的吊車較難移動。" @@ -4554,8 +4622,8 @@ msgid "The temperature to which to already start cooling down just before the en msgstr "列印結束前開始冷卻的溫度。" msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." -msgstr "用於列印第一層的溫度。設為 0 即關閉對起始層的特别處理。" +msgid "The temperature used for printing the first layer." +msgstr "" msgctxt "material_print_temperature description" msgid "The temperature used for printing." @@ -4633,6 +4701,10 @@ msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." msgstr "換料塔的寬度。" +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower base." +msgstr "" + msgctxt "prime_tower_size description" msgid "The width of the prime tower." msgstr "換料塔的寬度。" @@ -4701,6 +4773,38 @@ msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" msgstr "頂部表層移除寬度" +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "頂部表層加速度" @@ -5389,51 +5493,6 @@ msgctxt "travel description" msgid "travel" msgstr "空跑" - - -### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better. - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - - #~ msgctxt "machine_head_polygon description" #~ msgid "A 2D silhouette of the print head (fan caps excluded)." #~ msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。" @@ -5618,6 +5677,14 @@ msgstr "" #~ msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing." #~ msgstr "噴頭和水平下行線之間的距離。較大的間隙會讓斜下行線角度較平緩,進而使第二層的上行連接較少。僅套用於鐵絲網列印。" +#~ msgctxt "support_bottom_distance description" +#~ msgid "Distance from the print to the bottom of the support." +#~ msgstr "從列印品到支撐底部的距離。" + +#~ msgctxt "support_z_distance description" +#~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height." +#~ msgstr "支撐結構距離模型頂部/底部的距離。這一個小的差距使得它更容易被去除,這個數值會被無條件進位到層高的倍數。" + #~ msgctxt "wireframe_up_half_speed description" #~ msgid "" #~ "Distance of an upward move which is extruded with half speed.\n" @@ -5990,6 +6057,10 @@ msgstr "" #~ msgid "Prefer Retract" #~ msgstr "回抽優先" +#~ msgctxt "prime_tower_brim_enable label" +#~ msgid "Prime Tower Brim" +#~ msgstr "換料塔邊緣" + #~ msgctxt "prime_tower_purge_volume label" #~ msgid "Prime Tower Purge Volume" #~ msgstr "換料塔清洗量" @@ -5998,6 +6069,10 @@ msgstr "" #~ msgid "Prime Tower Thickness" #~ msgstr "換料塔厚度" +#~ msgctxt "prime_tower_brim_enable description" +#~ msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type." +#~ msgstr "即使模型沒有開啟邊緣功能,裝填塔也列印邊緣以提供額外的附著力。目前無法與「木筏」的平台附著類型同時使用。" + #~ msgctxt "wireframe_enabled description" #~ msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines." #~ msgstr "只列印一個具有稀疏網狀結構的外表面,在“稀疏的空中”列印。這是在给定的 Z 軸間隔內,通過上行線和下行斜線連接,橫向列印模型的輪廓來實現的。" @@ -6258,6 +6333,10 @@ msgstr "" #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted." #~ msgstr "設定列印空間的溫度。如果設定為 0,就不會加熱列印空間。" +#~ msgctxt "material_print_temperature_layer_0 description" +#~ msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer." +#~ msgstr "用於列印第一層的溫度。設為 0 即關閉對起始層的特别處理。" + #~ msgctxt "material_bed_temperature_layer_0 description" #~ msgid "The temperature used for the heated build plate at the first layer." #~ msgstr "用於第一層加熱列印平台的溫度。" From 3e50cee8ecb67664d02a874f4ec67cd17462bf3a Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 19:37:19 +0100 Subject: [PATCH 116/121] Bump to 5.7.0-alpha --- conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index 1ce2b1d369d..4538905c3fe 100644 --- a/conanfile.py +++ b/conanfile.py @@ -50,7 +50,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.6.0-alpha" + self.version = "5.7.0-alpha" @property def _pycharm_targets(self): @@ -300,7 +300,7 @@ def requirements(self): self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing") self.requires("zlib/1.2.13") self.requires("pyarcus/5.3.0") - self.requires("dulcificum/(latest)@ultimaker/testing") + self.requires("dulcificum/(latest)@ultimaker/stable") self.requires("curaengine/(latest)@ultimaker/testing") self.requires("pysavitar/5.3.0") self.requires("pynest2d/5.3.0") @@ -309,7 +309,7 @@ def requirements(self): self.requires("cura_binary_data/(latest)@ultimaker/testing") self.requires("cpython/3.10.4") if self.options.internal: - self.requires("cura_private_data/(latest)@internal/cura_10561") + self.requires("cura_private_data/(latest)@internal/testing") self.requires("fdm_materials/(latest)@internal/testing") else: self.requires("fdm_materials/(latest)@ultimaker/testing") From c3ed31583bab36189a78fdccbdab999a16e12d58 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 31 Oct 2023 19:55:21 +0100 Subject: [PATCH 117/121] Remove `limit_support_retractions` since that is no longer used --- resources/definitions/ultimaker_method_base.def.json | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 3c03020b1ea..d169ebf387e 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -319,7 +319,6 @@ }, "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, - "limit_support_retractions": { "value": false }, "machine_acceleration": { "default_value": 3000 }, "machine_center_is_zero": { "value": true }, "machine_depth": { "default_value": 190 }, From 1d07a861fc5cedff85eb7c4e2e3f17253716b358 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 1 Nov 2023 09:01:52 +0100 Subject: [PATCH 118/121] Add scheduled releases and comprehensive release notes Adjusted the GitHub Actions workflow to include two scheduled releases at 4:15 CET (main branch) and 9:15 CET (release branch) per day. The release notes now have a more comprehensive and detailed structure, with current nightly or beta branch statuses for different sections such as nightlies, unit test results, and Conan packages. --- .github/workflows/installers.yml | 55 ++++++++++++++++++------ .github/workflows/release_notes.md.jinja | 39 +++++++++++++++++ 2 files changed, 82 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/release_notes.md.jinja diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index fa2f73998b7..a1bd2a415b3 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -31,8 +31,9 @@ on: type: boolean schedule: - # Daily at 5:15 CET - - cron: '15 3 * * *' + # Daily at 4:15 CET (main-branch) and 9:15 CET (release-branch) + - cron: '15 2 * * *' + - cron: '15 8 * * *' env: CURA_CONAN_VERSION: ${{ inputs.cura_conan_version || 'cura/latest@ultimaker/testing' }} @@ -52,7 +53,19 @@ jobs: shell: python run: | import os - cura_conan_version = "cura/latest@ultimaker/testing" if "${{ github.event.inputs.cura_conan_version }}" == "" else "${{ github.event.inputs.cura_conan_version }}" + import datetime + cura_conan_version = "cura/latest@ultimaker/testing" + release_tag = "nightly" + + # Get current UTC time + now = datetime.datetime.utcnow() + + # Check if current hour is 8 + if now.hour == 8: + cura_conan_version = "cura/latest@ultimaker/stable" + release_tag = "nightly-5.6" + + # Set cura_conan_version environment variable output_env = os.environ["GITHUB_OUTPUT"] content = "" if os.path.exists(output_env): @@ -61,6 +74,7 @@ jobs: with open(output_env, "w") as f: f.write(content) f.writelines(f"cura_conan_version={cura_conan_version}\n") + f.writelines(f"release_tag={release_tag}\n") windows-installer: uses: ./.github/workflows/windows.yml @@ -182,8 +196,8 @@ jobs: - name: Update nightly release for Linux run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -206,8 +220,8 @@ jobs: - name: Update nightly release for Windows run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -230,8 +244,8 @@ jobs: - name: Update nightly release for MacOS (X64) run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -254,14 +268,31 @@ jobs: - name: Update nightly release for MacOS (ARM-64) run: | - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber - gh release upload nightly installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber + gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: create the release notes + run: | + import os + import datetime + from jinja2 import Template + + with open(".github/workflows/release-notes.md.jinja", "r") as f: + release_notes = Template(f.read()) + + current_nightly_beta = "${{ needs.default-values.outputs.release_tag }}".split("nightly-")[-1] + with open("release-notes.md", "w") as f: + f.write(release_notes.render( + timestamp=${{ steps.filename.outputs.NIGHTLY_TIME }}, + branch="" if ${{ needs.default-values.outputs.release_tag == 'nightly' }} else current_nightly_beta, + branch_specific="" if os.getenv("GITHUB_REF") == "refs/heads/main" else f"?branch={current_nightly_beta}", + )) + - name: Update nightly release description (with date) if: always() run: | - gh release edit nightly --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes "Nightly release created on: ${{ steps.filename.outputs.NIGHTLY_TIME }}" + gh release edit ${{ needs.default-values.outputs.release_tag }} --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes-file release-notes.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release_notes.md.jinja b/.github/workflows/release_notes.md.jinja new file mode 100644 index 00000000000..e66eeca6772 --- /dev/null +++ b/.github/workflows/release_notes.md.jinja @@ -0,0 +1,39 @@ +# Nightlies + +> :clock12: Created at: {{ timestamp }} + +| | | +|--------------:|--------------------------------------------------------------------------------------------| +| **Nightlies** | [![nightly {{ branch }}](https://github.com/Ultimaker/Cura/actions/workflows/installers.yml/badge.svg{{ branch_specific }} +?event=schedule)](https://github.com/Ultimaker/Cura/actions/workflows/installers.yml) | + +# Unit Test results + +| | | +|-------------------------------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **Cura {{ branch }}** | [![unit-test](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml) | +| **CuraEngine {{ branch }}** | [![unit-test](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml) | +| **Uranium {{ branch }}** | [![unit-test](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml) | +| **CuraEngine GradualFlow 0.1** | [![unit-test](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml) | +| **synsepalum-dulcificum 0.1** | [![unit-test](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml) | +| **libSavitar** | [![unit-test](https://github.com/Ultimaker/libSavitar/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/libSavitar/actions/workflows/unit-test.yml) | +| **libnest2d** | [![unit-test](https://github.com/Ultimaker/libnest2d/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/libnest2d/actions/workflows/unit-test.yml) | + +# Conan packages + +| | | +|------------------------------------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **Cura {{ branch }}** | [![conan-package](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml) | +| **CuraEngine {{ branch }}** | [![conan-package](https://github.com/Ultimaker/CuraEngine/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/conan-package.yml) | +| **Uranium {{ branch }}** | [![conan-package](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml) | +| **fdm_materials {{ branch }}** | [![conan-package](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml) | +| **cura-binary-data {{ branch }}** | [![conan-package](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml) | +| **CuraEngine GradualFlow 0.1** | [![conan-package](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml) | +| **synsepalum-dulcificum 0.1** | [![conan-package](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml) | +| **CuraEngine gRPC definitions 0.1** | [![conan-package](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml) | +| **libArcus** | [![conan-package](https://github.com/Ultimaker/libArcus/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libArcus/actions/workflows/conan-package.yml) | +| **pyArcus** | [![conan-package](https://github.com/Ultimaker/pyArcus/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pyArcus/actions/workflows/conan-package.yml) | +| **libSavitar** | [![conan-package](https://github.com/Ultimaker/libSavitar/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libSavitar/actions/workflows/conan-package.yml) | +| **pySavitar** | [![conan-package](https://github.com/Ultimaker/pySavitar/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pySavitar/actions/workflows/conan-package.yml) | +| **libnest2d** | [![conan-package](https://github.com/Ultimaker/libnest2d/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libnest2d/actions/workflows/conan-package.yml) | +| **pynest2d** | [![conan-package](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml) | \ No newline at end of file From 56e4f3ffce6e2abb12cab009c27082a264d6b9f0 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 1 Nov 2023 09:07:27 +0100 Subject: [PATCH 119/121] Update scheduled event conditions in installers.yml The conditions for the scheduled event in the GitHub installer workflow have been updated. Now it will not only check if the current time is 8 but also if the event is a scheduled one. This ensures the schedule event fires at the right time and under the correct circumstances. --- .github/workflows/installers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index a1bd2a415b3..78215774626 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -60,8 +60,8 @@ jobs: # Get current UTC time now = datetime.datetime.utcnow() - # Check if current hour is 8 - if now.hour == 8: + # Check if current hour is 8 and it is a schedule event + if "${{ github.event_name }}" == "schedule" and now.hour == 8: cura_conan_version = "cura/latest@ultimaker/stable" release_tag = "nightly-5.6" From 8f35c606d1e0cdd02781f56293704c2b31f22624 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 1 Nov 2023 10:42:50 +0100 Subject: [PATCH 120/121] Update daily schedule and conditional logic in installers workflow The github actions workflow `installers.yml` has been updated to adjust the daily cron schedule for the main and release branches. Additionally, the conditional logic related to the cura conan version and release tag has been simplified and cleaned up for better readability and maintainability. With these changes, the release process should perform more consistently. --- .github/workflows/installers.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 78215774626..3034c80e593 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -31,21 +31,23 @@ on: type: boolean schedule: - # Daily at 4:15 CET (main-branch) and 9:15 CET (release-branch) - - cron: '15 2 * * *' - - cron: '15 8 * * *' + # Daily at 4:15 CET (main-branch) and 5:15 CET (release-branch) + - cron: '15 3 * * *' + - cron: '15 4 * * *' env: - CURA_CONAN_VERSION: ${{ inputs.cura_conan_version || 'cura/latest@ultimaker/testing' }} CONAN_ARGS: ${{ inputs.conan_args || '' }} ENTERPRISE: ${{ inputs.enterprise || false }} STAGING: ${{ inputs.staging || false }} + LATEST_RELEASE: '5.6' + LATEST_RELEASE_SCHEDULE_HOUR: 4 jobs: default-values: runs-on: ubuntu-latest outputs: cura_conan_version: ${{ steps.default.outputs.cura_conan_version }} + release_tag: ${{ steps.default.outputs.release_tag }} steps: - name: Output default values @@ -54,17 +56,15 @@ jobs: run: | import os import datetime - cura_conan_version = "cura/latest@ultimaker/testing" - release_tag = "nightly" - - # Get current UTC time - now = datetime.datetime.utcnow() - - # Check if current hour is 8 and it is a schedule event - if "${{ github.event_name }}" == "schedule" and now.hour == 8: - cura_conan_version = "cura/latest@ultimaker/stable" - release_tag = "nightly-5.6" - + + if "${{ github.event_name }}" != "schedule": + cura_conan_version = "${{ github.event.inputs.cura_conan_version }}" + else: + now = datetime.datetime.now() + cura_conan_version = "cura/latest@ultimaker/stable" if now.hour == int(os.environ['LATEST_RELEASE_SCHEDULE_HOUR']) else "cura/latest@ultimaker/testing" + + release_tag = f"nightly-{os.environ['LATEST_RELEASE']}" if "/stable" in cura_conan_version else "nightly" + # Set cura_conan_version environment variable output_env = os.environ["GITHUB_OUTPUT"] content = "" From 2a81d572360ffc0e9f6b79e21461390596dbad22 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Wed, 1 Nov 2023 11:34:44 +0100 Subject: [PATCH 121/121] Refactor GitHub actions workflow and improve environment handling Changed the Github actions workflow by renaming "default-values" to "default_values" across multiple files. In addition, improved environment summary handling by reading its content if the file exists, and finally, appending certain variables to it. This makes the workflow more consistent and better handles the environment summary. --- .github/workflows/installers.yml | 53 +++++++++++++++++++------------- 1 file changed, 32 insertions(+), 21 deletions(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 3034c80e593..942aeba1f9f 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -43,7 +43,7 @@ env: LATEST_RELEASE_SCHEDULE_HOUR: 4 jobs: - default-values: + default_values: runs-on: ubuntu-latest outputs: cura_conan_version: ${{ steps.default.outputs.cura_conan_version }} @@ -76,11 +76,22 @@ jobs: f.writelines(f"cura_conan_version={cura_conan_version}\n") f.writelines(f"release_tag={release_tag}\n") + summary_env = os.environ["GITHUB_STEP_SUMMARY"] + content = "" + if os.path.exists(summary_env): + with open(summary_env, "r") as f: + content = f.read() + + with open(summary_env, "w") as f: + f.write(content) + f.writelines(f"# cura_conan_version = {cura_conan_version}\n") + f.writelines(f"# release_tag = {release_tag}\n") + windows-installer: uses: ./.github/workflows/windows.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -90,9 +101,9 @@ jobs: linux-installer: uses: ./.github/workflows/linux.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -102,9 +113,9 @@ jobs: macos-installer: uses: ./.github/workflows/macos.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -114,9 +125,9 @@ jobs: macos-arm-installer: uses: ./.github/workflows/macos.yml - needs: [ default-values ] + needs: [ default_values ] with: - cura_conan_version: ${{ needs.default-values.outputs.cura_conan_version }} + cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} conan_args: ${{ github.event.inputs.conan_args }} enterprise: ${{ github.event.inputs.enterprise == 'true' }} staging: ${{ github.event.inputs.staging == 'true' }} @@ -128,7 +139,7 @@ jobs: update-nightly-release: if: ${{ inputs.nightly || github.event_name == 'schedule' }} runs-on: ubuntu-latest - needs: [ windows-installer, linux-installer, macos-installer, macos-arm-installer ] + needs: [ default_values, windows-installer, linux-installer, macos-installer, macos-arm-installer ] steps: - name: Checkout uses: actions/checkout@v3 @@ -196,8 +207,8 @@ jobs: - name: Update nightly release for Linux run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -220,8 +231,8 @@ jobs: - name: Update nightly release for Windows run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -244,8 +255,8 @@ jobs: - name: Update nightly release for MacOS (X64) run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -268,8 +279,8 @@ jobs: - name: Update nightly release for MacOS (ARM-64) run: | - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber - gh release upload ${{ needs.default-values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber + gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -282,17 +293,17 @@ jobs: with open(".github/workflows/release-notes.md.jinja", "r") as f: release_notes = Template(f.read()) - current_nightly_beta = "${{ needs.default-values.outputs.release_tag }}".split("nightly-")[-1] + current_nightly_beta = "${{ needs.default_values.outputs.release_tag }}".split("nightly-")[-1] with open("release-notes.md", "w") as f: f.write(release_notes.render( timestamp=${{ steps.filename.outputs.NIGHTLY_TIME }}, - branch="" if ${{ needs.default-values.outputs.release_tag == 'nightly' }} else current_nightly_beta, + branch="" if ${{ needs.default_values.outputs.release_tag == 'nightly' }} else current_nightly_beta, branch_specific="" if os.getenv("GITHUB_REF") == "refs/heads/main" else f"?branch={current_nightly_beta}", )) - name: Update nightly release description (with date) if: always() run: | - gh release edit ${{ needs.default-values.outputs.release_tag }} --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes-file release-notes.md + gh release edit ${{ needs.default_values.outputs.release_tag }} --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes-file release-notes.md env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}